diff --git a/GoRacerr.exe b/GoRacerr.exe new file mode 100644 index 0000000..4aa7dc5 Binary files /dev/null and b/GoRacerr.exe differ diff --git a/GoRacerr.go b/GoRacerr.go index 7c64141..f042e31 100644 --- a/GoRacerr.go +++ b/GoRacerr.go @@ -12,7 +12,7 @@ func main() { pwd, _ := os.Getwd() // Config - cfg := NewConfig(pwd) + Cfg := NewConfig(pwd) // Log file, _ := os.OpenFile("goracerr.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666) @@ -20,16 +20,16 @@ func main() { log.SetOutput(mw) log.SetPrefix("[GoRacerr]") defer file.Close() - log.Printf("Starting GoRacerr on %s", cfg.Host) + log.Printf("Starting GoRacerr on %s", Cfg.Host) // Database - db, err := NewSQLiteDatabase(cfg) + db, err := NewSQLiteDatabase(Cfg) if err != nil { log.Fatalln("Could not open database: ", err) } // Server - server := NewAPIServer(cfg, *db) + server := NewAPIServer(*db, Cfg) server.Start() } diff --git a/api.go b/api.go index 0d126c4..973f4ee 100644 --- a/api.go +++ b/api.go @@ -12,10 +12,19 @@ type APIServer struct { Host string Port string Db SQLiteDatabase + Cfg *Config } type APIError struct { - Error string + Status string + Error string +} + +func NewAPIError(status string, error string) *APIError { + return &APIError{ + Status: status, + Error: error, + } } func WriteJSON(w http.ResponseWriter, status int, v any) error { @@ -24,10 +33,11 @@ func WriteJSON(w http.ResponseWriter, status int, v any) error { return json.NewEncoder(w).Encode(v) } -func NewAPIServer(cfg Config, database SQLiteDatabase) *APIServer { +func NewAPIServer(database SQLiteDatabase, cfg Config) *APIServer { return &APIServer{ Host: cfg.Host, Db: database, + Cfg: &cfg, } } @@ -38,6 +48,7 @@ func (s *APIServer) Start() { router.HandleFunc("/prerace/{id}", s.handleDeletePreRace).Methods("DELETE") router.HandleFunc("/prerace/{id}", s.handleUpdatePreRace).Methods("PUT") router.HandleFunc("/prerace/{id}", s.handleGetPreRaceByID).Methods("GET") + router.HandleFunc("/race/{title}", s.handleCreateRace).Methods("POST") log.Println("Listening for new Preraces / Races") @@ -60,12 +71,22 @@ func (s *APIServer) handleCreatePreRace(w http.ResponseWriter, r *http.Request) race.PreRace = true - err := s.Db.CreatePreRace(race) - if err != nil { - log.Println("Could not create new race in db", err) + exist := s.Db.FindRelease(race.TorrentName, race.Indexer) + + if exist.TorrentName == "" { + err := s.Db.CreatePreRace(race) + if err != nil { + log.Println("Could not create new race in db", err) + WriteJSON(w, http.StatusForbidden, "{Error: Could not add to database}") + } WriteJSON(w, http.StatusOK, race) + } else { + er := NewAPIError("ok", "already in database") + WriteJSON(w, http.StatusOK, er) } - WriteJSON(w, http.StatusOK, "{Error: Error}") + + rls := NewRelease(race.TorrentName, race.Title, race.Year, *s.Cfg) + rls.ProcessRelease() } @@ -76,3 +97,7 @@ func (s *APIServer) handleDeletePreRace(w http.ResponseWriter, r *http.Request) func (s *APIServer) handleUpdatePreRace(w http.ResponseWriter, r *http.Request) { } + +func (s *APIServer) handleCreateRace(w http.ResponseWriter, r *http.Request) { + +} diff --git a/config.toml b/config.toml index 97c5d69..734ce87 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,6 @@ # config.toml host = "0.0.0.0:3000" # TMDbApiKey is required -tmdbApiKey = "" +tmdbApiKey = "41d05b7a36ba961740f7c05cc4ef634b" dbName = "racer.db" uploadFolder = "/home/rouggy/torrents/rtorrent/Race" diff --git a/database.go b/database.go index c6947ad..c84fc68 100644 --- a/database.go +++ b/database.go @@ -4,6 +4,7 @@ import ( "context" "database/sql" "log" + "time" sq "github.com/Masterminds/squirrel" _ "github.com/mattn/go-sqlite3" @@ -32,7 +33,7 @@ func NewSQLiteDatabase(cfg Config) (*SQLiteDatabase, error) { context.Background(), `CREATE TABLE IF NOT EXISTS "races" ( "id" INTEGER NOT NULL UNIQUE, - "torrentname" TEXT NOT NULL, + "torrent_name" TEXT NOT NULL, "category" TEXT, "indexer" TEXT, "type" TEXT, @@ -42,9 +43,15 @@ func NewSQLiteDatabase(cfg Config) (*SQLiteDatabase, error) { "year" TEXT, "resolution" TEXT, "source" TEXT, - "torrentURL" TEXT, + "torrent_url" TEXT, + "torrent_file" TEXT, + "nfo_file" TEXT, + "original_path" TEXT, "won" INTEGER, "prerace" INTEGER, + "prerace_added_at" INTEGER, + "race_started_at" INTEGER, + "race_ended_at" INTEGER, PRIMARY KEY("ID" AUTOINCREMENT) )`, ) @@ -60,18 +67,26 @@ func NewSQLiteDatabase(cfg Config) (*SQLiteDatabase, error) { func (s *SQLiteDatabase) CreatePreRace(r *Race) error { - if r.Type == "movie" || r.Type == "episode" { + // Search if release has been raced already + prevRace := s.FindRelease(r.TorrentName, r.Indexer) + + if len(prevRace.TorrentName) > 0 { + + log.Printf("Found a race for %s on %s", prevRace.TorrentName, prevRace.Indexer) + } + + if r.Type == "movie" || r.Type == "episode" && prevRace.TorrentName != "" { queryBuilder := sq. Insert("races"). - Columns("torrentname", "category", "indexer", "type", "title", "season", "episode", "year", "resolution", "source", "torrenturl", "won", "prerace"). - Values(r.TorrentName, r.Category, r.Indexer, r.Type, r.Title, r.Season, r.Episode, r.Year, r.Resolution, r.Source, r.TorrentURL, r.Won, r.PreRace). + Columns("torrent_name", "category", "indexer", "type", "title", "season", "episode", "year", "resolution", "source", "torrent_url", "won", "prerace", "prerace_added_at"). + Values(r.TorrentName, r.Category, r.Indexer, r.Type, r.Title, r.Season, r.Episode, r.Year, r.Resolution, r.Source, r.TorrentURL, r.Won, r.PreRace, time.Time.Unix(time.Now())). Suffix("RETURNING id").RunWith(s.Db) err := queryBuilder.QueryRow().Scan(&r.ID) if err != nil { return err } - log.Printf("Prerace *** %s *** from %s added to the database", r.TorrentName, r.Indexer) + log.Printf("Prerace [%s] from [%s] added to the database", r.TorrentName, r.Indexer) } return nil @@ -92,3 +107,30 @@ func (s *SQLiteDatabase) GetPreRaceByID(*Race) error { func (s *SQLiteDatabase) GetPreRaces(*Race) error { return nil } + +func (s *SQLiteDatabase) FindReleases(releaseName string) ([]Race, error) { + var races []Race + rows, err := s.Db.Query("SELECT ID, torrent_name, indexer FROM races WHERE torrent_name=?", releaseName) + if err != nil { + return nil, err + } + defer rows.Close() + + for rows.Next() { + var race Race + if err := rows.Scan( + &race.ID, &race.TorrentName, &race.Indexer, + ); err != nil { + return nil, err + } + races = append(races, race) + } + return races, err + +} + +func (s *SQLiteDatabase) FindRelease(releaseName string, indexer string) Race { + var race Race + s.Db.QueryRow("SELECT ID, torrent_name, indexer FROM races WHERE torrent_name=? AND indexer=?", releaseName, indexer).Scan(&race.ID, &race.TorrentName, &race.Indexer) + return race +} diff --git a/go.mod b/go.mod index dcc2c16..7e50e1d 100644 --- a/go.mod +++ b/go.mod @@ -6,10 +6,16 @@ require github.com/BurntSushi/toml v1.4.0 require github.com/gorilla/mux v1.8.1 -require github.com/mattn/go-sqlite3 v1.14.22 +require ( + github.com/Masterminds/squirrel v1.5.4 + github.com/cyruzin/golang-tmdb v1.6.6 + github.com/mattn/go-sqlite3 v1.14.22 +) require ( - github.com/Masterminds/squirrel v1.5.4 // indirect + github.com/json-iterator/go v1.1.12 // indirect github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect + github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect ) diff --git a/go.sum b/go.sum index 5fb1df2..d77d253 100644 --- a/go.sum +++ b/go.sum @@ -2,14 +2,34 @@ github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0 github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho= github.com/Masterminds/squirrel v1.5.4 h1:uUcX/aBc8O7Fg9kaISIUsHXdKuqehiXAMQTYX8afzqM= github.com/Masterminds/squirrel v1.5.4/go.mod h1:NNaOrjSoIDfDA40n7sr2tPNZRfjzjA400rg+riTZj10= +github.com/cyruzin/golang-tmdb v1.6.6 h1:M7R2K3eiw8r6/jIWII46Wo9GMXARBkgnkdedPKLk3ic= +github.com/cyruzin/golang-tmdb v1.6.6/go.mod h1:ZSryJLCcY+9TiKU+LbouXKns++YBrM8Tizannr05c+I= +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/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= +github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 h1:SOEGU9fKiNWd/HOJuq6+3iTQz8KNCLtVX6idSoTLdUw= github.com/lann/builder v0.0.0-20180802200727-47ae307949d0/go.mod h1:dXGbAdH5GtBTC4WfIxhKZfyBF/HBFgRZSWwZ9g/He9o= github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 h1:P6pPBnrTSX3DEVR4fDembhRWSsG5rVo6hYhAB/ADZrk= github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0/go.mod h1:vmVJ0l/dxyfGW6FmdpVm2joNMFikkuWg0EoCKLGUMNw= github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU= github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.7.1 h1:5TQK59W5E3v0r2duFAb7P95B6hEeOyEnHRa8MjYSMTY= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/goracerr.log b/goracerr.log index 095d6a7..db0578f 100644 --- a/goracerr.log +++ b/goracerr.log @@ -1,263 +1,4781 @@ -2024/08/30 11:41:30 Starting GoRacerr on port 3000 -2024/08/30 11:42:48 Starting GoRacerr on port 3000 -[GoRacerr]2024/08/30 11:50:38 Starting GoRacerr on port 3000 -[GoRacerr]2024/08/30 12:10:37 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 12:11:13 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 12:11:41 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 12:12:05 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 12:12:23 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 12:12:23 Listening for new Preraces / Races -[GoRacerr]2024/08/30 12:12:45 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 12:12:45 Listening for new Preraces / Races -[GoRacerr]2024/08/30 12:22:46 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 12:22:46 Listening for new Preraces / Races -[GoRacerr]2024/08/30 12:57:40 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 12:57:40 Listening for new Preraces / Races -[GoRacerr]2024/08/30 13:01:54 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 13:01:54 Listening for new Preraces / Races -[GoRacerr]2024/08/30 13:02:35 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 13:02:35 Listening for new Preraces / Races -[GoRacerr]2024/08/30 13:05:21 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 13:05:21 Listening for new Preraces / Races -[GoRacerr]2024/08/30 13:09:33 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 13:09:33 Listening for new Preraces / Races -[GoRacerr]2024/08/30 13:10:07 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 13:10:07 Listening for new Preraces / Races -[GoRacerr]2024/08/30 13:11:11 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 13:11:11 Listening for new Preraces / Races -[GoRacerr]2024/08/30 14:24:07 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:24:07 Could not open database: sql: unknown driver "sqlite3" (forgotten import?) -[GoRacerr]2024/08/30 14:25:33 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:25:33 Listening for new Preraces / Races -[GoRacerr]2024/08/30 14:26:23 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:27:16 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:37:18 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:37:18 Opening SQLite database -[GoRacerr]2024/08/30 14:37:18 Listening for new Preraces / Races -[GoRacerr]2024/08/30 14:38:04 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:38:04 Opening SQLite database -[GoRacerr]2024/08/30 14:38:04 Listening for new Preraces / Races -[GoRacerr]2024/08/30 14:38:25 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:38:25 Opening SQLite database -[GoRacerr]2024/08/30 14:38:25 Listening for new Preraces / Races -[GoRacerr]2024/08/30 14:46:14 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:46:14 Opening SQLite database -[GoRacerr]2024/08/30 14:46:14 &{Db:0xc0001aa8f0} -[GoRacerr]2024/08/30 14:46:14 Listening for new Preraces / Races -[GoRacerr]2024/08/30 14:50:14 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:50:14 Opening SQLite database -[GoRacerr]2024/08/30 14:50:14 &{Db:0xc0000888f0} -[GoRacerr]2024/08/30 14:50:14 Listening for new Preraces / Races -[GoRacerr]2024/08/30 14:53:11 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:53:11 Opening SQLite database -[GoRacerr]2024/08/30 14:53:11 Listening for new Preraces / Races -[GoRacerr]2024/08/30 14:58:06 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:58:06 Opening SQLite database -[GoRacerr]2024/08/30 14:58:11 Cannot create table database is locked -[GoRacerr]2024/08/30 14:58:25 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 14:58:25 Opening SQLite database -[GoRacerr]2024/08/30 14:58:25 Listening for new Preraces / Races -[GoRacerr]2024/08/30 15:08:28 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 15:08:28 Opening SQLite database -[GoRacerr]2024/08/30 15:08:28 Listening for new Preraces / Races -[GoRacerr]2024/08/30 15:14:03 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 15:14:03 Opening SQLite database -[GoRacerr]2024/08/30 15:14:03 Listening for new Preraces / Races -[GoRacerr]2024/08/30 15:14:35 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 15:14:35 Opening SQLite database -[GoRacerr]2024/08/30 15:14:35 Cannot create table sql: database is closed -[GoRacerr]2024/08/30 15:15:50 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 15:15:50 Opening SQLite database -[GoRacerr]2024/08/30 15:15:50 Listening for new Preraces / Races -[GoRacerr]2024/08/30 15:45:29 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 15:45:29 Opening SQLite database -[GoRacerr]2024/08/30 15:45:29 Cannot create table table "races" already exists -[GoRacerr]2024/08/30 15:45:57 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 15:45:57 Opening SQLite database -[GoRacerr]2024/08/30 15:45:57 Listening for new Preraces / Races -[GoRacerr]2024/08/30 15:47:40 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 15:47:40 Opening SQLite database -[GoRacerr]2024/08/30 15:47:40 Listening for new Preraces / Races -[GoRacerr]2024/08/30 15:47:50 &{0xc0001ae000 false true {0 0} false false false 0x7ff6259c4380} -[GoRacerr]2024/08/30 15:50:18 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 15:50:18 Opening SQLite database -[GoRacerr]2024/08/30 15:50:18 Listening for new Preraces / Races -[GoRacerr]2024/08/30 15:54:44 &{0xc0001ac000 false true {0 0} true false false 0x7ff64f774380} -[GoRacerr]2024/08/30 15:56:18 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 15:56:18 Opening SQLite database -[GoRacerr]2024/08/30 15:56:18 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:02:14 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:02:14 Opening SQLite database -[GoRacerr]2024/08/30 16:02:14 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:02:19 &{0xc0000b2000 false true {0 0} true false false 0x7ff6950b4380} -[GoRacerr]2024/08/30 16:02:57 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:02:57 Opening SQLite database -[GoRacerr]2024/08/30 16:02:57 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:03:03 &{0xc0000b2000 false true {0 0} true false false 0x7ff6cfb94380} -[GoRacerr]2024/08/30 16:04:06 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:04:06 Opening SQLite database -[GoRacerr]2024/08/30 16:04:06 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:06:18 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:06:18 Opening SQLite database -[GoRacerr]2024/08/30 16:06:18 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:06:23 &{0xc0000b2000 false true {0 0} true false false 0x7ff6358d4380} -[GoRacerr]2024/08/30 16:06:38 {0xc0000a8150} -[GoRacerr]2024/08/30 16:06:51 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:06:51 Opening SQLite database -[GoRacerr]2024/08/30 16:06:51 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:06:53 &{0xc000008018 false true {0 0} true false false 0x7ff762224380} -[GoRacerr]2024/08/30 16:06:56 &{0xc00020a150} -[GoRacerr]2024/08/30 16:08:56 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:08:56 Opening SQLite database -[GoRacerr]2024/08/30 16:08:56 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:08:58 &{0xc0001160a8 false true {0 0} true false false 0x7ff60c685ca0} -[GoRacerr]2024/08/30 16:09:01 SELECT * FROM races -[GoRacerr]2024/08/30 16:13:14 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:13:14 Opening SQLite database -[GoRacerr]2024/08/30 16:13:14 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:13:18 &{0xc000190018 false true {0 0} true false false 0x7ff6b8d55ca0} -[GoRacerr]2024/08/30 16:13:35 &{0xc000024380 } -[GoRacerr]2024/08/30 16:13:51 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:13:51 Opening SQLite database -[GoRacerr]2024/08/30 16:13:51 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:13:54 &{0xc0000b0000 false true {0 0} true false false 0x7ff60f815ca0} -[GoRacerr]2024/08/30 16:14:00 &{ 0xc0000a0240} -[GoRacerr]2024/08/30 16:20:12 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:20:12 Opening SQLite database -[GoRacerr]2024/08/30 16:20:12 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:20:15 &{0xc0001160d8 false true {0 0} true false false 0x7ff7785d5ca0} -[GoRacerr]2024/08/30 16:20:22 &{0xc00010c5d0 } -[GoRacerr]2024/08/30 16:21:09 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:21:09 Opening SQLite database -[GoRacerr]2024/08/30 16:21:09 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:21:11 &{0xc0000b4000 false true {0 0} true false false 0x7ff6d4075ca0} -[GoRacerr]2024/08/30 16:21:15 -[GoRacerr]2024/08/30 16:23:21 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:23:21 Opening SQLite database -[GoRacerr]2024/08/30 16:23:21 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:23:29 &{0xc0000080d8 false true {0 0} true false false 0x7ff70f455ca0} -[GoRacerr]2024/08/30 16:25:05 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:25:05 Opening SQLite database -[GoRacerr]2024/08/30 16:25:05 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:25:06 &{0xc0000080c0 false true {0 0} true false false 0x7ff696385ca0} -[GoRacerr]2024/08/30 16:25:08 Error inserting in database not enough args to execute query: want 11 got 0 -[GoRacerr]2024/08/30 16:25:08 -[GoRacerr]2024/08/30 16:25:21 &{0xc000096000 false true {0 0} true false false 0x7ff696385ca0} -[GoRacerr]2024/08/30 16:25:21 Error inserting in database not enough args to execute query: want 11 got 0 -[GoRacerr]2024/08/30 16:25:21 -[GoRacerr]2024/08/30 16:28:55 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:28:55 Opening SQLite database -[GoRacerr]2024/08/30 16:28:55 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:28:59 &{0xc0000a8000 false true {0 0} true false false 0x7ff63a6e4380} -[GoRacerr]2024/08/30 16:32:40 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:32:40 Opening SQLite database -[GoRacerr]2024/08/30 16:32:40 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:35:19 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:35:19 Opening SQLite database -[GoRacerr]2024/08/30 16:35:19 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:39:38 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:39:38 Opening SQLite database -[GoRacerr]2024/08/30 16:39:38 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:39:42 Could not insert new race in db near ")": syntax error -[GoRacerr]2024/08/30 16:40:10 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:40:10 Opening SQLite database -[GoRacerr]2024/08/30 16:40:10 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:40:12 Could not insert new race in db not enough args to execute query: want 13 got 0 -[GoRacerr]2024/08/30 16:45:32 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:45:32 Opening SQLite database -[GoRacerr]2024/08/30 16:45:32 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:45:36 Could not insert new race in db sql: converting argument $1 type: unsupported type []interface {}, a slice of interface -[GoRacerr]2024/08/30 16:45:36 -[GoRacerr]2024/08/30 16:47:04 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:47:04 Opening SQLite database -[GoRacerr]2024/08/30 16:47:04 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:47:06 Could not insert new race in db sql: converting argument $1 type: unsupported type []interface {}, a slice of interface -[GoRacerr]2024/08/30 16:47:06 -[GoRacerr]2024/08/30 16:48:17 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:48:17 Opening SQLite database -[GoRacerr]2024/08/30 16:48:17 Listening for new Preraces / Races -[GoRacerr]2024/08/30 16:48:18 Could not insert new race in db not enough args to execute query: want 13 got 0 -[GoRacerr]2024/08/30 16:48:18 -[GoRacerr]2024/08/30 16:59:52 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 16:59:52 Opening SQLite database -[GoRacerr]2024/08/30 16:59:52 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:00:04 Could not insert new race in db sql: converting argument $1 type: unsupported type []interface {}, a slice of interface -[GoRacerr]2024/08/30 17:00:04 -[GoRacerr]2024/08/30 17:01:19 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:01:19 Opening SQLite database -[GoRacerr]2024/08/30 17:01:19 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:01:21 Could not insert new race in db sql: converting argument $1 type: unsupported type []interface {}, a slice of interface -[GoRacerr]2024/08/30 17:01:21 -[GoRacerr]2024/08/30 17:05:43 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:05:43 Opening SQLite database -[GoRacerr]2024/08/30 17:05:43 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:05:45 Could not insert new race in db sql: converting argument $1 type: unsupported type []interface {}, a slice of interface -[GoRacerr]2024/08/30 17:05:45 -[GoRacerr]2024/08/30 17:07:29 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:07:29 Opening SQLite database -[GoRacerr]2024/08/30 17:07:29 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:07:31 Could not insert new race in db sql: converting argument $1 type: unsupported type []interface {}, a slice of interface -[GoRacerr]2024/08/30 17:07:31 -[GoRacerr]2024/08/30 17:11:13 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:11:13 Opening SQLite database -[GoRacerr]2024/08/30 17:11:13 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:11:15 Could not insert new race in db sql: converting argument $1 type: unsupported type []interface {}, a slice of interface -[GoRacerr]2024/08/30 17:11:15 -[GoRacerr]2024/08/30 17:15:57 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:15:57 Opening SQLite database -[GoRacerr]2024/08/30 17:15:57 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:16:08 Could not insert new race in db sql: converting argument $1 type: unsupported type []interface {}, a slice of interface -[GoRacerr]2024/08/30 17:16:08 -[GoRacerr]2024/08/30 17:17:38 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:17:38 Opening SQLite database -[GoRacerr]2024/08/30 17:17:38 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:17:46 Could not insert new race in db sql: converting argument $1 type: unsupported type []interface {}, a slice of interface -[GoRacerr]2024/08/30 17:17:46 -[GoRacerr]2024/08/30 17:18:04 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:18:04 Opening SQLite database -[GoRacerr]2024/08/30 17:18:04 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:19:44 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:19:44 Opening SQLite database -[GoRacerr]2024/08/30 17:19:44 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:24:46 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:24:46 Opening SQLite database -[GoRacerr]2024/08/30 17:24:46 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:35:04 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:35:04 Opening SQLite database -[GoRacerr]2024/08/30 17:35:04 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:40:23 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:40:23 Opening SQLite database -[GoRacerr]2024/08/30 17:40:23 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:41:17 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:41:17 Opening SQLite database -[GoRacerr]2024/08/30 17:41:17 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:41:17 Prerace Touch 2024 2160p WEB-DL DD+5.1 HDR x265-ETHEL added to the database -[GoRacerr]2024/08/30 17:41:35 Prerace TechSmith.Camtasia.2024.0.6.macOS-NoGrp added to the database -[GoRacerr]2024/08/30 17:47:54 Prerace ColorFoto.No.09.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:47:55 Prerace CSI.NY.S09E04.MULTi.1080p.WEB.H264-AZR added to the database -[GoRacerr]2024/08/30 17:47:57 Prerace CSI.NY.S09E10.MULTi.1080p.WEB.H264-AZR added to the database -[GoRacerr]2024/08/30 17:48:11 Prerace Lana_Scolaro-Revenge_(TOLOKA_Smile_(UA)_Extended_Remix)-(POLY0024)-SINGLE-WEB-2024-AFO_INT added to the database -[GoRacerr]2024/08/30 17:48:18 Prerace DWJ.-.Das.Magazin.fuer.Waffenbesitzer.No.09.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:48:22 Prerace CSI.NY.S09E06.MULTi.1080p.WEB.H264-AZR added to the database -[GoRacerr]2024/08/30 17:48:33 Prerace FACES.No.09.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:49:01 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:49:01 Opening SQLite database -[GoRacerr]2024/08/30 17:49:01 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:49:24 Prerace FOCUS.No.36.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:49:24 Prerace FOTOHITS.No.10.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:49:26 Prerace Nihil_Young_and_Fredrik_Ferrier-Shimmer-(N484)-SINGLE-16BIT-WEB-FLAC-2024-AFO added to the database -[GoRacerr]2024/08/30 17:49:48 Prerace HiFi.TEST.TV.HIFI.No.05.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:49:49 Prerace LP.No.06.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:50:15 Prerace LinuxWelt.Extra.No.01.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:50:39 Prerace MICHEL-Rundschau.No.09.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:50:45 Prerace Christian_Meldal-Sunset_(Extended_Mix)-(N486B)-SINGLE-WEB-2024-AFO_INT added to the database -[GoRacerr]2024/08/30 17:51:00 Prerace Power-Wrestling.No.09.2024.GERMAN.HYBRID.MAGAZINE.eBook-LORENZ added to the database -[GoRacerr]2024/08/30 17:51:02 Prerace Entropy - Dharmakāya [2024] (WEB FLAC 24BIT Lossless) added to the database -[GoRacerr]2024/08/30 17:51:02 Prerace Entropy - Dharmakāya [2024] (WEB FLAC Lossless) added to the database -[GoRacerr]2024/08/30 17:51:13 Starting GoRacerr on 0.0.0.0:3000 -[GoRacerr]2024/08/30 17:51:13 Opening SQLite database -[GoRacerr]2024/08/30 17:51:13 Listening for new Preraces / Races -[GoRacerr]2024/08/30 17:51:13 Prerace Holy Frit (2021) 1080p WEBRip 5.1-LAMA added to the database -[GoRacerr]2024/08/30 17:52:49 Prerace Into The West S01E04 Hell on Wheels 1080p BluRay x264-OFT added to the database -[GoRacerr]2024/08/30 17:55:19 Prerace Urotsukidoji.Legend.Of.The.Overfiend.1989.EXTENDED.BDRIP.X264-WATCHABLE added to the database -[GoRacerr]2024/08/30 18:00:24 Prerace Kinds of Kindness 2024 2160p MA WEB-DL DDP5.1 Atmos H.265-HHWEB added to the database +[GoRacerr]2024/08/31 10:58:47 Opening SQLite database +[GoRacerr]2024/08/31 10:58:47 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:06:16 Prerace *** ATKGirlfriends.24.08.31.Zoey.Zimmer.Shorts.POV.Sex.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:07:07 Prerace *** ATKGirlfriends.24.08.31.Zoey.Zimmer.Shorts.POV.Sex.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:08:43 Prerace *** MommysGirl.24.08.31.Helena.Locke.And.Luna.Luxe.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:09:03 Prerace *** MommysGirl.24.08.31.Helena.Locke.And.Luna.Luxe.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:12:29 Prerace *** EvilAngel.24.08.31.Skylar.Snow.And.Payton.Preslee.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:12:33 Prerace *** EvilAngel.24.08.31.Skylar.Snow.And.Payton.Preslee.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:14:57 Prerace *** CuckoldSessions.24.08.31.Liz.Jordan.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:15:04 Prerace *** CuckoldSessions.24.08.31.Liz.Jordan.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:15:55 Prerace *** HardX.24.08.31.Gal.Ritchie.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:16:50 Prerace *** HardX.24.08.31.Gal.Ritchie.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:22:44 Prerace *** Europe.From.Above.S06E02.1080p.HDTV.H264-CBFM *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:24:11 Prerace *** Pirates.Behind.the.Legends.S01E02.1080p.HDTV.H264-CBFM *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:27:44 Prerace *** NewSensations.24.08.31.Malina.Melendez.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:27:46 Prerace *** NewSensations.24.08.31.Malina.Melendez.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:28:23 Prerace *** PornWorld.24.08.31.Polly.Yangs.And.Merida.Sat.Part.2.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 11:29:54 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 11:29:54 Opening SQLite database +[GoRacerr]2024/08/31 11:29:54 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:30:07 Could not fetch HardX.24.08.31.Gal.Ritchie.XXX.1080p.MP4-WRB from the database, error:%!(EXTRA sqlite3.Error=no such table: Racer) +[GoRacerr]2024/08/31 11:30:34 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 11:30:34 Opening SQLite database +[GoRacerr]2024/08/31 11:30:34 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:31:20 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 11:31:20 Opening SQLite database +[GoRacerr]2024/08/31 11:31:20 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:31:28 Could not fetch HardX.24.08.31.Gal.Ritchie.XXX.1080p.MP4-WRB from the database, error:%!(EXTRA *errors.errorString=sql: expected 17 destination arguments in Scan, not 3) +[GoRacerr]2024/08/31 11:32:17 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 11:32:17 Opening SQLite database +[GoRacerr]2024/08/31 11:32:17 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:32:27 Found a race for HardX.24.08.31.Gal.Ritchie.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 11:32:43 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 11:32:43 Opening SQLite database +[GoRacerr]2024/08/31 11:32:43 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:41:30 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 11:41:30 Opening SQLite database +[GoRacerr]2024/08/31 11:41:30 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:41:59 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 11:41:59 Opening SQLite database +[GoRacerr]2024/08/31 11:41:59 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:43:00 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 11:43:00 Opening SQLite database +[GoRacerr]2024/08/31 11:43:00 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:45:46 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 11:45:46 Opening SQLite database +[GoRacerr]2024/08/31 11:45:46 Listening for new Preraces / Races +[GoRacerr]2024/08/31 11:53:11 Prerace *** Europe.From.Above.S06E02.720p.HEVC.x265-MeGusta *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:01:00 Prerace *** DreamNet.24.08.24.Shelby.Cum.In.Theater.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:01:51 Prerace *** FemJoy.24.08.24.Kitty.Kate.And.Nikoletta.Flirtations.XXX.HR.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:03:33 Prerace *** BlowBangGirls.24.08.25.Candee.May.Pint.Size.Girl.Gets.7.Facials.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:04:27 Prerace *** DomingoView.24.08.25.Luise.Wixx.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:04:55 Prerace *** AnalMom.24.08.31.Liv.Revamped.Nothing.Says.Happy.Birthday.Like.Anal.Sex.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:05:06 Prerace *** Daddy You Daughter Me 2017 1080p WEB-DL AAC 2.0 H.264-Phanteam *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 12:05:43 Prerace *** FemJoy.24.08.31.July.Tempt.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:05:58 Prerace *** GirlsOutWest.24.08.31.Greta.And.Saskia.Wild.West.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:07:17 Prerace *** ImmoralLive.24.08.31.Novella.Night.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:07:33 Prerace *** MyBabysittersClub.24.08.31.Ruby.Moon.Caught.Dont.Fire.Me.Just.Fuck.Me.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:08:32 Prerace *** Kamen Rider Black Terror Of Demon Pass 1988 1080p AMZN WEB-DL DDP 2.0 x264-ADWeb *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 12:08:51 Prerace *** OyeMami.24.08.31.Lily.Rosse.Big.Titty.Latina.Maid.Goes.Too.Far.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:09:52 Prerace *** Shoplyfter.24.08.31.Octavia.Red.Spirit.Week.Fail.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:10:44 Prerace *** The Imperial Japanese Empire 1982 720p BluRay DD2.0 x264-mfcorrea *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 12:35:35 Prerace *** Paralympic Games 2024.AllSports.J02.French.1080p.HDTV.AAC.30_08_2024-Freek911 (S:0/L:0) *** from YGG Torrent added to the database +[GoRacerr]2024/08/31 12:35:36 Prerace *** Jinnys.Kitchen.S02E10.1080p.WEB.h264-EDITH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:37:42 Prerace *** First Shift 2024 1080p AMZN WEB-DL DDP5.1 H.264-BYNDR *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 12:38:09 Prerace *** First Shift 2024 720p AMZN WEB-DL DDP5.1 H.264-BYNDR *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 12:38:42 Prerace *** Freedom Hair 2024 1080p AMZN WEB-DL DDP5.1 H.264-BYNDR *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 12:39:08 Prerace *** Freedom Hair 2024 720p AMZN WEB-DL DDP5.1 H.264-BYNDR *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 12:39:49 Prerace *** EvolvedFightsLez.24.08.21.Ariel.X.Vs.Daisy.Ducati.Orgasm.Challenge.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:40:43 Prerace *** Freres.2024.FRENCH.720p.WEB.H264-Silky *** from TheOldSchool added to the database +[GoRacerr]2024/08/31 12:41:26 Prerace *** BrokenLatinaWhores.24.08.21.Sophia.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:44:22 Prerace *** Freres.2024.FRENCH.1080p.WEB.H264-Silky *** from TheOldSchool added to the database +[GoRacerr]2024/08/31 12:45:16 Prerace *** EvolvedFights.24.08.23.Nikki.Zee.Vs.James.Bang.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:46:31 Prerace *** FacialAbuse.E949.Lustful.Essence.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:47:52 Prerace *** HardWerk.24.08.22.Tula.Vida.Hardwerk.Session.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:48:14 Prerace *** HardWerk.24.08.22.Tula.Vida.Hardwerk.Session.XXX.2160p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:48:55 Prerace *** Doomsday.2008.1080p.HULU.WEB-DL.DDP.5.1.H.264-PiRaTeS *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:48:57 Prerace *** HotGuysFuck.24.08.19.Trent.Fox.And.Thalia.Rhea.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:49:12 Prerace *** HotGuysFuck.24.08.23.Elija.Loads.And.Emiko.Wren.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:50:50 Prerace *** HotGuysFuck.24.08.24.Atlas.Eros.And.Sophia.Sterling.Kings.Cam.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:52:13 Prerace *** HuCows.24.08.24.Cleo.On.The.Milking.Bed.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:53:55 Prerace *** Lustery.E1477.Amy.And.Jr.Threes.A.Charm.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:56:02 Prerace *** The Matrix Revolutions 2003 2160p MA WEB-DL TrueHD Atmos 7 1 H.265-FLUX *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 12:56:02 Prerace *** Lustery.E1478.Holly.Beth.And.Hairy.Styles.Hair.For.It.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:56:15 Prerace *** Skyline.2010.1080p.HULU.WEB-DL.DDP.5.1.H.264-PiRaTeS *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:57:05 Prerace *** Lustery.E1479.John.And.Lynn.Wet.Weather.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:58:50 Prerace *** Lustery.E1480.Nicky.And.Nour.Sun-Kissed.Morning.Sex.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 12:59:51 Prerace *** The Matrix Revolutions 2003 2160p MA WEB-DL TrueHD Atmos 7 1 DV HDR H.265-FLUX *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 13:00:33 Prerace *** Lustery.E1481.Dima.G.And.Irina.G.Kitchen.Kreampie.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:00:48 Prerace *** TL-The.Take.720p.Bluray *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:03:13 Prerace *** Lingo.2023.S02E13.1080p.WEB.h264-EDITH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:04:20 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from Abnormal added to the database +[GoRacerr]2024/08/31 13:05:03 Prerace *** SeeHimFuck.24.08.23.Blake.Rivers.And.Harley.King.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:06:56 Prerace *** Taken.2008.Unrated.1080p.HULU.WEB-DL.DDP.5.1.H.264-PiRaTeS *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:07:46 Prerace *** TadpolexStudio.24.08.23.Alice.Maze.Fucks.Tad.Pole.Twice.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:08:28 Prerace *** TadpolexStudio.24.08.23.Alice.Maze.Fucks.Tad.Pole.Twice.XXX.2160p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:10:02 Prerace *** TadpolexStudio.24.08.27.Penelope.Woods.Creampied.By.Tad.Pole.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:10:35 Prerace *** Cyclisme - Tour d'Espagne 2024 10eme à 12eme étape HDTV 720p H264 (S:0/L:0) *** from YGG Torrent added to the database +[GoRacerr]2024/08/31 13:10:50 Prerace *** TadpolexStudio.24.08.27.Penelope.Woods.Creampied.By.Tad.Pole.XXX.2160p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:11:43 Prerace *** Barbie.Dolphin.Magic.2017.1080p.NF.WEB-DL.DD+5.1.H.264-playWEB *** from FileList added to the database +[GoRacerr]2024/08/31 13:13:26 Prerace *** TransAngels.24.08.21.Izzy.Wilde.Shes.All.That.And.More.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:14:48 Prerace *** Les Hommes Libres [2011] x264.1080p.BluRay.Rip.Scene.FRENCH-ROUGH *** from HD-Forever added to the database +[GoRacerr]2024/08/31 13:15:30 Prerace *** Barbie.Princess.Adventure.2020.1080p.NF.WEB-DL.DD+5.1.H.264-playWEB *** from FileList added to the database +[GoRacerr]2024/08/31 13:16:13 Prerace *** TransAngels.24.08.23.Rana.Katana.Renaissance.Fair.Fuckfest.XXX.1080p.MP4-FETiSH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:17:05 Prerace *** WWE Friday Night SmackDown 2024 08 30 720p HDTV h264-Star *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:17:20 Prerace *** Barbie.and.Stacie.to.the.Rescue.2024.1080p.NF.WEB-DL.DD+5.1.H.264-playWEB *** from FileList added to the database +[GoRacerr]2024/08/31 13:20:35 Prerace *** Le.Grand.Concours.S23E04.30.08.2024.FRENCH.1080p.WEB.H264-BTT (S:0/L:0) *** from YGG Torrent added to the database +[GoRacerr]2024/08/31 13:21:10 Prerace *** The.A-Team.2010.1080p.HULU.WEB-DL.DDP.5.1.H.264-PiRaTeS *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:22:28 Prerace *** ExploitedTeens.24.05.03.Lilly.XXX.2160p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:23:39 Prerace *** Jinnys.Kitchen.S02E10.1080p.HEVC.x265-MeGusta *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:24:07 Prerace *** ExploitedTeens.24.05.10.Kati.XXX.2160p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:25:35 Prerace *** Top.Boy.2019.COMPLETE.MULTi.AD.1080p.NF.WEB.DDP.AV1-BTT (S:0/L:0) *** from YGG Torrent added to the database +[GoRacerr]2024/08/31 13:25:53 Prerace *** DorcelClub.24.06.17.Jadilica.XXX.2160p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:27:37 Prerace *** DorcelClub.24.06.19.Mandi.Slade.XXX.2160p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:29:02 Prerace *** Daddy4K.24.07.29.Maya.XXX.1080p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:29:45 Prerace *** Jinnys.Kitchen.S02E10.720p.HEVC.x265-MeGusta *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:31:07 Prerace *** Familjen.Andersson.S02E09.SWEDiSH.720p.WEB.h264-OLLONBORRE *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:31:16 Prerace *** Mature4K.24.07.30.Malusha.XXX.1080p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:31:48 Prerace *** Big.Brother.US.S26E21.1080p.WEB.h264-EDITH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:32:23 Prerace *** Freedom.Hair.2024.720p.AMZN.WEBRip.x264-LAMA *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:32:55 Prerace *** Blacked.24.08.26.Dan.Dangler.XXX.1080p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:33:30 Prerace *** BlackedRaw.24.08.26.Chanel.Camryn.And.Demi.Hawks.XXX.1080p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:34:07 Prerace *** Big Brother US S26E21 1080p WEB-DL DD+2.0 H.264-EDITH *** from HD-Torrents added to the database +[GoRacerr]2024/08/31 13:35:09 Prerace *** Swallowed.24.08.26.Tessa.Thomas.And.Nicole.Luva.XXX.1080p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:36:45 Prerace *** The.Losers.2010.1080p.HULU.WEB-DL.DDP.5.1.H.264-PiRaTeS *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:36:47 Prerace *** InTheCrack.E1926.Nikki.Fox.Budapest.XXX.1080p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:39:13 Prerace *** CSI.NY.INTEGRALE.MULTi.1080p.WEB.H264-AZR *** from TheOldSchool added to the database +[GoRacerr]2024/08/31 13:40:13 Prerace *** FTVGirls.24.08.26.Sky.Youthful.Sexuality.XXX.1080p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:40:32 Prerace *** InTheCrack.E1926.Nikki.Fox.Budapest.XXX.2160p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:43:49 Prerace *** FTVGirls.24.08.26.Sky.Youthful.Sexuality.XXX.2160p.MP4-NBQ *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:45:35 Prerace *** Matchstick.Men.2003.CUSTOM.MULTI.VF2.1080p.BluRay.REMUX.AVC (Les Associés) (S:0/L:0) *** from YGG Torrent added to the database +[GoRacerr]2024/08/31 13:50:03 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 13:50:03 Opening SQLite database +[GoRacerr]2024/08/31 13:50:03 Listening for new Preraces / Races +[GoRacerr]2024/08/31 13:50:32 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 13:50:32 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:51:26 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 13:51:26 Opening SQLite database +[GoRacerr]2024/08/31 13:51:26 Listening for new Preraces / Races +[GoRacerr]2024/08/31 13:51:46 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 13:51:46 Opening SQLite database +[GoRacerr]2024/08/31 13:51:46 Listening for new Preraces / Races +[GoRacerr]2024/08/31 13:51:47 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 13:51:47 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 13:51:47 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:57:47 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 13:57:47 Opening SQLite database +[GoRacerr]2024/08/31 13:57:47 Listening for new Preraces / Races +[GoRacerr]2024/08/31 13:57:51 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 13:57:51 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 13:57:51 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 13:57:51 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 13:59:14 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 13:59:14 Opening SQLite database +[GoRacerr]2024/08/31 13:59:14 Listening for new Preraces / Races +[GoRacerr]2024/08/31 13:59:17 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 13:59:17 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 13:59:17 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 13:59:17 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 13:59:17 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:00:10 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:00:10 Opening SQLite database +[GoRacerr]2024/08/31 14:00:10 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:00:10 Prerace *** Gattaca.1997.MULTi.2160p.UHD.Bluray.x265-FLOP *** from TheOldSchool added to the database +[GoRacerr]2024/08/31 14:00:39 &{1 1 1 0xc000340378} +[GoRacerr]2024/08/31 14:01:24 Prerace *** The Watchers 2024 CUSTOM VFF 1080p BluRay mHD x264 AC3-ROMKENT (S:0/L:0) *** from YGG Torrent added to the database +[GoRacerr]2024/08/31 14:01:25 Prerace *** Reminiscence.2021.MULTi.2160p.UHD.DV.x265-FLOP *** from TheOldSchool added to the database +[GoRacerr]2024/08/31 14:01:57 +[GoRacerr]2024/08/31 14:02:00 +[GoRacerr]2024/08/31 14:02:00 Prerace *** Jurassic.Park.1993.MULTi.2160p.UHD.x265-FLOP *** from TheOldSchool added to the database +[GoRacerr]2024/08/31 14:02:14 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:02:14 Opening SQLite database +[GoRacerr]2024/08/31 14:02:14 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:02:16 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 14:02:16 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:02:16 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:02:16 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:02:16 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:02:16 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:03:46 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:03:46 Opening SQLite database +[GoRacerr]2024/08/31 14:03:46 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:03:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 14:03:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:03:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:03:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:03:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:03:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:03:50 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:05:48 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:05:48 Opening SQLite database +[GoRacerr]2024/08/31 14:05:48 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:05:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 14:05:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:05:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:05:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:05:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:05:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:05:50 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:05:50 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:12:46 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:12:46 Opening SQLite database +[GoRacerr]2024/08/31 14:12:46 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:12:58 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:12:58 http: panic serving 212.7.203.107:46230: runtime error: index out of range [0] with length 0 +goroutine 10 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc00012e7f8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00029a240, {{0xc000022240, 0x39}, {0xc000399a77, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0001d81c0}, 0xc0001fc5a0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0001d81c0}, 0xc0001fc5a0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0001d81c0}, 0xc0001fc5a0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0001d81c0}, 0xc0001fc000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00027c240, {0x7ff6f1b5aeb0, 0xc00071c000}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:12:59 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:12:59 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:12:59 http: panic serving 212.7.203.107:46242: runtime error: index out of range [0] with length 0 +goroutine 11 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc00012e810?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00046a240, {{0xc000188000, 0x39}, {0xc00012a140, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0003f0000}, 0xc0003d6240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0003f0000}, 0xc0003d6240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0003f0000}, 0xc0003d6240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0003f0000}, 0xc0003d6000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00027c360, {0x7ff6f1b5aeb0, 0xc0001d6050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:12:59 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:12:59 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:12:59 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:12:59 http: panic serving 212.7.203.107:46246: runtime error: index out of range [0] with length 0 +goroutine 12 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc00012e828?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00029aa80, {{0xc00014afc0, 0x39}, {0xc00000a8a7, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0001d9260}, 0xc0001fd440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0001d9260}, 0xc0001fd440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0001d9260}, 0xc0001fd440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0001d9260}, 0xc0001fd200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00027c480, {0x7ff6f1b5aeb0, 0xc00071ccd0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:13:00 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:00 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:00 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:00 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:13:00 http: panic serving 212.7.203.107:46256: runtime error: index out of range [0] with length 0 +goroutine 13 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc00012e840?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0005ca240, {{0xc000246040, 0x39}, {0xc00049c270, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc000574000}, 0xc000542240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc000574000}, 0xc000542240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc000574000}, 0xc000542240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc000574000}, 0xc000542000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00027c5a0, {0x7ff6f1b5aeb0, 0xc000084050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:13:01 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:01 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:01 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:01 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:01 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:13:01 http: panic serving 212.7.203.107:46270: runtime error: index out of range [0] with length 0 +goroutine 14 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc0003825a0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00029ad80, {{0xc00014b440, 0x39}, {0xc00000b1e7, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0001d96c0}, 0xc0001fdc20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0001d96c0}, 0xc0001fdc20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0001d96c0}, 0xc0001fdc20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0001d96c0}, 0xc0001fd9e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00027c6c0, {0x7ff6f1b5aeb0, 0xc00071ceb0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:13:01 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:01 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:01 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:01 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:01 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:01 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:13:01 http: panic serving 212.7.203.107:46284: runtime error: index out of range [0] with length 0 +goroutine 68 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc0003825d0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0005ca540, {{0xc000246400, 0x39}, {0xc00049d197, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc000574460}, 0xc000542a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc000574460}, 0xc000542a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc000574460}, 0xc000542a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc000574460}, 0xc0005427e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003e0480, {0x7ff6f1b5aeb0, 0xc000084230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:13:02 http: panic serving 212.7.203.107:46288: runtime error: index out of range [0] with length 0 +goroutine 69 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc0003825e8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0005ca840, {{0xc000246a40, 0x39}, {0xc00074e3f7, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0005748c0}, 0xc000543200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0005748c0}, 0xc000543200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0005748c0}, 0xc000543200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0005748c0}, 0xc000542fc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003e05a0, {0x7ff6f1b5aeb0, 0xc000084410}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:02 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:13:02 http: panic serving 212.7.203.107:46302: runtime error: index out of range [0] with length 0 +goroutine 70 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc000382678?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0001e86c0, {{0xc00070ae00, 0x39}, {0xc00037b107, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc000178000}, 0xc0001c8ea0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc000178000}, 0xc0001c8ea0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc000178000}, 0xc0001c8ea0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc000178000}, 0xc0001c8c60) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003e06c0, {0x7ff6f1b5aeb0, 0xc000248500}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:13:03 http: panic serving 212.7.203.107:46306: runtime error: index out of range [0] with length 0 +goroutine 71 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc000180000?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0005cab40, {{0xc0002475c0, 0x39}, {0xc00074eba7, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc000574d20}, 0xc0005439e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc000574d20}, 0xc0005439e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc000574d20}, 0xc0005439e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc000574d20}, 0xc0005437a0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003e07e0, {0x7ff6f1b5aeb0, 0xc0000845f0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Found a race for Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:13:03 Prerace *** Nubiles.24.08.31.Lana.Live.Its.So.Tight.XXX.2160p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:13:03 http: panic serving 212.7.203.107:46320: runtime error: index out of range [0] with length 0 +goroutine 82 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc00012e2d0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0001e8600, {{0xc00070a500, 0x39}, {0xc00000a2e0, 0x7}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0001d8000}, 0xc0001c8b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0001d8000}, 0xc0001c8b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0001d8000}, 0xc0001c8b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0001d8000}, 0xc0001c8900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000242000, {0x7ff6f1b5aeb0, 0xc00071c000}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:13:21 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 14:13:21 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:13:21 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:13:21 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:13:21 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:13:21 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:13:21 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:13:21 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:13:21 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:13:21 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 񔝔] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:14:09 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:09 http: panic serving 212.7.203.107:59880: runtime error: index out of range [0] with length 0 +goroutine 100 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc00001c678?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004b8240, {{0xc0001a2000, 0x48}, {0xc00074e2d0, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc00048c000}, 0xc000542360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc00048c000}, 0xc000542360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc00048c000}, 0xc000542360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc00048c000}, 0xc000542120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00027c510, {0x7ff6f1b5aeb0, 0xc0000840a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:09 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 14:14:09 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:14:09 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:14:09 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:14:09 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:14:09 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:14:09 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:14:09 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:14:09 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:14:09 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:09 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 񔝔] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:14:09 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:09 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:09 http: panic serving 212.7.203.107:59894: runtime error: index out of range [0] with length 0 +goroutine 101 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc00001c7b0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00062c540, {{0xc0007240a0, 0x48}, {0xc00020d8b0, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0005b2460}, 0xc0005aca20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0005b2460}, 0xc0005aca20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0005b2460}, 0xc0005aca20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0005b2460}, 0xc0005ac7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00027c6c0, {0x7ff6f1b5aeb0, 0xc0001d61e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:10 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:10 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:10 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:10 http: panic serving 212.7.203.107:59900: runtime error: index out of range [0] with length 0 +goroutine 102 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc00001c7c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004b8540, {{0xc0001a2140, 0x48}, {0xc00074ed30, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc00048c460}, 0xc000542b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc00048c460}, 0xc000542b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc00048c460}, 0xc000542b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc00048c460}, 0xc000542900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00027c7e0, {0x7ff6f1b5aeb0, 0xc000084280}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:10 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:10 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:10 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:10 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:10 http: panic serving 212.7.203.107:59902: runtime error: index out of range [0] with length 0 +goroutine 103 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc00012e5b8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004b8840, {{0xc0001a22d0, 0x48}, {0xc00074fca0, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc00048c8c0}, 0xc000543320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc00048c8c0}, 0xc000543320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc00048c8c0}, 0xc000543320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc00048c8c0}, 0xc0005430e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00027c900, {0x7ff6f1b5aeb0, 0xc000084460}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:11 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:11 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:11 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:11 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:11 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:11 http: panic serving 212.7.203.107:59912: runtime error: index out of range [0] with length 0 +goroutine 86 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc000382a80?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00062c840, {{0xc0007241e0, 0x48}, {0xc00022abf0, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0005b28c0}, 0xc0005ad200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0005b28c0}, 0xc0005ad200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0005b28c0}, 0xc0005ad200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0005b28c0}, 0xc0005acfc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0002427e0, {0x7ff6f1b5aeb0, 0xc0001d63c0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:11 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:11 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:11 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:11 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:11 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:11 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:11 http: panic serving 212.7.203.107:59924: runtime error: index out of range [0] with length 0 +goroutine 117 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc000382a98?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0005ca540, {{0xc000020320, 0x48}, {0xc000187130, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc000574460}, 0xc0001fca20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc000574460}, 0xc0001fca20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc000574460}, 0xc0001fca20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc000574460}, 0xc0001fc7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003e0bd0, {0x7ff6f1b5aeb0, 0xc0002481e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:12 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:12 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:12 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:12 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:12 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:12 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:12 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:12 http: panic serving 212.7.203.107:59934: runtime error: index out of range [0] with length 0 +goroutine 118 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc000382b10?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0001e8900, {{0xc0003c2140, 0x48}, {0xc00012bce0, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0001d8460}, 0xc0001c9680) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0001d8460}, 0xc0001c9680) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0001d8460}, 0xc0001c9680) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0001d8460}, 0xc0001c9440) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003e0cf0, {0x7ff6f1b5aeb0, 0xc00071c370}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:13 http: panic serving 212.7.203.107:59936: runtime error: index out of range [0] with length 0 +goroutine 119 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc0007285d0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0001e8c00, {{0xc0003c2550, 0x48}, {0xc000399ff0, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0001d88c0}, 0xc0001c9e60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0001d88c0}, 0xc0001c9e60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0001d88c0}, 0xc0001c9e60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0001d88c0}, 0xc0001c9c20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003e0e10, {0x7ff6f1b5aeb0, 0xc00071c550}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:13 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:13 http: panic serving 212.7.203.107:59952: runtime error: index out of range [0] with length 0 +goroutine 62 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc000382b28?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0001e8f00, {{0xc0003c2cd0, 0x48}, {0xc000701230, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0001d8e00}, 0xc00017a6c0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0001d8e00}, 0xc00017a6c0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0001d8e00}, 0xc00017a6c0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0001d8e00}, 0xc00017a480) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000550fc0, {0x7ff6f1b5aeb0, 0xc00071c730}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:14 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:14 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:14 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:14 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:14 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:14 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:14 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:14 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:14 Found a race for CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB on DigitalCore +[GoRacerr]2024/08/31 14:14:14 Prerace *** CheatingSis.24.08.31.Dylan.Moore.Fuck.Me.One.More.Time.XXX.1080p.MP4-WRB *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:14:14 http: panic serving 212.7.203.107:59964: runtime error: index out of range [0] with length 0 +goroutine 120 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6f1ac42a0?, 0xc000382b40?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0001e9200, {{0xc0003c3130, 0x48}, {0xc00049c5a0, 0xb}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0001233b0, {0x7ff6f1b5a830, 0xc0001d9420}, 0xc00017aea0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc0002ec1b0, {0x7ff6f1b5a830, 0xc0001d9420}, 0xc00017aea0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0001e8300, {0x7ff6f1b5a830, 0xc0001d9420}, 0xc00017aea0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0000da000}, {0x7ff6f1b5a830, 0xc0001d9420}, 0xc00017ac60) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003e0f30, {0x7ff6f1b5aeb0, 0xc00071c910}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:14:48 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:14:48 Opening SQLite database +[GoRacerr]2024/08/31 14:14:48 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:14:58 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 14:15:05 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:15:43 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:15:43 Opening SQLite database +[GoRacerr]2024/08/31 14:15:43 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:15:47 http: panic serving 212.7.203.107:44202: runtime error: index out of range [0] with length 0 +goroutine 11 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f2d8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00031c000, {{0xc0003c00f0, 0x43}, {0xc0002c0348, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a1c0}, 0xc0004f0360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a1c0}, 0xc0004f0360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a1c0}, 0xc0004f0360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a1c0}, 0xc0004f0000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e360, {0x7ff6cb90aeb0, 0xc00011e000}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:23 http: panic serving 212.7.203.107:41686: runtime error: index out of range [0] with length 0 +goroutine 13 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684198?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00031c0c0, {{0xc0003c0140, 0x43}, {0xc000684120, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a2a0}, 0xc000306240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a2a0}, 0xc000306240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a2a0}, 0xc000306240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a2a0}, 0xc000306000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e090, {0x7ff6cb90aeb0, 0xc00045a000}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:23 Found TMDB Information for [Isomen - Forest (Seeking The Magic Mushroom) [2024] (WEB FLAC Lossless)] with Title [Forest] [ID: 񰃻] [Year: 2024] [Original Title: Мавка: Лісова пісня] [Original Language: uk] [Release Date: 2023-03-02] +[GoRacerr]2024/08/31 14:16:53 Prerace *** Glass.2019.MULTi.VFF.BLURAY.2160p.4KLight.DV.HDR.x265.DDP.5.1-CiSCO (S:0/L:0) *** from YGG Torrent added to the database +[GoRacerr]2024/08/31 14:16:54 Found TMDB Information for [Glass.2019.MULTi.VFF.BLURAY.2160p.4KLight.DV.HDR.x265.DDP.5.1-CiSCO (S:0/L:0)] with Title [Glass] [ID: 񭾡] [Year: 2019] [Original Title: Glass] [Original Language: en] [Release Date: 2019-01-16] +[GoRacerr]2024/08/31 14:16:54 http: panic serving 212.7.203.107:41776: runtime error: index out of range [0] with length 0 +goroutine 16 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f560?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00031c540, {{0xc0003c0410, 0x43}, {0xc000684318, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a7e0}, 0xc000307200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a7e0}, 0xc000307200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a7e0}, 0xc000307200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a7e0}, 0xc000306fc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e630, {0x7ff6cb90aeb0, 0xc00045a2d0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:55 http: panic serving 212.7.203.107:52822: runtime error: index out of range [0] with length 0 +goroutine 66 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c360?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae180, {{0xc0000202d0, 0x43}, {0xc00040f5c0, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0002f00e0}, 0xc00014b7a0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0002f00e0}, 0xc00014b7a0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0002f00e0}, 0xc00014b7a0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0002f00e0}, 0xc00014b560) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000906000, {0x7ff6cb90aeb0, 0xc0003d60a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:55 http: panic serving 212.7.203.107:38208: runtime error: index out of range [0] with length 0 +goroutine 52 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c3d8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae240, {{0xc000020370, 0x43}, {0xc00040f6c8, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0002f01c0}, 0xc0005bc000) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0002f01c0}, 0xc0005bc000) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0002f01c0}, 0xc0005bc000) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0002f01c0}, 0xc00014bd40) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2240, {0x7ff6cb90aeb0, 0xc0003d6410}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:56 http: panic serving 212.7.203.107:38220: runtime error: index out of range [0] with length 0 +goroutine 53 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c408?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00092a000, {{0xc0001e21e0, 0x43}, {0xc00010a030, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000926000}, 0xc000922240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000926000}, 0xc000922240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000926000}, 0xc000922240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000926000}, 0xc000922000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f26c0, {0x7ff6cb90aeb0, 0xc0001580a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:56 http: panic serving 212.7.203.107:38228: runtime error: index out of range [0] with length 0 +goroutine 54 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c450?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00092a0c0, {{0xc0001e2280, 0x43}, {0xc00010a138, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0009260e0}, 0xc000922a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0009260e0}, 0xc000922a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0009260e0}, 0xc000922a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0009260e0}, 0xc0009227e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f27e0, {0x7ff6cb90aeb0, 0xc000158280}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:57 http: panic serving 212.7.203.107:52142: runtime error: index out of range [0] with length 0 +goroutine 55 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f770?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00031c600, {{0xc0003c0870, 0x43}, {0xc000684420, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a8c0}, 0xc0003079e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a8c0}, 0xc0003079e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a8c0}, 0xc0003079e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a8c0}, 0xc0003077a0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2900, {0x7ff6cb90aeb0, 0xc00045a690}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:57 http: panic serving 212.7.203.107:52154: runtime error: index out of range [0] with length 0 +goroutine 86 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f788?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00031c6c0, {{0xc0003c0910, 0x43}, {0xc000684528, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015aa80}, 0xc000656240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015aa80}, 0xc000656240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015aa80}, 0xc000656240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015aa80}, 0xc000656000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028eea0, {0x7ff6cb90aeb0, 0xc00045a870}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:58 http: panic serving 212.7.203.107:52166: runtime error: index out of range [0] with length 0 +goroutine 87 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f7a0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000650000, {{0xc000124000, 0x43}, {0xc00001c540, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00064a000}, 0xc0004f0480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00064a000}, 0xc0004f0480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00064a000}, 0xc0004f0480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00064a000}, 0xc0004f0240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028efc0, {0x7ff6cb90aeb0, 0xc00011e370}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:58 http: panic serving 212.7.203.107:52178: runtime error: index out of range [0] with length 0 +goroutine 88 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f7b8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00031c780, {{0xc0003c0a00, 0x43}, {0xc000684630, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015ab60}, 0xc000656a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015ab60}, 0xc000656a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015ab60}, 0xc000656a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015ab60}, 0xc0006567e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028f0e0, {0x7ff6cb90aeb0, 0xc00045aa50}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:16:59 http: panic serving 212.7.203.107:52180: runtime error: index out of range [0] with length 0 +goroutine 89 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a1e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006500c0, {{0xc0001240f0, 0x43}, {0xc00001c708, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00064a0e0}, 0xc0004f1200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00064a0e0}, 0xc0004f1200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00064a0e0}, 0xc0004f1200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00064a0e0}, 0xc0004f0fc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028f200, {0x7ff6cb90aeb0, 0xc00011e550}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on Abnormal +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:17:03 Found a race for The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD on DigitalCore +[GoRacerr]2024/08/31 14:17:03 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:17:03 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 񔝔] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:17:56 http: panic serving 212.7.203.107:44706: runtime error: index out of range [0] with length 0 +goroutine 98 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040e660?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000738000, {{0xc000108000, 0x30}, {0xc0001b4060, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00072e000}, 0xc000700240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00072e000}, 0xc000700240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00072e000}, 0xc000700240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00072e000}, 0xc000700000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000664000, {0x7ff6cb90aeb0, 0xc000180050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:17:57 http: panic serving 212.7.203.107:58564: runtime error: index out of range [0] with length 0 +goroutine 130 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f260?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae0c0, {{0xc00001e390, 0x30}, {0xc000684120, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a000}, 0xc000700900) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a000}, 0xc000700900) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a000}, 0xc000700900) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a000}, 0xc0007006c0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e090, {0x7ff6cb90aeb0, 0xc0001801e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:17:58 http: panic serving 212.7.203.107:58576: runtime error: index out of range [0] with length 0 +goroutine 131 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f278?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0007380c0, {{0xc000108060, 0x30}, {0xc0001b4120, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00072e0e0}, 0xc00014aa20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00072e0e0}, 0xc00014aa20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00072e0e0}, 0xc00014aa20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00072e0e0}, 0xc00014a7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e240, {0x7ff6cb90aeb0, 0xc000158050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:17:58 http: panic serving 212.7.203.107:58580: runtime error: index out of range [0] with length 0 +goroutine 132 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f290?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae180, {{0xc00001e4e0, 0x30}, {0xc000684240, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a0e0}, 0xc0007010e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a0e0}, 0xc0007010e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a0e0}, 0xc0007010e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a0e0}, 0xc000700ea0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e3f0, {0x7ff6cb90aeb0, 0xc0001803c0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:17:59 http: panic serving 212.7.203.107:58582: runtime error: index out of range [0] with length 0 +goroutine 133 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f2a8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354000, {{0xc00036e030, 0x30}, {0xc00001c408, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306000}, 0xc0004f0360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306000}, 0xc0004f0360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306000}, 0xc0004f0360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306000}, 0xc0004f0120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e510, {0x7ff6cb90aeb0, 0xc00011e050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:17:59 http: panic serving 212.7.203.107:58584: runtime error: index out of range [0] with length 0 +goroutine 134 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c5a0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae240, {{0xc00001e570, 0x30}, {0xc000684348, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a1c0}, 0xc0007018c0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a1c0}, 0xc0007018c0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a1c0}, 0xc0007018c0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a1c0}, 0xc000701680) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e630, {0x7ff6cb90aeb0, 0xc0001805a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:00 http: panic serving 212.7.203.107:58588: runtime error: index out of range [0] with length 0 +goroutine 63 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f2c0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae300, {{0xc00001e600, 0x30}, {0xc000684450, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a2a0}, 0xc0002f6120) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a2a0}, 0xc0002f6120) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a2a0}, 0xc0002f6120) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a2a0}, 0xc000701e60) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f25a0, {0x7ff6cb90aeb0, 0xc000180780}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:00 http: panic serving 212.7.203.107:58590: runtime error: index out of range [0] with length 0 +goroutine 135 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c5b8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae3c0, {{0xc00001e6c0, 0x30}, {0xc000684558, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a380}, 0xc0002f6900) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a380}, 0xc0002f6900) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a380}, 0xc0002f6900) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a380}, 0xc0002f66c0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e750, {0x7ff6cb90aeb0, 0xc000180960}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:01 http: panic serving 212.7.203.107:58600: runtime error: index out of range [0] with length 0 +goroutine 64 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c5d0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae480, {{0xc00001e780, 0x30}, {0xc000684660, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a460}, 0xc0002f70e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a460}, 0xc0002f70e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a460}, 0xc0002f70e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a460}, 0xc0002f6ea0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2750, {0x7ff6cb90aeb0, 0xc000180b40}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:01 http: panic serving 212.7.203.107:58616: runtime error: index out of range [0] with length 0 +goroutine 65 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c618?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea000, {{0xc00068c210, 0x30}, {0xc00040f350, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00045a000}, 0xc0000d0240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00045a000}, 0xc0000d0240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00045a000}, 0xc0000d0240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00045a000}, 0xc0000d0000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2870, {0x7ff6cb90aeb0, 0xc0003d6230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:02 http: panic serving 212.7.203.107:58628: runtime error: index out of range [0] with length 0 +goroutine 162 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c630?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000738180, {{0xc0001c6200, 0x3c}, {0xc000489525, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00072e1c0}, 0xc00014b440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00072e1c0}, 0xc00014b440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00072e1c0}, 0xc00014b440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00072e1c0}, 0xc00014b200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2990, {0x7ff6cb90aeb0, 0xc000158230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:03 http: panic serving 212.7.203.107:58644: runtime error: index out of range [0] with length 0 +goroutine 163 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684708?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000738240, {{0xc0001c6300, 0x3c}, {0xc000489a35, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00072e2a0}, 0xc00014bc20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00072e2a0}, 0xc00014bc20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00072e2a0}, 0xc00014bc20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00072e2a0}, 0xc00014b9e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2ab0, {0x7ff6cb90aeb0, 0xc000158410}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:03 http: panic serving 212.7.203.107:58654: runtime error: index out of range [0] with length 0 +goroutine 157 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684720?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea0c0, {{0xc0006881c0, 0x3c}, {0xc0004505e5, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00045a0e0}, 0xc0000d0a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00045a0e0}, 0xc0000d0a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00045a0e0}, 0xc0000d0a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00045a0e0}, 0xc0000d07e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007037a0, {0x7ff6cb90aeb0, 0xc0003d6410}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:04 http: panic serving 212.7.203.107:58666: runtime error: index out of range [0] with length 0 +goroutine 158 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684738?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003540c0, {{0xc000380a00, 0x3c}, {0xc00000b105, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003060e0}, 0xc0004f0ea0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003060e0}, 0xc0004f0ea0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003060e0}, 0xc0004f0ea0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003060e0}, 0xc0004f0a20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007038c0, {0x7ff6cb90aeb0, 0xc00011e3c0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:05 http: panic serving 212.7.203.107:58668: runtime error: index out of range [0] with length 0 +goroutine 159 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684750?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea180, {{0xc0006882c0, 0x3c}, {0xc000450da5, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00045a1c0}, 0xc0000d1200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00045a1c0}, 0xc0000d1200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00045a1c0}, 0xc0000d1200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00045a1c0}, 0xc0000d0fc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007039e0, {0x7ff6cb90aeb0, 0xc0003d65f0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:05 http: panic serving 212.7.203.107:58678: runtime error: index out of range [0] with length 0 +goroutine 160 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684768?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea240, {{0xc000688440, 0x3c}, {0xc000451515, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00045a2a0}, 0xc0000d19e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00045a2a0}, 0xc0000d19e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00045a2a0}, 0xc0000d19e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00045a2a0}, 0xc0000d17a0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000703b00, {0x7ff6cb90aeb0, 0xc0003d6820}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:06 http: panic serving 212.7.203.107:58684: runtime error: index out of range [0] with length 0 +goroutine 144 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f6c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae540, {{0xc000022c80, 0x3c}, {0xc000246660, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a540}, 0xc0002f78c0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a540}, 0xc0002f78c0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a540}, 0xc0002f78c0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a540}, 0xc0002f7680) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028f560, {0x7ff6cb90aeb0, 0xc000180e60}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:06 http: panic serving 212.7.203.107:58692: runtime error: index out of range [0] with length 0 +goroutine 145 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f6e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354180, {{0xc000380b00, 0x3c}, {0xc00000b695, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003061c0}, 0xc0004f1680) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003061c0}, 0xc0004f1680) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003061c0}, 0xc0004f1680) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003061c0}, 0xc0004f1440) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028f680, {0x7ff6cb90aeb0, 0xc00011e5a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:07 http: panic serving 212.7.203.107:47434: runtime error: index out of range [0] with length 0 +goroutine 194 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00040f6f8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354240, {{0xc000380bc0, 0x3c}, {0xc00000b8d0, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003062a0}, 0xc0004f1d40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003062a0}, 0xc0004f1d40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003062a0}, 0xc0004f1d40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003062a0}, 0xc0004f1b00) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028f7a0, {0x7ff6cb90aeb0, 0xc00011e730}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:18:07 http: panic serving 212.7.203.107:47446: runtime error: index out of range [0] with length 0 +goroutine 195 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001ca38?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae600, {{0xc000023600, 0x3c}, {0xc000247aa5, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00015a620}, 0xc0003fa240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00015a620}, 0xc0003fa240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00015a620}, 0xc0003fa240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00015a620}, 0xc0003fa000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028f8c0, {0x7ff6cb90aeb0, 0xc000181090}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:02 http: panic serving 212.7.203.107:46264: runtime error: index out of range [0] with length 0 +goroutine 116 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a138?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354300, {{0xc000380d00, 0x36}, {0xc00041a1c0, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306380}, 0xc00065a5a0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306380}, 0xc00065a5a0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306380}, 0xc00065a5a0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306380}, 0xc00065a360) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000742000, {0x7ff6cb90aeb0, 0xc00011ea50}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:02 http: panic serving 212.7.203.107:46280: runtime error: index out of range [0] with length 0 +goroutine 121 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4000?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae0c0, {{0xc0001c6180, 0x3d}, {0xc00001c360, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc00065ab40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc00065ab40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc00065ab40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc00065a240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000742240, {0x7ff6cb90aeb0, 0xc00011e140}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:02 http: panic serving 212.7.203.107:46282: runtime error: index out of range [0] with length 0 +goroutine 122 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a150?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00055c000, {{0xc00024ec80, 0x36}, {0xc0004501d0, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00055a000}, 0xc00014aa20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00055a000}, 0xc00014aa20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00055a000}, 0xc00014aa20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00055a000}, 0xc00014a7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007422d0, {0x7ff6cb90aeb0, 0xc000158050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:03 http: panic serving 212.7.203.107:46294: runtime error: index out of range [0] with length 0 +goroutine 123 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a168?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000436000, {{0xc000688180, 0x3d}, {0xc000684120, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e000}, 0xc0004f0240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e000}, 0xc0004f0240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e000}, 0xc0004f0240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e000}, 0xc0004f0000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007423f0, {0x7ff6cb90aeb0, 0xc000180050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:03 http: panic serving 212.7.203.107:46306: runtime error: index out of range [0] with length 0 +goroutine 124 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a180?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae180, {{0xc0001c6280, 0x36}, {0xc0001fb545, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc00065b320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc00065b320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc00065b320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc00065b0e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000742510, {0x7ff6cb90aeb0, 0xc00011e320}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:03 http: panic serving 212.7.203.107:46318: runtime error: index out of range [0] with length 0 +goroutine 125 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a198?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004360c0, {{0xc000688280, 0x3d}, {0xc000684228, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e0e0}, 0xc0004f0b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e0e0}, 0xc0004f0b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e0e0}, 0xc0004f0b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e0e0}, 0xc0004f07e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000742630, {0x7ff6cb90aeb0, 0xc000180230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:03 http: panic serving 212.7.203.107:46324: runtime error: index out of range [0] with length 0 +goroutine 126 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a1b0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000436180, {{0xc000688400, 0x36}, {0xc000435215, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e1c0}, 0xc0004f1560) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e1c0}, 0xc0004f1560) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e1c0}, 0xc0004f1560) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e1c0}, 0xc0004f1320) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000742750, {0x7ff6cb90aeb0, 0xc000180410}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:04 http: panic serving 212.7.203.107:46326: runtime error: index out of range [0] with length 0 +goroutine 127 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a1c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00055c0c0, {{0xc00024f200, 0x3d}, {0xc0001b4150, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00055a0e0}, 0xc00014b440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00055a0e0}, 0xc00014b440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00055a0e0}, 0xc00014b440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00055a0e0}, 0xc00014b200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000742870, {0x7ff6cb90aeb0, 0xc000158230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:04 http: panic serving 212.7.203.107:46340: runtime error: index out of range [0] with length 0 +goroutine 228 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b41f8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354600, {{0xc000381c40, 0x36}, {0xc000107150, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306c40}, 0xc000746480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306c40}, 0xc000746480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306c40}, 0xc000746480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306c40}, 0xc000746240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000906750, {0x7ff6cb90aeb0, 0xc000748be0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:04 http: panic serving 212.7.203.107:46354: runtime error: index out of range [0] with length 0 +goroutine 229 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006843a8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003546c0, {{0xc000381e00, 0x3d}, {0xc00010a330, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306d20}, 0xc000746c60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306d20}, 0xc000746c60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306d20}, 0xc000746c60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306d20}, 0xc000746a20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000906870, {0x7ff6cb90aeb0, 0xc000748dc0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:04 http: panic serving 212.7.203.107:46358: runtime error: index out of range [0] with length 0 +goroutine 187 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006843c0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00055c180, {{0xc00024f980, 0x36}, {0xc000450e00, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00055a1c0}, 0xc00014bc20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00055a1c0}, 0xc00014bc20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00055a1c0}, 0xc00014bc20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00055a1c0}, 0xc00014b9e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028ebd0, {0x7ff6cb90aeb0, 0xc0001584b0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:05 http: panic serving 212.7.203.107:46368: runtime error: index out of range [0] with length 0 +goroutine 188 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a3d8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00055c240, {{0xc00024fb00, 0x3d}, {0xc0001b4348, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00055a2a0}, 0xc000512480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00055a2a0}, 0xc000512480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00055a2a0}, 0xc000512480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00055a2a0}, 0xc000512240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028ecf0, {0x7ff6cb90aeb0, 0xc000158690}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:05 http: panic serving 212.7.203.107:46378: runtime error: index out of range [0] with length 0 +goroutine 244 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684420?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00055c300, {{0xc00024fdc0, 0x36}, {0xc000451955, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00055a380}, 0xc000512b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00055a380}, 0xc000512b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00055a380}, 0xc000512b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00055a380}, 0xc000512900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007430e0, {0x7ff6cb90aeb0, 0xc000158820}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:05 http: panic serving 212.7.203.107:46380: runtime error: index out of range [0] with length 0 +goroutine 189 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4480?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354780, {{0xc0002d8200, 0x3d}, {0xc00010a450, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306e00}, 0xc000747440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306e00}, 0xc000747440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306e00}, 0xc000747440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306e00}, 0xc000747200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028eea0, {0x7ff6cb90aeb0, 0xc000748ff0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:05 http: panic serving 212.7.203.107:46396: runtime error: index out of range [0] with length 0 +goroutine 236 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4498?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000436240, {{0xc0006888c0, 0x36}, {0xc0002465b5, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e2a0}, 0xc0004f1e60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e2a0}, 0xc0004f1e60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e2a0}, 0xc0004f1e60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e2a0}, 0xc0004f1c20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0009073b0, {0x7ff6cb90aeb0, 0xc000180730}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:06 http: panic serving 212.7.203.107:46412: runtime error: index out of range [0] with length 0 +goroutine 237 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a6c0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000436300, {{0xc000688a00, 0x3d}, {0xc000684570, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e380}, 0xc0004c06c0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e380}, 0xc0004c06c0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e380}, 0xc0004c06c0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e380}, 0xc0004c0480) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0009074d0, {0x7ff6cb90aeb0, 0xc000180910}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:06 http: panic serving 212.7.203.107:46422: runtime error: index out of range [0] with length 0 +goroutine 247 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684618?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00055c3c0, {{0xc000022440, 0x36}, {0xc000488b10, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00055a460}, 0xc000513320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00055a460}, 0xc000513320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00055a460}, 0xc000513320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00055a460}, 0xc0005130e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000743560, {0x7ff6cb90aeb0, 0xc000158aa0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:06 http: panic serving 212.7.203.107:46428: runtime error: index out of range [0] with length 0 +goroutine 258 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4588?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354840, {{0xc00010e200, 0x3d}, {0xc00010aaf8, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306ee0}, 0xc000747c20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306ee0}, 0xc000747c20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306ee0}, 0xc000747c20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306ee0}, 0xc0007479e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028f680, {0x7ff6cb90aeb0, 0xc000749220}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:06 http: panic serving 212.7.203.107:46432: runtime error: index out of range [0] with length 0 +goroutine 240 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684630?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354900, {{0xc00010e440, 0x36}, {0xc0003cf8f5, 0x9}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306fc0}, 0xc000530480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306fc0}, 0xc000530480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306fc0}, 0xc000530480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306fc0}, 0xc000530240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000907950, {0x7ff6cb90aeb0, 0xc000749400}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:07 http: panic serving 212.7.203.107:48710: runtime error: index out of range [0] with length 0 +goroutine 259 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b45a0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae240, {{0xc0001c6380, 0x3d}, {0xc00001c708, 0x14}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc00065bb00) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc00065bb00) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc00065bb00) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc00065b8c0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028f7a0, {0x7ff6cb90aeb0, 0xc00011e500}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:35 http: panic serving 212.7.203.107:57034: runtime error: index out of range [0] with length 0 +goroutine 241 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b45b8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae300, {{0xc0000201e0, 0x42}, {0xc00001c8e8, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d0380}, 0xc0002f6360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d0380}, 0xc0002f6360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d0380}, 0xc0002f6360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d0380}, 0xc0002f6120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000907a70, {0x7ff6cb90aeb0, 0xc00011e6e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:36 http: panic serving 212.7.203.107:57050: runtime error: index out of range [0] with length 0 +goroutine 274 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b45d0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004363c0, {{0xc0003c00f0, 0x42}, {0xc0006846a8, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e460}, 0xc0004c0ea0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e460}, 0xc0004c0ea0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e460}, 0xc0004c0ea0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e460}, 0xc0004c0c60) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000907b90, {0x7ff6cb90aeb0, 0xc000180b90}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:36 http: panic serving 212.7.203.107:57066: runtime error: index out of range [0] with length 0 +goroutine 275 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684750?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae3c0, {{0xc000020280, 0x42}, {0xc00001cb10, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d0460}, 0xc0002f6b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d0460}, 0xc0002f6b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d0460}, 0xc0002f6b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d0460}, 0xc0002f6900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000907cb0, {0x7ff6cb90aeb0, 0xc00011e8c0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:37 http: panic serving 212.7.203.107:47282: runtime error: index out of range [0] with length 0 +goroutine 276 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684870?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000436480, {{0xc0003c0190, 0x42}, {0xc0006847c8, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e540}, 0xc0004c1680) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e540}, 0xc0004c1680) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e540}, 0xc0004c1680) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e540}, 0xc0004c1440) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000907d40, {0x7ff6cb90aeb0, 0xc000180d70}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:37 http: panic serving 212.7.203.107:47286: runtime error: index out of range [0] with length 0 +goroutine 290 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4000?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae0c0, {{0xc000020190, 0x42}, {0xc00001c228, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc0004c0240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc0004c0240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc0004c0240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc0004c0000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2000, {0x7ff6cb90aeb0, 0xc00011e050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:38 http: panic serving 212.7.203.107:47292: runtime error: index out of range [0] with length 0 +goroutine 277 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4018?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354000, {{0xc0003c00f0, 0x42}, {0xc000684120, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e000}, 0xc00014aa20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e000}, 0xc00014aa20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e000}, 0xc00014aa20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e000}, 0xc00014a7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e090, {0x7ff6cb90aeb0, 0xc000180050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:38 http: panic serving 212.7.203.107:47302: runtime error: index out of range [0] with length 0 +goroutine 278 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006841c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea000, {{0xc000124000, 0x42}, {0xc00010a150, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306000}, 0xc0004f0240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306000}, 0xc0004f0240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306000}, 0xc0004f0240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306000}, 0xc0004f0000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e240, {0x7ff6cb90aeb0, 0xc0003d60a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:39 http: panic serving 212.7.203.107:47312: runtime error: index out of range [0] with length 0 +goroutine 221 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006841e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea0c0, {{0xc000124140, 0x42}, {0xc00010a288, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003060e0}, 0xc0004f0b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003060e0}, 0xc0004f0b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003060e0}, 0xc0004f0b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003060e0}, 0xc0004f07e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003183f0, {0x7ff6cb90aeb0, 0xc0003d6280}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:39 http: panic serving 212.7.203.107:47314: runtime error: index out of range [0] with length 0 +goroutine 223 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a330?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000526000, {{0xc0001e2000, 0x42}, {0xc0001b4090, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003fa000}, 0xc00065a360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003fa000}, 0xc00065a360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003fa000}, 0xc00065a360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003fa000}, 0xc00065a120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000318510, {0x7ff6cb90aeb0, 0xc0001580f0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:40 http: panic serving 212.7.203.107:47318: runtime error: index out of range [0] with length 0 +goroutine 294 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a348?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003540c0, {{0xc0003c0190, 0x42}, {0xc000684258, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e0e0}, 0xc00014b440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e0e0}, 0xc00014b440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e0e0}, 0xc00014b440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e0e0}, 0xc00014b200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2990, {0x7ff6cb90aeb0, 0xc0001802d0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:53 http: panic serving 212.7.203.107:50596: runtime error: index out of range [0] with length 0 +goroutine 295 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4150?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354180, {{0xc00010e440, 0x3e}, {0xc000108060, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e1c0}, 0xc00014bc20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e1c0}, 0xc00014bc20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e1c0}, 0xc00014bc20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e1c0}, 0xc00014b9e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2ab0, {0x7ff6cb90aeb0, 0xc0001804b0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:54 http: panic serving 212.7.203.107:50610: runtime error: index out of range [0] with length 0 +goroutine 281 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006843d8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea180, {{0xc0001c6440, 0x3e}, {0xc00001e4e0, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003061c0}, 0xc0004f1440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003061c0}, 0xc0004f1440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003061c0}, 0xc0004f1440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003061c0}, 0xc0004f1200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e750, {0x7ff6cb90aeb0, 0xc0003d6500}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:54 http: panic serving 212.7.203.107:50622: runtime error: index out of range [0] with length 0 +goroutine 308 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a438?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0005260c0, {{0xc000688600, 0x3e}, {0xc0004520c0, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003fa0e0}, 0xc00065ab40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003fa0e0}, 0xc00065ab40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003fa0e0}, 0xc00065ab40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003fa0e0}, 0xc00065a900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000318cf0, {0x7ff6cb90aeb0, 0xc000158320}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:55 http: panic serving 212.7.203.107:50630: runtime error: index out of range [0] with length 0 +goroutine 298 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a450?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354240, {{0xc00010f100, 0x3e}, {0xc0001080f0, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e2a0}, 0xc0005b4480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e2a0}, 0xc0005b4480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e2a0}, 0xc0005b4480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e2a0}, 0xc0005b4240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2f30, {0x7ff6cb90aeb0, 0xc0001806e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:55 http: panic serving 212.7.203.107:50634: runtime error: index out of range [0] with length 0 +goroutine 299 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006844c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000526180, {{0xc000688700, 0x3e}, {0xc000452d80, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003fa1c0}, 0xc00065b320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003fa1c0}, 0xc00065b320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003fa1c0}, 0xc00065b320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003fa1c0}, 0xc00065b0e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f30e0, {0x7ff6cb90aeb0, 0xc000158500}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:56 http: panic serving 212.7.203.107:50650: runtime error: index out of range [0] with length 0 +goroutine 311 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006844e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae180, {{0xc000022300, 0x3e}, {0xc00036e060, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc0004c0a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc0004c0a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc0004c0a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc0004c07e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000319170, {0x7ff6cb90aeb0, 0xc00011e230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:56 http: panic serving 212.7.203.107:50652: runtime error: index out of range [0] with length 0 +goroutine 312 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a468?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae240, {{0xc000022440, 0x3e}, {0xc00036e120, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc0004c1200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc0004c1200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc0004c1200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc0004c0fc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000319290, {0x7ff6cb90aeb0, 0xc00011e410}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:57 http: panic serving 212.7.203.107:33066: runtime error: index out of range [0] with length 0 +goroutine 300 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a480?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354300, {{0xc000432d80, 0x3e}, {0xc000108180, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e380}, 0xc0005b4c60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e380}, 0xc0005b4c60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e380}, 0xc0005b4c60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e380}, 0xc0005b4a20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f3200, {0x7ff6cb90aeb0, 0xc000180960}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:58 http: panic serving 212.7.203.107:33070: runtime error: index out of range [0] with length 0 +goroutine 301 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a660?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003543c0, {{0xc000433240, 0x3e}, {0xc000108210, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e460}, 0xc0005b5440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e460}, 0xc0005b5440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e460}, 0xc0005b5440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e460}, 0xc0005b5200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f3290, {0x7ff6cb90aeb0, 0xc000180b40}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:20:58 http: panic serving 212.7.203.107:33072: runtime error: index out of range [0] with length 0 +goroutine 302 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c708?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354480, {{0xc0004334c0, 0x3e}, {0xc0001082a0, 0x27}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e620}, 0xc0005b5c20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e620}, 0xc0005b5c20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e620}, 0xc0005b5c20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e620}, 0xc0005b59e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f33b0, {0x7ff6cb90aeb0, 0xc000180d20}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:02 http: panic serving 212.7.203.107:33082: runtime error: index out of range [0] with length 0 +goroutine 303 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006847c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae300, {{0xc00036e1e0, 0x2c}, {0xc00001c7b0, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d0380}, 0xc0004c1b00) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d0380}, 0xc0004c1b00) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d0380}, 0xc0004c1b00) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d0380}, 0xc0004c18c0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f3440, {0x7ff6cb90aeb0, 0xc00011e5f0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:02 http: panic serving 212.7.203.107:33094: runtime error: index out of range [0] with length 0 +goroutine 319 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006847e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea240, {{0xc00001e570, 0x2c}, {0xc00010a7f8, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003062a0}, 0xc0004f1c20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003062a0}, 0xc0004f1c20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003062a0}, 0xc0004f1c20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003062a0}, 0xc0004f19e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000319dd0, {0x7ff6cb90aeb0, 0xc0003d6910}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:03 http: panic serving 212.7.203.107:33098: runtime error: index out of range [0] with length 0 +goroutine 320 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006847f8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea300, {{0xc00001e600, 0x2c}, {0xc00010ac18, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306380}, 0xc000512480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306380}, 0xc000512480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306380}, 0xc000512480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306380}, 0xc000512240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000319ef0, {0x7ff6cb90aeb0, 0xc0003d6b40}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:03 http: panic serving 212.7.203.107:33110: runtime error: index out of range [0] with length 0 +goroutine 321 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684810?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae3c0, {{0xc00036e300, 0x2c}, {0xc00001c9c0, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d0460}, 0xc0005be360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d0460}, 0xc0005be360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d0460}, 0xc0005be360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d0460}, 0xc0005be120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000644090, {0x7ff6cb90aeb0, 0xc00011e7d0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:04 http: panic serving 212.7.203.107:33114: runtime error: index out of range [0] with length 0 +goroutine 338 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010aea0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000526240, {{0xc000452e40, 0x2c}, {0xc0001b4378, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003fa2a0}, 0xc00065bb00) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003fa2a0}, 0xc00065bb00) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003fa2a0}, 0xc00065bb00) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003fa2a0}, 0xc00065b8c0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0006441b0, {0x7ff6cb90aeb0, 0xc0001586e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:04 http: panic serving 212.7.203.107:33138: runtime error: index out of range [0] with length 0 +goroutine 341 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684900?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000526300, {{0xc000452f30, 0x2c}, {0xc0001b4480, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003fa380}, 0xc00065c360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003fa380}, 0xc00065c360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003fa380}, 0xc00065c360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003fa380}, 0xc00065c120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000644510, {0x7ff6cb90aeb0, 0xc0001588c0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:04 http: panic serving 212.7.203.107:33124: runtime error: index out of range [0] with length 0 +goroutine 324 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4528?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354540, {{0xc000380040, 0x3d}, {0xc0006848a0, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e700}, 0xc00052c480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e700}, 0xc00052c480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e700}, 0xc00052c480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e700}, 0xc00052c240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f3c20, {0x7ff6cb90aeb0, 0xc0001811d0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:05 http: panic serving 212.7.203.107:33144: runtime error: index out of range [0] with length 0 +goroutine 354 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684960?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea3c0, {{0xc00001e6c0, 0x2c}, {0xc00010af90, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306460}, 0xc000512c60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306460}, 0xc000512c60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306460}, 0xc000512c60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306460}, 0xc000512a20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028f5f0, {0x7ff6cb90aeb0, 0xc0003d6e60}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:05 http: panic serving 212.7.203.107:33150: runtime error: index out of range [0] with length 0 +goroutine 342 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684978?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0005263c0, {{0xc000688a40, 0x3d}, {0xc0001b45a0, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003fa460}, 0xc00065cb40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003fa460}, 0xc00065cb40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003fa460}, 0xc00065cb40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003fa460}, 0xc00065c900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000644750, {0x7ff6cb90aeb0, 0xc000158af0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:05 http: panic serving 212.7.203.107:33158: runtime error: index out of range [0] with length 0 +goroutine 327 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4648?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000354600, {{0xc000108360, 0x2c}, {0xc0006849f0, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc00035e7e0}, 0xc00052cc60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc00035e7e0}, 0xc00052cc60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc00035e7e0}, 0xc00052cc60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc00035e7e0}, 0xc00052ca20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00054c090, {0x7ff6cb90aeb0, 0xc000181450}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:05 http: panic serving 212.7.203.107:33168: runtime error: index out of range [0] with length 0 +goroutine 357 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684a98?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea480, {{0xc0001c6f40, 0x3d}, {0xc00010b608, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306540}, 0xc000513440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306540}, 0xc000513440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306540}, 0xc000513440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306540}, 0xc000513200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028fa70, {0x7ff6cb90aeb0, 0xc0003d7090}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:06 http: panic serving 212.7.203.107:33172: runtime error: index out of range [0] with length 0 +goroutine 345 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4660?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004ea540, {{0xc00001e7b0, 0x2c}, {0xc00010b818, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306620}, 0xc000513c20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306620}, 0xc000513c20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306620}, 0xc000513c20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306620}, 0xc0005139e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000644c60, {0x7ff6cb90aeb0, 0xc0003d7270}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:06 http: panic serving 212.7.203.107:33188: runtime error: index out of range [0] with length 0 +goroutine 358 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684ab0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae480, {{0xc000022700, 0x3d}, {0xc00001caf8, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d0540}, 0xc0005beb40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d0540}, 0xc0005beb40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d0540}, 0xc0005beb40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d0540}, 0xc0005be900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028fb90, {0x7ff6cb90aeb0, 0xc00011e9b0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:06 http: panic serving 212.7.203.107:33202: runtime error: index out of range [0] with length 0 +goroutine 99 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4000?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae0c0, {{0xc000108000, 0x2c}, {0xc000684120, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc0005be240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc0005be240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc0005be240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d00e0}, 0xc0005be000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e000, {0x7ff6cb90aeb0, 0xc000180050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:06 http: panic serving 212.7.203.107:33210: runtime error: index out of range [0] with length 0 +goroutine 359 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006841c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000342000, {{0xc000380200, 0x3d}, {0xc00001c228, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000306000}, 0xc00014aa20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000306000}, 0xc00014aa20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000306000}, 0xc00014aa20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000306000}, 0xc00014a7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2090, {0x7ff6cb90aeb0, 0xc00011e050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:07 http: panic serving 212.7.203.107:46678: runtime error: index out of range [0] with length 0 +goroutine 348 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006841e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00073c000, {{0xc000022300, 0x3d}, {0xc0001b4090, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000734000}, 0xc0004f0240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000734000}, 0xc0004f0240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000734000}, 0xc0004f0240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000734000}, 0xc0004f0000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0009063f0, {0x7ff6cb90aeb0, 0xc0001580a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:07 http: panic serving 212.7.203.107:46680: runtime error: index out of range [0] with length 0 +goroutine 349 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c408?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00073c0c0, {{0xc0000224c0, 0x3d}, {0xc0001b41b0, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0007340e0}, 0xc0004f0b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0007340e0}, 0xc0004f0b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0007340e0}, 0xc0004f0b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0007340e0}, 0xc0004f07e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000906510, {0x7ff6cb90aeb0, 0xc000158280}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:08 http: panic serving 212.7.203.107:46696: runtime error: index out of range [0] with length 0 +goroutine 102 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c450?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae180, {{0xc0006884c0, 0x3d}, {0xc000684258, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc0005beb40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc0005beb40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc0005beb40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d01c0}, 0xc0005be7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e5a0, {0x7ff6cb90aeb0, 0xc0001802d0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:08 http: panic serving 212.7.203.107:46706: runtime error: index out of range [0] with length 0 +goroutine 103 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4258?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000512000, {{0xc0001c6000, 0x3d}, {0xc00010a150, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0004ec000}, 0xc00065a360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0004ec000}, 0xc00065a360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0004ec000}, 0xc00065a360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0004ec000}, 0xc00065a120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e6c0, {0x7ff6cb90aeb0, 0xc0003d6050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:09 http: panic serving 212.7.203.107:46716: runtime error: index out of range [0] with length 0 +goroutine 364 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c480?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0005120c0, {{0xc0001c6240, 0x3d}, {0xc00010a288, 0x18}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0004ec0e0}, 0xc00065ab40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0004ec0e0}, 0xc00065ab40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0004ec0e0}, 0xc00065ab40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0004ec0e0}, 0xc00065a900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004f2a20, {0x7ff6cb90aeb0, 0xc0003d6230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:16 http: panic serving 212.7.203.107:46722: runtime error: index out of range [0] with length 0 +goroutine 104 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c4c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000ae240, {{0xc000688680, 0x32}, {0xc000450e80, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc0005bf320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc0005bf320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc0005bf320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0000d02a0}, 0xc0005bf0e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e7e0, {0x7ff6cb90aeb0, 0xc0001804b0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:17 http: panic serving 212.7.203.107:47960: runtime error: index out of range [0] with length 0 +goroutine 105 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00001c4e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00073c180, {{0xc000022700, 0x32}, {0xc0004353b0, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0007341c0}, 0xc0004f1440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0007341c0}, 0xc0004f1440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0007341c0}, 0xc0004f1440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0007341c0}, 0xc0004f1200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028e900, {0x7ff6cb90aeb0, 0xc0001584b0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:17 http: panic serving 212.7.203.107:47962: runtime error: index out of range [0] with length 0 +goroutine 106 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006843d8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00073c240, {{0xc0000228c0, 0x32}, {0xc000435e40, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0007342a0}, 0xc0004f1c20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0007342a0}, 0xc0004f1c20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0007342a0}, 0xc0004f1c20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0007342a0}, 0xc0004f19e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00028ea20, {0x7ff6cb90aeb0, 0xc000158690}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:18 http: panic serving 212.7.203.107:47976: runtime error: index out of range [0] with length 0 +goroutine 386 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0001b4420?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003420c0, {{0xc000381040, 0x32}, {0xc000107a60, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003060e0}, 0xc00014b440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003060e0}, 0xc00014b440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003060e0}, 0xc00014b440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003060e0}, 0xc00014b200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000906d80, {0x7ff6cb90aeb0, 0xc00011e3c0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:18 http: panic serving 212.7.203.107:47984: runtime error: index out of range [0] with length 0 +goroutine 387 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc0006843f0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00073c300, {{0xc000022ac0, 0x32}, {0xc000246800, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000734380}, 0xc00045a480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000734380}, 0xc00045a480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000734380}, 0xc00045a480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000734380}, 0xc00045a240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000906e10, {0x7ff6cb90aeb0, 0xc000158870}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:19 http: panic serving 212.7.203.107:47986: runtime error: index out of range [0] with length 0 +goroutine 388 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684408?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00073c3c0, {{0xc000022d00, 0x32}, {0xc000247420, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000734460}, 0xc00045ac60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000734460}, 0xc00045ac60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000734460}, 0xc00045ac60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000734460}, 0xc00045aa20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000906f30, {0x7ff6cb90aeb0, 0xc000158a50}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:20 http: panic serving 212.7.203.107:47988: runtime error: index out of range [0] with length 0 +goroutine 389 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684420?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00073c480, {{0xc000022e40, 0x32}, {0xc0003cec50, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000734540}, 0xc00045b440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000734540}, 0xc00045b440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000734540}, 0xc00045b440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000734540}, 0xc00045b200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000907050, {0x7ff6cb90aeb0, 0xc000158c30}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:20 http: panic serving 212.7.203.107:48002: runtime error: index out of range [0] with length 0 +goroutine 390 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc00010a330?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00073c540, {{0xc000022fc0, 0x32}, {0xc0003cf660, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc000734620}, 0xc00045bc20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc000734620}, 0xc00045bc20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc000734620}, 0xc00045bc20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc000734620}, 0xc00045b9e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000907170, {0x7ff6cb90aeb0, 0xc000158e10}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:21 http: panic serving 212.7.203.107:48008: runtime error: index out of range [0] with length 0 +goroutine 376 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684438?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000342180, {{0xc000381180, 0x32}, {0xc00022e1f0, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003061c0}, 0xc00014bc20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003061c0}, 0xc00014bc20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003061c0}, 0xc00014bc20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003061c0}, 0xc00014b9e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0004826c0, {0x7ff6cb90aeb0, 0xc00011e5a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:21 http: panic serving 212.7.203.107:48022: runtime error: index out of range [0] with length 0 +goroutine 391 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff6cb8742a0?, 0xc000684450?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000342240, {{0xc0003812c0, 0x32}, {0xc00022ebd0, 0xd}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003d1cb0, {0x7ff6cb90a830, 0xc0003062a0}, 0xc00035e480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc00026b440, {0x7ff6cb90a830, 0xc0003062a0}, 0xc00035e480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000ae000, {0x7ff6cb90a830, 0xc0003062a0}, 0xc00035e480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc0002a2000}, {0x7ff6cb90a830, 0xc0003062a0}, 0xc00035e240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0009073b0, {0x7ff6cb90aeb0, 0xc00011e780}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:33 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:21:33 Opening SQLite database +[GoRacerr]2024/08/31 14:21:33 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:21:33 http: panic serving 212.7.203.107:44270: runtime error: index out of range [0] with length 0 +goroutine 6 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00012c660?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00041e000, {{0xc00001e390, 0x2a}, {0xc0002b4000, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0001481c0}, 0xc00039e480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0001481c0}, 0xc00039e480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0001481c0}, 0xc00039e480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0001481c0}, 0xc00039e000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158360, {0x7ff79c899e10, 0xc000180050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:34 http: panic serving 212.7.203.107:44272: runtime error: index out of range [0] with length 0 +goroutine 7 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00012c1e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000960c0, {{0xc000700660, 0x2a}, {0xc000286680, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148000}, 0xc00012ea20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148000}, 0xc00012ea20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148000}, 0xc00012ea20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148000}, 0xc00012e7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158000, {0x7ff79c899e10, 0xc0003e2000}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:34 http: panic serving 212.7.203.107:44278: runtime error: index out of range [0] with length 0 +goroutine 29 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001cd50?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000408000, {{0xc0001ca030, 0x2a}, {0xc00033a4c0, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce000}, 0xc00039e360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce000}, 0xc00039e360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce000}, 0xc00039e360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce000}, 0xc00039e120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00069a090, {0x7ff79c899e10, 0xc000802050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:35 http: panic serving 212.7.203.107:44288: runtime error: index out of range [0] with length 0 +goroutine 42 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001cd68?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00049c000, {{0xc00001e390, 0x2a}, {0xc000358570, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002de000}, 0xc0002a4240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002de000}, 0xc0002a4240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002de000}, 0xc0002a4240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002de000}, 0xc0002a4000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c2510, {0x7ff79c899e10, 0xc0001801e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:35 http: panic serving 212.7.203.107:44308: runtime error: index out of range [0] with length 0 +goroutine 43 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000410c78?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004080c0, {{0xc0001ca270, 0x2a}, {0xc00033b260, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce0e0}, 0xc00039ec60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce0e0}, 0xc00039ec60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce0e0}, 0xc00039ec60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce0e0}, 0xc00039e900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c26c0, {0x7ff79c899e10, 0xc000802230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:36 http: panic serving 212.7.203.107:44318: runtime error: index out of range [0] with length 0 +goroutine 10 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6618?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096180, {{0xc000700780, 0x2a}, {0xc0002874c0, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0001480e0}, 0xc00012f560) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0001480e0}, 0xc00012f560) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0001480e0}, 0xc00012f560) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0001480e0}, 0xc00012f200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158510, {0x7ff79c899e10, 0xc0003e2280}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:36 http: panic serving 212.7.203.107:44302: runtime error: index out of range [0] with length 0 +goroutine 70 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000410c90?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096240, {{0xc000700810, 0x2f}, {0xc00001d308, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0001482a0}, 0xc00012fd40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0001482a0}, 0xc00012fd40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0001482a0}, 0xc00012fd40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0001482a0}, 0xc00012fb00) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fc630, {0x7ff79c899e10, 0xc0003e2460}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:36 http: panic serving 212.7.203.107:44328: runtime error: index out of range [0] with length 0 +goroutine 11 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000410cd8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba000, {{0xc00044c030, 0x2a}, {0xc000307440, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b4000}, 0xc0006ae240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b4000}, 0xc0006ae240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b4000}, 0xc0006ae240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b4000}, 0xc0006ae000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158630, {0x7ff79c899e10, 0xc0001400f0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:37 http: panic serving 212.7.203.107:38444: runtime error: index out of range [0] with length 0 +goroutine 71 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6630?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00049c0c0, {{0xc00001e540, 0x2f}, {0xc0004113e0, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002de0e0}, 0xc0002a4a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002de0e0}, 0xc0002a4a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002de0e0}, 0xc0002a4a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002de0e0}, 0xc0002a47e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fc6c0, {0x7ff79c899e10, 0xc000180460}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:37 http: panic serving 212.7.203.107:38460: runtime error: index out of range [0] with length 0 +goroutine 72 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d66c0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00049c180, {{0xc00001e900, 0x2a}, {0xc000359b90, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002de1c0}, 0xc0002a5200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002de1c0}, 0xc0002a5200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002de1c0}, 0xc0002a5200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002de1c0}, 0xc0002a4fc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fc7e0, {0x7ff79c899e10, 0xc000180640}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:37 http: panic serving 212.7.203.107:38466: runtime error: index out of range [0] with length 0 +goroutine 73 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000411620?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba0c0, {{0xc00044c150, 0x2f}, {0xc00012c798, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b40e0}, 0xc0006aea20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b40e0}, 0xc0006aea20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b40e0}, 0xc0006aea20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b40e0}, 0xc0006ae7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fc900, {0x7ff79c899e10, 0xc0001402d0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:37 http: panic serving 212.7.203.107:38480: runtime error: index out of range [0] with length 0 +goroutine 16 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000411638?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000408180, {{0xc0001ca300, 0x2a}, {0xc00033bfe0, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce1c0}, 0xc00039f680) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce1c0}, 0xc00039f680) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce1c0}, 0xc00039f680) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce1c0}, 0xc00039f440) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158d80, {0x7ff79c899e10, 0xc000802550}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:38 http: panic serving 212.7.203.107:38494: runtime error: index out of range [0] with length 0 +goroutine 98 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00012ca08?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00049c240, {{0xc00001f320, 0x2f}, {0xc000411710, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002de2a0}, 0xc0002a59e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002de2a0}, 0xc0002a59e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002de2a0}, 0xc0002a59e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002de2a0}, 0xc0002a57a0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c2f30, {0x7ff79c899e10, 0xc0001808c0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:38 http: panic serving 212.7.203.107:38500: runtime error: index out of range [0] with length 0 +goroutine 114 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000411878?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000963c0, {{0xc000700900, 0x2a}, {0xc00031d2b0, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148460}, 0xc00053cc60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148460}, 0xc00053cc60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148460}, 0xc00053cc60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148460}, 0xc00053ca20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00069a750, {0x7ff79c899e10, 0xc0003e27d0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:38 http: panic serving 212.7.203.107:38488: runtime error: index out of range [0] with length 0 +goroutine 82 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d920?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096300, {{0xc0007008a0, 0x26}, {0xc00031ccb0, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148380}, 0xc00053c5a0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148380}, 0xc00053c5a0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148380}, 0xc00053c5a0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148380}, 0xc00053c360) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158ea0, {0x7ff79c899e10, 0xc0003e2640}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:38 http: panic serving 212.7.203.107:38516: runtime error: index out of range [0] with length 0 +goroutine 101 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6cd8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba180, {{0xc00044c210, 0x2f}, {0xc00012caf8, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b41c0}, 0xc0006af200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b41c0}, 0xc0006af200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b41c0}, 0xc0006af200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b41c0}, 0xc0006aefc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c3320, {0x7ff79c899e10, 0xc000140500}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:38 http: panic serving 212.7.203.107:38526: runtime error: index out of range [0] with length 0 +goroutine 76 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6cf0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba240, {{0xc00044c2d0, 0x26}, {0xc000438d30, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b42a0}, 0xc0006af9e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b42a0}, 0xc0006af9e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b42a0}, 0xc0006af9e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b42a0}, 0xc0006af7a0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fccf0, {0x7ff79c899e10, 0xc0001406e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:39 http: panic serving 212.7.203.107:38538: runtime error: index out of range [0] with length 0 +goroutine 77 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6d08?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00049c300, {{0xc00001f440, 0x2f}, {0xc000411950, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002de380}, 0xc0004d0360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002de380}, 0xc0004d0360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002de380}, 0xc0004d0360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002de380}, 0xc0004d0120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fce10, {0x7ff79c899e10, 0xc000180b40}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:39 http: panic serving 212.7.203.107:38548: runtime error: index out of range [0] with length 0 +goroutine 78 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d938?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00049c3c0, {{0xc00001f620, 0x26}, {0xc00047d5c0, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002de460}, 0xc0004d0b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002de460}, 0xc0004d0b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002de460}, 0xc0004d0b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002de460}, 0xc0004d0900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fcf30, {0x7ff79c899e10, 0xc000180dc0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:39 http: panic serving 212.7.203.107:38556: runtime error: index out of range [0] with length 0 +goroutine 102 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d950?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba300, {{0xc00044c390, 0x2f}, {0xc00012d308, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b4380}, 0xc0006f6240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b4380}, 0xc0006f6240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b4380}, 0xc0006f6240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b4380}, 0xc0006f6000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c3440, {0x7ff79c899e10, 0xc0001408c0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:39 http: panic serving 212.7.203.107:38566: runtime error: index out of range [0] with length 0 +goroutine 103 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d968?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000408240, {{0xc0001ca3c0, 0x26}, {0xc000460840, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce2a0}, 0xc00039fe60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce2a0}, 0xc00039fe60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce2a0}, 0xc00039fe60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce2a0}, 0xc00039fc20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c3560, {0x7ff79c899e10, 0xc000802820}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:40 http: panic serving 212.7.203.107:38568: runtime error: index out of range [0] with length 0 +goroutine 104 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d980?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba3c0, {{0xc00044c420, 0x2f}, {0xc00012d428, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b4460}, 0xc0006f6a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b4460}, 0xc0006f6a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b4460}, 0xc0006f6a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b4460}, 0xc0006f67e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c3680, {0x7ff79c899e10, 0xc000140aa0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:40 http: panic serving 212.7.203.107:38584: runtime error: index out of range [0] with length 0 +goroutine 105 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6f00?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba480, {{0xc00044c4b0, 0x26}, {0xc00000a030, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b4540}, 0xc0006f7200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b4540}, 0xc0006f7200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b4540}, 0xc0006f7200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b4540}, 0xc0006f6fc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c37a0, {0x7ff79c899e10, 0xc000140c80}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:40 http: panic serving 212.7.203.107:38590: runtime error: index out of range [0] with length 0 +goroutine 81 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6f18?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096480, {{0xc000700990, 0x2f}, {0xc00001d9f8, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148540}, 0xc00053d440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148540}, 0xc00053d440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148540}, 0xc00053d440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148540}, 0xc00053d200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fd320, {0x7ff79c899e10, 0xc0003e2b90}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:41 http: panic serving 212.7.203.107:38594: runtime error: index out of range [0] with length 0 +goroutine 130 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001da88?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba540, {{0xc00044c570, 0x26}, {0xc00000a760, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b4620}, 0xc0006f79e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b4620}, 0xc0006f79e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b4620}, 0xc0006f79e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b4620}, 0xc0006f77a0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fd440, {0x7ff79c899e10, 0xc000140e60}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:41 http: panic serving 212.7.203.107:38610: runtime error: index out of range [0] with length 0 +goroutine 108 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001daa0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000408300, {{0xc0001ca480, 0x2f}, {0xc0002d7068, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce380}, 0xc0005626c0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce380}, 0xc0005626c0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce380}, 0xc0005626c0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce380}, 0xc000562480) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c3b90, {0x7ff79c899e10, 0xc000802aa0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:41 http: panic serving 212.7.203.107:38620: runtime error: index out of range [0] with length 0 +goroutine 111 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d76c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba600, {{0xc00044c780, 0x26}, {0xc00000afa0, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b4700}, 0xc0007d2240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b4700}, 0xc0007d2240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b4700}, 0xc0007d2240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b4700}, 0xc0007d2000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c3ef0, {0x7ff79c899e10, 0xc000141040}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:41 http: panic serving 212.7.203.107:38618: runtime error: index out of range [0] with length 0 +goroutine 127 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001db60?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096540, {{0xc000700a50, 0x2d}, {0xc00001db18, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148620}, 0xc00053dc20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148620}, 0xc00053dc20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148620}, 0xc00053dc20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148620}, 0xc00053d9e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc00069b8c0, {0x7ff79c899e10, 0xc0003e2f00}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:42 http: panic serving 212.7.203.107:38634: runtime error: index out of range [0] with length 0 +goroutine 112 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d7770?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006ba6c0, {{0xc00044c810, 0x26}, {0xc00000b4d0, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0006b47e0}, 0xc0007d2a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0006b47e0}, 0xc0007d2a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0006b47e0}, 0xc0007d2a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0006b47e0}, 0xc0007d27e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000506090, {0x7ff79c899e10, 0xc000141220}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:42 http: panic serving 212.7.203.107:38644: runtime error: index out of range [0] with length 0 +goroutine 133 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0007e40f0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096600, {{0xc000700ab0, 0x2d}, {0xc00001dbd8, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148700}, 0xc00077e360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148700}, 0xc00077e360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148700}, 0xc00077e360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148700}, 0xc00077e120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fd950, {0x7ff79c899e10, 0xc0003e30e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:42 http: panic serving 212.7.203.107:38654: runtime error: index out of range [0] with length 0 +goroutine 148 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000411ab8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004083c0, {{0xc0001ca570, 0x26}, {0xc000461de0, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce460}, 0xc000562fc0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce460}, 0xc000562fc0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce460}, 0xc000562fc0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce460}, 0xc000562d80) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f2000, {0x7ff79c899e10, 0xc000802d70}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:42 http: panic serving 212.7.203.107:38668: runtime error: index out of range [0] with length 0 +goroutine 89 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001c138?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000960c0, {{0xc00001e390, 0x2d}, {0xc000410420, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148000}, 0xc000562240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148000}, 0xc000562240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148000}, 0xc000562240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148000}, 0xc000562000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158000, {0x7ff79c899e10, 0xc000180050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:43 http: panic serving 212.7.203.107:38676: runtime error: index out of range [0] with length 0 +goroutine 90 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00012c1e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003fe000, {{0xc00044c000, 0x26}, {0xc00019e340, 0xe}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce000}, 0xc00012ea20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce000}, 0xc00012ea20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce000}, 0xc00012ea20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce000}, 0xc00012e7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001581b0, {0x7ff79c899e10, 0xc0003e2000}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:43 http: panic serving 212.7.203.107:38690: runtime error: index out of range [0] with length 0 +goroutine 91 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6450?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0000, {{0xc000700660, 0x2d}, {0xc00012c378, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000480000}, 0xc00039e240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000480000}, 0xc00039e240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000480000}, 0xc00039e240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000480000}, 0xc00039e000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158240, {0x7ff79c899e10, 0xc000802000}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:43 http: panic serving 212.7.203.107:38694: runtime error: index out of range [0] with length 0 +goroutine 138 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001c198?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c00c0, {{0xc0007006f0, 0x2d}, {0xc00012c780, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0004800e0}, 0xc00039eb40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0004800e0}, 0xc00039eb40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0004800e0}, 0xc00039eb40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0004800e0}, 0xc00039e7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fc360, {0x7ff79c899e10, 0xc0008021e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:44 http: panic serving 212.7.203.107:38698: runtime error: index out of range [0] with length 0 +goroutine 92 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00012c9d8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003fe0c0, {{0xc00044c120, 0x2d}, {0xc0002d6540, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce0e0}, 0xc00012f560) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce0e0}, 0xc00012f560) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce0e0}, 0xc00012f560) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce0e0}, 0xc00012f200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158360, {0x7ff79c899e10, 0xc0003e2230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:44 http: panic serving 212.7.203.107:38714: runtime error: index out of range [0] with length 0 +goroutine 167 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6630?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa000, {{0xc0001ca000, 0x2d}, {0xc00001cc48, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d0000}, 0xc000282240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d0000}, 0xc000282240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d0000}, 0xc000282240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d0000}, 0xc000282000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c2870, {0x7ff79c899e10, 0xc000140190}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:45 http: panic serving 212.7.203.107:38746: runtime error: index out of range [0] with length 0 +goroutine 97 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001cfd8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0240, {{0xc0007007b0, 0x2d}, {0xc00012cbb8, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0004802a0}, 0xc00039fc20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0004802a0}, 0xc00039fc20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0004802a0}, 0xc00039fc20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0004802a0}, 0xc00039f9e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158900, {0x7ff79c899e10, 0xc0008025a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:45 Found TMDB Information for [BJ_Blunt-Alive-WEB-2004-RAGEMP3] with Title [Alive] [ID: ᛔ] [Year: 2004] [Original Title: ALIVE] [Original Language: ja] [Release Date: 2003-06-21] +[GoRacerr]2024/08/31 14:21:45 http: panic serving 212.7.203.107:38742: runtime error: index out of range [0] with length 0 +goroutine 170 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00012d398?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa0c0, {{0xc0001ca180, 0x2a}, {0xc00000aa00, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d00e0}, 0xc000282a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d00e0}, 0xc000282a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d00e0}, 0xc000282a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d00e0}, 0xc0002827e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c2b40, {0x7ff79c899e10, 0xc000140370}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:45 http: panic serving 212.7.203.107:38728: runtime error: index out of range [0] with length 0 +goroutine 141 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d320?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0300, {{0xc000700960, 0x2d}, {0xc00012d410, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000480380}, 0xc0004ee480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000480380}, 0xc0004ee480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000480380}, 0xc0004ee480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000480380}, 0xc0004ee240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fc750, {0x7ff79c899e10, 0xc000802410}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:46 http: panic serving 212.7.203.107:38758: runtime error: index out of range [0] with length 0 +goroutine 178 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00012d698?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003fe180, {{0xc00044c1e0, 0x2a}, {0xc00019ee10, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce1c0}, 0xc00012fd40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce1c0}, 0xc00012fd40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce1c0}, 0xc00012fd40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce1c0}, 0xc00012fb00) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158bd0, {0x7ff79c899e10, 0xc0003e2460}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:46 http: panic serving 212.7.203.107:38768: runtime error: index out of range [0] with length 0 +goroutine 175 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00012d6e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa180, {{0xc0001ca2d0, 0x2d}, {0xc00001d7a0, 0x12}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d01c0}, 0xc000283320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d01c0}, 0xc000283320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d01c0}, 0xc000283320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d01c0}, 0xc0002830e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c3290, {0x7ff79c899e10, 0xc000140690}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:46 http: panic serving 212.7.203.107:38774: runtime error: index out of range [0] with length 0 +goroutine 176 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00012d848?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096180, {{0xc00001e510, 0x2a}, {0xc00047d7b0, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0001480e0}, 0xc000562a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0001480e0}, 0xc000562a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0001480e0}, 0xc000562a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0001480e0}, 0xc0005627e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0003c33b0, {0x7ff79c899e10, 0xc000180230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:46 http: panic serving 212.7.203.107:38788: runtime error: index out of range [0] with length 0 +goroutine 144 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0004113c8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c03c0, {{0xc0007009f0, 0x2c}, {0xc00012d920, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000480460}, 0xc0004eec60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000480460}, 0xc0004eec60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000480460}, 0xc0004eec60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000480460}, 0xc0004eea20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fcab0, {0x7ff79c899e10, 0xc000802a00}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:47 http: panic serving 212.7.203.107:33618: runtime error: index out of range [0] with length 0 +goroutine 153 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6a80?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa240, {{0xc0001ca390, 0x2a}, {0xc000358170, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d02a0}, 0xc000283b00) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d02a0}, 0xc000283b00) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d02a0}, 0xc000283b00) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d02a0}, 0xc0002838c0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f26c0, {0x7ff79c899e10, 0xc000140870}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:47 http: panic serving 212.7.203.107:33634: runtime error: index out of range [0] with length 0 +goroutine 145 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6cd8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096240, {{0xc00001e8d0, 0x2c}, {0xc0004114a0, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0001481c0}, 0xc000563320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0001481c0}, 0xc000563320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0001481c0}, 0xc000563320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0001481c0}, 0xc0005630e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fcbd0, {0x7ff79c899e10, 0xc000180460}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:47 http: panic serving 212.7.203.107:33650: runtime error: index out of range [0] with length 0 +goroutine 210 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000411590?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa300, {{0xc0001ca450, 0x2a}, {0xc000358ed0, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d0380}, 0xc00064e360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d0380}, 0xc00064e360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d0380}, 0xc00064e360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d0380}, 0xc00064e120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fccf0, {0x7ff79c899e10, 0xc000140a50}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:47 http: panic serving 212.7.203.107:33654: runtime error: index out of range [0] with length 0 +goroutine 156 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6cf0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa3c0, {{0xc0001ca4e0, 0x2c}, {0xc00001da58, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d0460}, 0xc00064eb40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d0460}, 0xc00064eb40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d0460}, 0xc00064eb40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d0460}, 0xc00064e900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f2ab0, {0x7ff79c899e10, 0xc000140c30}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:48 http: panic serving 212.7.203.107:33666: runtime error: index out of range [0] with length 0 +goroutine 211 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6d08?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa480, {{0xc0001ca5a0, 0x2a}, {0xc00033a5e0, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d0540}, 0xc00064f320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d0540}, 0xc00064f320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d0540}, 0xc00064f320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d0540}, 0xc00064f0e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fce10, {0x7ff79c899e10, 0xc000140e10}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:48 http: panic serving 212.7.203.107:33682: runtime error: index out of range [0] with length 0 +goroutine 212 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001dba8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096300, {{0xc00001f2f0, 0x2c}, {0xc000411638, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0001482a0}, 0xc000563b00) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0001482a0}, 0xc000563b00) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0001482a0}, 0xc000563b00) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0001482a0}, 0xc0005638c0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fcf30, {0x7ff79c899e10, 0xc000180690}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:48 http: panic serving 212.7.203.107:33690: runtime error: index out of range [0] with length 0 +goroutine 189 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6d20?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000963c0, {{0xc00001f380, 0x2a}, {0xc0002ee710, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148380}, 0xc0006be360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148380}, 0xc0006be360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148380}, 0xc0006be360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148380}, 0xc0006be120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000159b00, {0x7ff79c899e10, 0xc000180870}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:49 http: panic serving 212.7.203.107:33706: runtime error: index out of range [0] with length 0 +goroutine 213 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6d80?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0480, {{0xc000700ab0, 0x2c}, {0xc00012dd28, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000480540}, 0xc0004ef440) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000480540}, 0xc0004ef440) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000480540}, 0xc0004ef440) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000480540}, 0xc0004ef200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fd050, {0x7ff79c899e10, 0xc000802be0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:49 Prerace *** Ancient.Aliens.S20E18.1080p.WEB.h264-EDITH *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:21:49 http: panic serving 212.7.203.107:33720: runtime error: index out of range [0] with length 0 +goroutine 192 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001dc38?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0540, {{0xc000700b40, 0x2a}, {0xc000287390, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000480620}, 0xc0004efc20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000480620}, 0xc0004efc20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000480620}, 0xc0004efc20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000480620}, 0xc0004ef9e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000159e60, {0x7ff79c899e10, 0xc000802f50}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:49 http: panic serving 212.7.203.107:33736: runtime error: index out of range [0] with length 0 +goroutine 193 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6d98?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0600, {{0xc000700bd0, 0x2c}, {0xc0006f6120, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000480700}, 0xc0006f8480) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000480700}, 0xc0006f8480) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000480700}, 0xc0006f8480) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000480700}, 0xc0006f8240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000764000, {0x7ff79c899e10, 0xc000803130}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:49 Found TMDB Information for [Ancient.Aliens.S20E18.1080p.WEB.h264-EDITH] with Title [Ancient Aliens] [ID: 𢉔] [Year: 0] [Original Title: Ancient Aliens Debunked] [Original Language: en] [Release Date: 2012-09-27] +[GoRacerr]2024/08/31 14:21:49 http: panic serving 212.7.203.107:33718: runtime error: index out of range [0] with length 0 +goroutine 214 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0006f61f8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003fe240, {{0xc00044c2d0, 0x2a}, {0xc00019fa50, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce2a0}, 0xc0004526c0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce2a0}, 0xc0004526c0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce2a0}, 0xc0004526c0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce2a0}, 0xc000452480) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fd170, {0x7ff79c899e10, 0xc000141040}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:49 http: panic serving 212.7.203.107:33740: runtime error: index out of range [0] with length 0 +goroutine 201 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0006f6210?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa840, {{0xc0001ca780, 0x2c}, {0xc00001dcf8, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d0a80}, 0xc000766360) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d0a80}, 0xc000766360) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d0a80}, 0xc000766360) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d0a80}, 0xc000766120) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007c6120, {0x7ff79c899e10, 0xc000141270}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:50 http: panic serving 212.7.203.107:33748: runtime error: index out of range [0] with length 0 +goroutine 202 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0006f6228?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa900, {{0xc0001ca8a0, 0x2a}, {0xc00031cf30, 0xf}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d0b60}, 0xc000766b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d0b60}, 0xc000766b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d0b60}, 0xc000766b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d0b60}, 0xc000766900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007c6240, {0x7ff79c899e10, 0xc000141450}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:50 http: panic serving 212.7.203.107:33764: runtime error: index out of range [0] with length 0 +goroutine 203 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0006f6240?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003fe300, {{0xc00044c390, 0x2c}, {0xc0002d71e8, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003ce380}, 0xc000452ea0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003ce380}, 0xc000452ea0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003ce380}, 0xc000452ea0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003ce380}, 0xc000452c60) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007c6360, {0x7ff79c899e10, 0xc0003e2b40}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:51 http: panic serving 212.7.203.107:33766: runtime error: index out of range [0] with length 0 +goroutine 204 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d7740?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0002fa9c0, {{0xc0001ca930, 0x2c}, {0xc00001dea8, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0002d0c40}, 0xc000767320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0002d0c40}, 0xc000767320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0002d0c40}, 0xc000767320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0002d0c40}, 0xc0007670e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007c6480, {0x7ff79c899e10, 0xc000141630}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:51 http: panic serving 212.7.203.107:33778: runtime error: index out of range [0] with length 0 +goroutine 219 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001df38?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c06c0, {{0xc000700d50, 0x2c}, {0xc0006f62b8, 0x11}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0004807e0}, 0xc0006f8b40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0004807e0}, 0xc0006f8b40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0004807e0}, 0xc0006f8b40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0004807e0}, 0xc0006f8900) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001fd8c0, {0x7ff79c899e10, 0xc000803400}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:56 http: panic serving 212.7.203.107:33784: runtime error: index out of range [0] with length 0 +goroutine 232 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00087c000?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0780, {{0xc00037f640, 0x34}, {0xc0006f63a8, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0004808c0}, 0xc0006f9320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0004808c0}, 0xc0006f9320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0004808c0}, 0xc0006f9320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0004808c0}, 0xc0006f90e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000764a20, {0x7ff79c899e10, 0xc0008035e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:56 http: panic serving 212.7.203.107:33800: runtime error: index out of range [0] with length 0 +goroutine 242 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001c138?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0000, {{0xc00037e040, 0x34}, {0xc0006f6060, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000480000}, 0xc0006f8240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000480000}, 0xc0006f8240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000480000}, 0xc0006f8240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000480000}, 0xc0006f8000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007c6000, {0x7ff79c899e10, 0xc0001400a0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:57 http: panic serving 212.7.203.107:59246: runtime error: index out of range [0] with length 0 +goroutine 209 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6258?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000960c0, {{0xc0002d2080, 0x34}, {0xc000410420, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148000}, 0xc00039e240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148000}, 0xc00039e240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148000}, 0xc00039e240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148000}, 0xc00039e000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f8120, {0x7ff79c899e10, 0xc000180050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:57 http: panic serving 212.7.203.107:59254: runtime error: index out of range [0] with length 0 +goroutine 243 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d62d0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096180, {{0xc0002d2240, 0x34}, {0xc000410cd8, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0001480e0}, 0xc00039eb40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0001480e0}, 0xc00039eb40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0001480e0}, 0xc00039eb40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0001480e0}, 0xc00039e7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007c6120, {0x7ff79c899e10, 0xc000180230}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:58 http: panic serving 212.7.203.107:59260: runtime error: index out of range [0] with length 0 +goroutine 244 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d6318?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000452000, {{0xc00024c2c0, 0x34}, {0xc00001cc48, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000408000}, 0xc00012ea20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000408000}, 0xc00012ea20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000408000}, 0xc00012ea20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000408000}, 0xc00012e7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007c6240, {0x7ff79c899e10, 0xc000802050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:58 http: panic serving 212.7.203.107:59268: runtime error: index out of range [0] with length 0 +goroutine 245 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001cde0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096240, {{0xc00001e540, 0x2a}, {0xc0002eff70, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0001481c0}, 0xc00039f560) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0001481c0}, 0xc00039f560) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0001481c0}, 0xc00039f560) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0001481c0}, 0xc00039f320) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007c6360, {0x7ff79c899e10, 0xc000180410}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:59 http: panic serving 212.7.203.107:59284: runtime error: index out of range [0] with length 0 +goroutine 276 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000411548?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00050a000, {{0xc000442b40, 0x34}, {0xc0002d6450, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003fe000}, 0xc0003dc240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003fe000}, 0xc0003dc240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003fe000}, 0xc0003dc240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003fe000}, 0xc0003dc000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f8510, {0x7ff79c899e10, 0xc0003e20f0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:59 http: panic serving 212.7.203.107:59296: runtime error: index out of range [0] with length 0 +goroutine 263 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0002d65d0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004520c0, {{0xc000700720, 0x2a}, {0xc00031d010, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0004080e0}, 0xc00012f560) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0004080e0}, 0xc00012f560) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0004080e0}, 0xc00012f560) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0004080e0}, 0xc00012f200) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158990, {0x7ff79c899e10, 0xc000802280}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:59 http: panic serving 212.7.203.107:59306: runtime error: index out of range [0] with length 0 +goroutine 264 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d200?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00050a0c0, {{0xc0004433c0, 0x34}, {0xc0002d66c0, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003fe0e0}, 0xc0003dca20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003fe0e0}, 0xc0003dca20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003fe0e0}, 0xc0003dca20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003fe0e0}, 0xc0003dc7e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158a20, {0x7ff79c899e10, 0xc0003e22d0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:21:59 http: panic serving 212.7.203.107:59318: runtime error: index out of range [0] with length 0 +goroutine 279 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000411590?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00050a180, {{0xc00044c1e0, 0x2a}, {0xc000461500, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003fe1c0}, 0xc0003dd200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003fe1c0}, 0xc0003dd200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003fe1c0}, 0xc0003dd200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003fe1c0}, 0xc0003dcfc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f8900, {0x7ff79c899e10, 0xc0003e24b0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:00 http: panic serving 212.7.203.107:59332: runtime error: index out of range [0] with length 0 +goroutine 265 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d260?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c00c0, {{0xc00037e100, 0x34}, {0xc0006f6150, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0004800e0}, 0xc0006f8a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0004800e0}, 0xc0006f8a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0004800e0}, 0xc0006f8a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0004800e0}, 0xc0006f87e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000158b40, {0x7ff79c899e10, 0xc000140280}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:00 http: panic serving 212.7.203.107:59348: runtime error: index out of range [0] with length 0 +goroutine 280 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0006f61e0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096300, {{0xc00001e900, 0x2a}, {0xc0002068b0, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0001482a0}, 0xc00039fd40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0001482a0}, 0xc00039fd40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0001482a0}, 0xc00039fd40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0001482a0}, 0xc00039fb00) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f8a20, {0x7ff79c899e10, 0xc0001806e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:00 http: panic serving 212.7.203.107:59352: runtime error: index out of range [0] with length 0 +goroutine 237 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0006f61f8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000452180, {{0xc00024cd00, 0x34}, {0xc00001d6e0, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0004081c0}, 0xc00012fd40) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0004081c0}, 0xc00012fd40) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0004081c0}, 0xc00012fd40) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0004081c0}, 0xc00012fb00) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000764630, {0x7ff79c899e10, 0xc000802500}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:00 http: panic serving 212.7.203.107:59368: runtime error: index out of range [0] with length 0 +goroutine 238 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d848?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0000963c0, {{0xc00001f320, 0x2a}, {0xc000207150, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148380}, 0xc0002e25a0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148380}, 0xc0002e25a0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148380}, 0xc0002e25a0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148380}, 0xc0002e2360) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000764750, {0x7ff79c899e10, 0xc0001808c0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:01 http: panic serving 212.7.203.107:59376: runtime error: index out of range [0] with length 0 +goroutine 283 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc000411890?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0180, {{0xc00037e400, 0x34}, {0xc0006f6270, 0x13}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0004801c0}, 0xc0006f9320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0004801c0}, 0xc0006f9320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0004801c0}, 0xc0006f9320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0004801c0}, 0xc0006f8fc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f8e10, {0x7ff79c899e10, 0xc000140500}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:01 http: panic serving 212.7.203.107:59390: runtime error: index out of range [0] with length 0 +goroutine 270 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d860?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0240, {{0xc0001ca2d0, 0x2a}, {0xc000439870, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0004802a0}, 0xc0006f9e60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0004802a0}, 0xc0006f9e60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0004802a0}, 0xc0006f9e60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0004802a0}, 0xc0006f9c20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000159200, {0x7ff79c899e10, 0xc0001406e0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:01 http: panic serving 212.7.203.107:59394: runtime error: index out of range [0] with length 0 +goroutine 284 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0006f6480?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000096480, {{0xc00001f410, 0x2a}, {0xc000207b70, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000148460}, 0xc0002e2d80) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000148460}, 0xc0002e2d80) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000148460}, 0xc0002e2d80) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000148460}, 0xc0002e2b40) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f8f30, {0x7ff79c899e10, 0xc000180af0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:02 http: panic serving 212.7.203.107:59404: runtime error: index out of range [0] with length 0 +goroutine 291 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc0006f6498?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00050a240, {{0xc00044c2a0, 0x2a}, {0xc000461c90, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003fe2a0}, 0xc0003dd9e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003fe2a0}, 0xc0003dd9e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003fe2a0}, 0xc0003dd9e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003fe2a0}, 0xc0003dd7a0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000764ea0, {0x7ff79c899e10, 0xc0003e2690}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:02 http: panic serving 212.7.203.107:59412: runtime error: index out of range [0] with length 0 +goroutine 292 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d878?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00050a300, {{0xc00044c330, 0x2a}, {0xc00000a350, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003fe380}, 0xc000562240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003fe380}, 0xc000562240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003fe380}, 0xc000562240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003fe380}, 0xc000562000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000764fc0, {0x7ff79c899e10, 0xc0003e2870}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:03 http: panic serving 212.7.203.107:59426: runtime error: index out of range [0] with length 0 +goroutine 285 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d890?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00050a3c0, {{0xc00044c3f0, 0x2a}, {0xc00000ab10, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003fe460}, 0xc000562a20) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003fe460}, 0xc000562a20) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003fe460}, 0xc000562a20) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003fe460}, 0xc0005627e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f9050, {0x7ff79c899e10, 0xc0003e2a50}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:09 http: panic serving 212.7.203.107:34594: runtime error: index out of range [0] with length 0 +goroutine 286 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d8a8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc00050a480, {{0xc00044c480, 0x2b}, {0xc00000b2c0, 0x10}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc0003fe540}, 0xc000563200) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc0003fe540}, 0xc000563200) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc0003fe540}, 0xc000563200) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc0003fe540}, 0xc000562fc0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f9170, {0x7ff79c899e10, 0xc0003e2c80}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:09 http: panic serving 212.7.203.107:34602: runtime error: index out of range [0] with length 0 +goroutine 287 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d8c0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c0300, {{0xc0001ca390, 0x2b}, {0xc000439e40, 0x10}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000480380}, 0xc0005aa6c0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000480380}, 0xc0005aa6c0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000480380}, 0xc0005aa6c0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000480380}, 0xc0005aa480) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f9290, {0x7ff79c899e10, 0xc000140960}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:10 http: panic serving 212.7.203.107:34604: runtime error: index out of range [0] with length 0 +goroutine 288 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff79c8032a0?, 0xc00001d8d8?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004c03c0, {{0xc0001ca450, 0x2b}, {0xc00047d4f0, 0x10}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc000477890, {0x7ff79c899790, 0xc000480460}, 0xc0005aaea0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000464770, {0x7ff79c899790, 0xc000480460}, 0xc0005aaea0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc000096000, {0x7ff79c899790, 0xc000480460}, 0xc0005aaea0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc000230000}, {0x7ff79c899790, 0xc000480460}, 0xc0005aac60) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0007f93b0, {0x7ff79c899e10, 0xc000140b40}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:24 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:22:24 Opening SQLite database +[GoRacerr]2024/08/31 14:22:24 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:22:25 http: panic serving 212.7.203.107:45784: runtime error: index out of range [0] with length 0 +goroutine 8 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff7083c32a0?, 0xc00038ce28?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003fa000, {{0xc0000b2000, 0x25}, {0xc000280a90, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003440c0, {0x7ff708459790, 0xc0001461c0}, 0xc0003706c0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000032f50, {0x7ff708459790, 0xc0001461c0}, 0xc0003706c0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000c8000, {0x7ff708459790, 0xc0001461c0}, 0xc0003706c0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc00029e000}, {0x7ff708459790, 0xc0001461c0}, 0xc000370000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0001ec360, {0x7ff708459e10, 0xc00013e050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:26 http: panic serving 212.7.203.107:45796: runtime error: index out of range [0] with length 0 +goroutine 66 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff7083c32a0?, 0xc00038ce88?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000698540, {{0xc0003c8db0, 0x25}, {0xc0002b99c0, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003440c0, {0x7ff708459790, 0xc000694b60}, 0xc000124c60) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000032f50, {0x7ff708459790, 0xc000694b60}, 0xc000124c60) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000c8000, {0x7ff708459790, 0xc000694b60}, 0xc000124c60) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc00029e000}, {0x7ff708459790, 0xc000694b60}, 0xc000124a20) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000616090, {0x7ff708459e10, 0xc00035c780}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:26 http: panic serving 212.7.203.107:45806: runtime error: index out of range [0] with length 0 +goroutine 67 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff7083c32a0?, 0xc00038cf48?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003fa0c0, {{0xc00051e1e0, 0x25}, {0xc00029b310, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003440c0, {0x7ff708459790, 0xc000146380}, 0xc0003705a0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000032f50, {0x7ff708459790, 0xc000146380}, 0xc0003705a0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000c8000, {0x7ff708459790, 0xc000146380}, 0xc0003705a0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc00029e000}, {0x7ff708459790, 0xc000146380}, 0xc000370240) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0006161b0, {0x7ff708459e10, 0xc0002760f0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:27 http: panic serving 212.7.203.107:35612: runtime error: index out of range [0] with length 0 +goroutine 68 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff7083c32a0?, 0xc00038d140?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003fa180, {{0xc00051e330, 0x25}, {0xc00029ba80, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003440c0, {0x7ff708459790, 0xc000146460}, 0xc000371320) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000032f50, {0x7ff708459790, 0xc000146460}, 0xc000371320) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000c8000, {0x7ff708459790, 0xc000146460}, 0xc000371320) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc00029e000}, {0x7ff708459790, 0xc000146460}, 0xc0003710e0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0006162d0, {0x7ff708459e10, 0xc0002762d0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:27 http: panic serving 212.7.203.107:35618: runtime error: index out of range [0] with length 0 +goroutine 69 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff7083c32a0?, 0xc00038d158?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0004a0000, {{0xc00001e360, 0x25}, {0xc000410770, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003440c0, {0x7ff708459790, 0xc0003e2000}, 0xc000384240) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000032f50, {0x7ff708459790, 0xc0003e2000}, 0xc000384240) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000c8000, {0x7ff708459790, 0xc0003e2000}, 0xc000384240) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc00029e000}, {0x7ff708459790, 0xc0003e2000}, 0xc000384000) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc0006163f0, {0x7ff708459e10, 0xc000084050}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:28 http: panic serving 212.7.203.107:35622: runtime error: index out of range [0] with length 0 +goroutine 70 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff7083c32a0?, 0xc00038d170?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0003fa240, {{0xc00051e480, 0x25}, {0xc0003a2480, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003440c0, {0x7ff708459790, 0xc000146540}, 0xc000371b00) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000032f50, {0x7ff708459790, 0xc000146540}, 0xc000371b00) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000c8000, {0x7ff708459790, 0xc000146540}, 0xc000371b00) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc00029e000}, {0x7ff708459790, 0xc000146540}, 0xc0003718c0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000616510, {0x7ff708459e10, 0xc0002764b0}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:28 http: panic serving 212.7.203.107:35630: runtime error: index out of range [0] with length 0 +goroutine 71 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff7083c32a0?, 0xc00038d200?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000698600, {{0xc0003c8fc0, 0x25}, {0xc000382780, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003440c0, {0x7ff708459790, 0xc000694c40}, 0xc0001257a0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000032f50, {0x7ff708459790, 0xc000694c40}, 0xc0001257a0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000c8000, {0x7ff708459790, 0xc000694c40}, 0xc0001257a0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc00029e000}, {0x7ff708459790, 0xc000694c40}, 0xc000125560) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000616630, {0x7ff708459e10, 0xc00035c960}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:29 http: panic serving 212.7.203.107:35632: runtime error: index out of range [0] with length 0 +goroutine 72 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff7083c32a0?, 0xc00038d218?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc0006986c0, {{0xc0003c90e0, 0x25}, {0xc0003832a0, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003440c0, {0x7ff708459790, 0xc000694d20}, 0xc0002d8000) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000032f50, {0x7ff708459790, 0xc000694d20}, 0xc0002d8000) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000c8000, {0x7ff708459790, 0xc000694d20}, 0xc0002d8000) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc00029e000}, {0x7ff708459790, 0xc000694d20}, 0xc000125d40) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000616750, {0x7ff708459e10, 0xc00035cb40}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:29 http: panic serving 212.7.203.107:35646: runtime error: index out of range [0] with length 0 +goroutine 73 [running]: +net/http.(*conn).serve.func1() + C:/Program Files/Go/src/net/http/server.go:1898 +0x13f +panic({0x7ff7083c32a0?, 0xc00001c4b0?}) + C:/Program Files/Go/src/runtime/panic.go:770 +0x136 +main.(*Release).SearchTMDB(0xc000698780, {{0xc0003c9200, 0x25}, {0xc000383b00, 0xc}, {0x0, 0x0}, {0x0, 0x0}, {0x0, ...}, ...}) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/release.go:45 +0x9f3 +main.(*APIServer).handleCreatePreRace(0xc0003440c0, {0x7ff708459790, 0xc000694e00}, 0xc0002d87e0) + c:/Perso/Seafile/Programmation/Golang/GoRacerr/api.go:73 +0x505 +net/http.HandlerFunc.ServeHTTP(0xc000032f50, {0x7ff708459790, 0xc000694e00}, 0xc0002d87e0) + C:/Program Files/Go/src/net/http/server.go:2166 +0x33 +github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000c8000, {0x7ff708459790, 0xc000694e00}, 0xc0002d87e0) + C:/Users/legre/go/pkg/mod/github.com/gorilla/mux@v1.8.1/mux.go:212 +0x2bb +net/http.serverHandler.ServeHTTP({0xc00029e000}, {0x7ff708459790, 0xc000694e00}, 0xc0002d85a0) + C:/Program Files/Go/src/net/http/server.go:3137 +0x257 +net/http.(*conn).serve(0xc000616870, {0x7ff708459e10, 0xc00035cd20}) + C:/Program Files/Go/src/net/http/server.go:2039 +0x1ab5 +created by net/http.(*Server).Serve in goroutine 1 + C:/Program Files/Go/src/net/http/server.go:3285 +0xa9a +[GoRacerr]2024/08/31 14:22:43 Found TMDB Information for [Ancient Aliens S20E18 1080p WEB-DL AAC2.0 H.264-EDITH] with Title [Ancient Aliens] [ID: 𢉔] [Year: 0] [Original Title: Ancient Aliens Debunked] [Original Language: en] [Release Date: 2012-09-27] +[GoRacerr]2024/08/31 14:23:55 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:23:55 Opening SQLite database +[GoRacerr]2024/08/31 14:23:55 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:24:07 Prerace *** The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD *** from DigitalCore added to the database +[GoRacerr]2024/08/31 14:24:07 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 񔝔] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:24:27 Could not find TMDB information for [Home Is Where We Start: Growing Up in the Fallout of the Utopian Dream by Susanna Crossman [English / m4b]] +[GoRacerr]2024/08/31 14:24:51 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:24:51 Opening SQLite database +[GoRacerr]2024/08/31 14:24:51 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:25:01 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:25:28 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:25:28 Opening SQLite database +[GoRacerr]2024/08/31 14:25:28 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:25:29 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:26:42 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:26:42 Opening SQLite database +[GoRacerr]2024/08/31 14:26:42 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:26:46 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:26:47 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: %!s(int64=345940)] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:27:14 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:27:14 Opening SQLite database +[GoRacerr]2024/08/31 14:27:14 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:27:16 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:27:16 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 񔝔] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:27:33 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:27:33 Opening SQLite database +[GoRacerr]2024/08/31 14:27:33 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:27:34 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:27:51 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:27:51 Opening SQLite database +[GoRacerr]2024/08/31 14:27:51 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:27:53 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:27:53 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 񔝔] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:28:03 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:30:36 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:30:36 Opening SQLite database +[GoRacerr]2024/08/31 14:30:36 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:30:37 Prerace [Ben-Hur.Coffret.COLLECTOR.3.Disk-1959.MULTI.VFF.Full.BLURAY.1080p.x264.AVC (S:0/L:0)] from [YGG Torrent] added to the database +[GoRacerr]2024/08/31 14:30:37 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:30:37 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:30:37 Could not find TMDB information for [Ben-Hur.Coffret.COLLECTOR.3.Disk-1959.MULTI.VFF.Full.BLURAY.1080p.x264.AVC (S:0/L:0)] +[GoRacerr]2024/08/31 14:31:41 Prerace [Scary Movie 2000 1080p BluRay DDP 5.1 x264-BV] from [HD-Torrents] added to the database +[GoRacerr]2024/08/31 14:31:42 Found TMDB Information for [Scary Movie 2000 1080p BluRay DDP 5.1 x264-BV] with Title [Scary Movie] [ID: 4247] [Year: 2000] [Original Title: Scary Movie] [Original Language: en] [Release Date: 2000-07-07] +[GoRacerr]2024/08/31 14:37:12 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:37:12 Opening SQLite database +[GoRacerr]2024/08/31 14:37:12 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:37:28 Could not find TMDB information for [Dead_and_Dripping-Disillusioned_by_Excessive_Human_Consumption-(LORD092)-DEMO_REISSUE-CD-FLAC-2024-86D] +[GoRacerr]2024/08/31 14:37:32 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:37:45 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:42:07 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:42:07 Opening SQLite database +[GoRacerr]2024/08/31 14:42:07 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:42:11 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:42:11 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:42:23 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:43:11 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:43:11 Opening SQLite database +[GoRacerr]2024/08/31 14:43:11 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:43:11 Found TMDB Information for [South Park S11E04 The Snuke 1080p BluRay x264-OFT] with Title [South Park] [ID: 1290938] [Year: 0] [Original Title: South Park: The End of Obesity] [Original Language: en] [Release Date: 2024-05-24] +[GoRacerr]2024/08/31 14:43:24 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:43:28 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:43:57 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:43:57 Opening SQLite database +[GoRacerr]2024/08/31 14:43:57 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:46:23 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:46:23 Opening SQLite database +[GoRacerr]2024/08/31 14:46:23 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:46:31 Prerace [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:46:41 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:47:18 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:47:18 Opening SQLite database +[GoRacerr]2024/08/31 14:47:18 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:48:19 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:48:19 Opening SQLite database +[GoRacerr]2024/08/31 14:48:19 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:54:04 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:54:04 Opening SQLite database +[GoRacerr]2024/08/31 14:54:04 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:54:10 Error searching for release in Db sql: expected 3 destination arguments in Scan, not 1 +[GoRacerr]2024/08/31 14:54:46 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:54:46 Opening SQLite database +[GoRacerr]2024/08/31 14:54:46 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:55:06 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:56:32 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:56:32 Opening SQLite database +[GoRacerr]2024/08/31 14:56:32 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:56:41 Found TMDB Information for [The.Meg.2018.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 14:57:01 Error searching for release in Db sql: no rows in result set +[GoRacerr]2024/08/31 14:57:01 Error searching for release in Db sql: no rows in result set +[GoRacerr]2024/08/31 14:57:02 Could not find TMDB information for [Trevor Lentz - Pixel Descent Soundtrack [2024] (WEB FLAC Lossless)] +[GoRacerr]2024/08/31 14:59:54 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 14:59:54 Opening SQLite database +[GoRacerr]2024/08/31 14:59:54 Listening for new Preraces / Races +[GoRacerr]2024/08/31 14:59:55 Prerace [Skyline.2010.720p.HULU.WEBRip.x264-LAMA] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 14:59:56 Found TMDB Information for [Skyline.2010.720p.HULU.WEBRip.x264-LAMA] with Title [Skyline] [ID: 42684] [Year: 2010] [Original Title: Skyline] [Original Language: en] [Release Date: 2010-11-11] +[GoRacerr]2024/08/31 15:00:36 Could not find TMDB information for [Embodiment_Elimination-Metamorphosis_Incarnate_Through_Genetic_Devastation-CD-2024-DiTCH] +[GoRacerr]2024/08/31 15:03:03 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 15:03:03 Opening SQLite database +[GoRacerr]2024/08/31 15:03:03 Listening for new Preraces / Races +[GoRacerr]2024/08/31 15:03:07 Prerace [Payback Season (2012) 1080p BluRay 5.1-LAMA] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 15:03:07 Found TMDB Information for [Payback Season (2012) 1080p BluRay 5.1-LAMA] with Title [Payback Season] [ID: 95628] [Year: 2012] [Original Title: Payback Season] [Original Language: en] [Release Date: 2012-03-09] +[GoRacerr]2024/08/31 15:03:07 Could not find TMDB information for [Black Label Society - Order of the Black [2010] (CD MP3 320)] +[GoRacerr]2024/08/31 15:03:07 Could not find TMDB information for [Black Label Society - Order of the Black [2010] (CD MP3 V0 (VBR))] +[GoRacerr]2024/08/31 15:03:07 Found TMDB Information for [Black Label Society - Mafia [2005] (CD MP3 320)] with Title [Mafia] [ID: 49203] [Year: 2005] [Original Title: 가문의 위기] [Original Language: ko] [Release Date: 2005-09-07] +[GoRacerr]2024/08/31 15:03:07 Found TMDB Information for [Black Label Society - Mafia [2005] (CD MP3 V0 (VBR))] with Title [Mafia] [ID: 49203] [Year: 2005] [Original Title: 가문의 위기] [Original Language: ko] [Release Date: 2005-09-07] +[GoRacerr]2024/08/31 15:03:07 Could not find TMDB information for [Black Label Society - Catacombs of the Black Vatican [2014] (CD MP3 V0 (VBR))] +[GoRacerr]2024/08/31 15:03:07 Could not find TMDB information for [ZeMystic - Tunes To Find Secrets To [2024] (WEB FLAC 24BIT Lossless)] +[GoRacerr]2024/08/31 15:03:14 Prerace [The.Meg.201.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 15:03:14 Found TMDB Information for [The.Meg.201.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 15:03:17 Found TMDB Information for [The.Meg.201.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 15:03:21 Could not find TMDB information for [Resident.Evil.2.GOG.Version.Plus.4.Trainer-PLAYMAGiC] +[GoRacerr]2024/08/31 15:03:27 Could not find TMDB information for [Resident.Evil.2.GOG.Version.Plus.4.Trainer-PLAYMAGiC] +[GoRacerr]2024/08/31 15:04:06 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 15:04:06 Opening SQLite database +[GoRacerr]2024/08/31 15:04:06 Listening for new Preraces / Races +[GoRacerr]2024/08/31 15:04:08 Found TMDB Information for [The.Meg.201.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 15:04:34 Found TMDB Information for [Killin_Field-Criminal_Street_Slang-The_Album-REISSUE-CD-FLAC-2024-AUDiOFiLE] with Title [The Album] [ID: 1311033] [Year: 2024] [Original Title: Weezer - The Blue Album LIVE. Spotify THIRTY - The 30th Anniversary] [Original Language: en] [Release Date: 2024-07-24] +[GoRacerr]2024/08/31 15:07:11 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 15:07:11 Opening SQLite database +[GoRacerr]2024/08/31 15:07:11 Listening for new Preraces / Races +[GoRacerr]2024/08/31 15:07:13 Found TMDB Information for [The.Meg.201.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] +[GoRacerr]2024/08/31 15:07:17 Prerace [Der.Tinder.Moerder.Der.Fall.Molly.McLaren.2021.German.DOKU.720p.WEB.x264-CLASSiCALHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 15:07:18 Could not find TMDB information for [Der.Tinder.Moerder.Der.Fall.Molly.McLaren.2021.German.DOKU.720p.WEB.x264-CLASSiCALHD] +[GoRacerr]2024/08/31 15:07:34 Could not find TMDB information for [Uncovering Kalyn by Kaliope [English / epub]] +[GoRacerr]2024/08/31 15:07:47 Prerace [Out.Come.the.Wolves.2024.720p.AMZN.WEB-DL.DDP5.1.H.264-BYNDR] from [FileList] added to the database +[GoRacerr]2024/08/31 15:07:47 Found TMDB Information for [Out.Come.the.Wolves.2024.720p.AMZN.WEB-DL.DDP5.1.H.264-BYNDR] with Title [Out Come the Wolves] [ID: 1216103] [Year: 2024] [Original Title: Out Come the Wolves] [Original Language: en] [Release Date: 2024-08-30] +[GoRacerr]2024/08/31 15:08:19 Prerace [9.11.Chronologie.des.Terrors.2021.German.DOKU.720p.WEB.x264-CLASSiCALHD] from [DigitalCore] added to the database +[GoRacerr]2024/08/31 15:08:19 Found TMDB Information for [9.11.Chronologie.des.Terrors.2021.German.DOKU.720p.WEB.x264-CLASSiCALHD] with Title [9 11 Chronologie des Terrors] [ID: 874030] [Year: 2021] [Original Title: 9/11: Minute by Minute] [Original Language: en] [Release Date: 2021-09-07] +[GoRacerr]2024/08/31 15:08:49 Could not find TMDB information for [C.H.De.Burgh.2024.Le.Reseau.Daedalus.French.Epub-NoGRP] +[GoRacerr]2024/08/31 15:09:01 Could not find TMDB information for [Frog On Head - FrogOnHead By FrogOnHead [2024] (WEB FLAC Lossless)] +[GoRacerr]2024/08/31 15:09:14 Starting GoRacerr on 0.0.0.0:3000 +[GoRacerr]2024/08/31 15:09:14 Opening SQLite database +[GoRacerr]2024/08/31 15:09:14 Listening for new Preraces / Races +[GoRacerr]2024/08/31 15:09:21 Found TMDB Information for [The.Meg.201.MULTi.1080p.BluRay.x264.TRUE-HD.ATMOS.AC3-SowHD] with Title [The Meg] [ID: 345940] [Year: 2018] [Original Title: The Meg] [Original Language: en] [Release Date: 2018-08-09] diff --git a/race.go b/race.go index e312fa3..6b4be5e 100644 --- a/race.go +++ b/race.go @@ -1,20 +1,23 @@ package main type Race struct { - ID int64 `json:"id"` - TorrentName string `json:"torrentname"` - Category string `json:"category"` - Indexer string `json:"indexer"` - Type string `json:"type"` - Title string `json:"title"` - Season string `json:"season"` - Episode string `json:"episode"` - Year string `json:"year"` - Resolution string `json:"resolution"` - Source string `json:"source"` - TorrentURL string `json:"torrenturl"` - Won bool `json:"won"` - PreRace bool `json:"prerace"` + ID int64 `json:"id"` + TorrentName string `json:"torrentname"` + Category string `json:"category"` + Indexer string `json:"indexer"` + Type string `json:"type"` + Title string `json:"title"` + Season string `json:"season"` + Episode string `json:"episode"` + Year string `json:"year"` + Resolution string `json:"resolution"` + Source string `json:"source"` + TorrentURL string `json:"torrenturl"` + TorrentFile string `json:"torrentfile"` + NFOFile string `json:"nfofile"` + OriginalPath string `json:"originalpath"` + Won bool `json:"won"` + PreRace bool `json:"prerace"` } func NewRace() *Race { diff --git a/release.go b/release.go new file mode 100644 index 0000000..d8e6d25 --- /dev/null +++ b/release.go @@ -0,0 +1,64 @@ +package main + +import ( + "fmt" + "log" + "strconv" + + tmdb "github.com/cyruzin/golang-tmdb" +) + +type Release struct { + TorrentName string `json:"torrent_name"` + Title string `json:"title"` + OriginalTitle string `json:"original_title"` + TMDbID int64 `json:"tmdb"` + Overview string `json:"synopsis"` + ReleaseDate string `json:"release_date"` + OriginalLanguage string `json:"original_language"` + Year string `json:"year"` + Cfg Config +} + +func NewRelease(torrentname string, title string, year string, cfg Config) *Release { + return &Release{ + TorrentName: torrentname, + Title: title, + Year: year, + Cfg: cfg, + } +} + +func (r *Release) ProcessRelease() { + r.SearchTMDB() +} + +func (r *Release) SearchTMDB() { + + tmdbClient, err := tmdb.Init(r.Cfg.TMDBApiKey) + if err != nil { + fmt.Println(err) + } + + m := make(map[string]string) + m["year"] = r.Year + + result, err := tmdbClient.GetSearchMovies(r.Title, m) + if err != nil { + log.Println("Failed to find the movie on TMDB with error: ", err) + } + + if len(result.SearchMoviesResults.Results) > 0 { + r.OriginalLanguage = result.SearchMoviesResults.Results[0].OriginalLanguage + r.TMDbID = result.SearchMoviesResults.Results[0].ID + r.Overview = result.SearchMoviesResults.Results[0].Overview + r.OriginalTitle = result.SearchMoviesResults.Results[0].OriginalTitle + r.ReleaseDate = result.SearchMoviesResults.Results[0].ReleaseDate + + log.Printf("Found TMDB Information for [%s] with Title [%s] [ID: %v] [Year: %s] [Original Title: %s] [Original Language: %s] [Release Date: %s]", + r.TorrentName, r.Title, strconv.FormatInt(r.TMDbID, 10), r.Year, r.OriginalTitle, r.OriginalLanguage, r.ReleaseDate) + } else { + log.Printf("Could not find TMDB information for [%s]", r.TorrentName) + } + +}