diff --git a/cmd/qtransfer/main.go b/cmd/qtransfer/main.go index 203bc9b..366374f 100644 --- a/cmd/qtransfer/main.go +++ b/cmd/qtransfer/main.go @@ -136,10 +136,11 @@ func run() error { matcher := match.NewMatcher(qb) transferCfg := transfer.Config{ - DryRun: cfg.DryRun, - PublicPlaylists: cfg.PublicPlaylists, - Concurrency: cfg.Concurrency, - LikedName: cfg.LikedPlaylist, + DryRun: cfg.DryRun, + PublicPlaylists: cfg.PublicPlaylists, + Concurrency: cfg.Concurrency, + LikedName: cfg.LikedPlaylist, + TargetPlaylistID: cfg.TargetPlaylistID, Progress: func(msg string) { fmt.Printf("\r%-140s", msg) }, @@ -644,12 +645,12 @@ func buildPlaylistPlans(cfg config.Config, fileEntries []jobconfig.PlaylistEntry } if cfg.TargetPlaylistID > 0 { - uniqueIDs := map[string]struct{}{} - for id := range plans { - uniqueIDs[id] = struct{}{} - } - if len(uniqueIDs) != 1 { - return nil, nil, fmt.Errorf("--target-playlist-id can only be used with exactly one source playlist URL") + // Apply the global target to all plans that don't already have a per-playlist target. + for id, plan := range plans { + if plan.TargetPlaylistID == 0 { + plan.TargetPlaylistID = cfg.TargetPlaylistID + plans[id] = plan + } } } diff --git a/internal/config/config.go b/internal/config/config.go index 060a39e..95aaaf3 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -117,7 +117,7 @@ func Load() (Config, error) { flag.Var(&playlists, "playlist", "Playlist name to transfer (repeatable)") flag.Var(&playlistURLs, "playlist-url", "Spotify playlist URL/URI/ID to transfer (repeatable)") - if err := flag.CommandLine.Parse(parseArgs); err != nil { + if err := flag.CommandLine.Parse(preprocessArgs(parseArgs)); err != nil { return Config{}, err } cfg.Command = command @@ -158,9 +158,6 @@ func (c Config) Validate() error { if c.TargetPlaylistID < 0 { return fmt.Errorf("target-playlist-id must be >= 0") } - if c.TargetPlaylistID > 0 && !c.Monitor { - return fmt.Errorf("target-playlist-id is currently supported with --monitor mode") - } if strings.TrimSpace(c.SessionPath) == "" { return fmt.Errorf("session file path cannot be empty") } @@ -190,6 +187,48 @@ func splitComma(s string) []string { return res } +type boolFlag interface { + IsBoolFlag() bool +} + +// preprocessArgs moves non-flag positional arguments to the end so that flags +// can appear in any order relative to non-flag arguments. +func preprocessArgs(args []string) []string { + boolFlagNames := make(map[string]bool) + flag.CommandLine.VisitAll(func(f *flag.Flag) { + if bf, ok := f.Value.(boolFlag); ok && bf.IsBoolFlag() { + boolFlagNames[f.Name] = true + } + }) + + var flagArgs []string + var positional []string + + i := 0 + for i < len(args) { + arg := args[i] + if !strings.HasPrefix(arg, "-") { + positional = append(positional, arg) + i++ + continue + } + flagArgs = append(flagArgs, arg) + i++ + name := strings.TrimLeft(arg, "-") + if idx := strings.Index(name, "="); idx >= 0 { + continue // value embedded in --flag=value form + } + if boolFlagNames[name] { + continue // bool flags don't consume a following value + } + if i < len(args) && !strings.HasPrefix(args[i], "-") { + flagArgs = append(flagArgs, args[i]) + i++ + } + } + return append(flagArgs, positional...) +} + func envOr(key, fallback string) string { if v := strings.TrimSpace(os.Getenv(key)); v != "" { return v diff --git a/internal/transfer/transfer.go b/internal/transfer/transfer.go index a4650f7..caf048a 100644 --- a/internal/transfer/transfer.go +++ b/internal/transfer/transfer.go @@ -20,11 +20,12 @@ type TrackMatcher interface { } type Config struct { - DryRun bool - PublicPlaylists bool - Concurrency int - LikedName string - Progress ProgressFunc + DryRun bool + PublicPlaylists bool + Concurrency int + LikedName string + TargetPlaylistID int64 // when set, add tracks to this existing playlist instead of creating a new one + Progress ProgressFunc } type ProgressFunc func(message string) @@ -87,14 +88,21 @@ func processPlaylist(ctx context.Context, cfg Config, writer QobuzWriter, matche return res } - notify(cfg, fmt.Sprintf("Transfer %d/%d creating playlist: %s", playlistIndex, playlistTotal, shortName(pl.Name))) - playlistID, err := writer.CreatePlaylist(ctx, pl.Name, sanitizeDescription(pl.Description), cfg.PublicPlaylists) - if err != nil { - res.Errors = append(res.Errors, fmt.Sprintf("create playlist: %v", err)) - notify(cfg, fmt.Sprintf("Transfer %d/%d failed creating playlist: %s", playlistIndex, playlistTotal, shortName(pl.Name))) - return res + var playlistID int64 + if cfg.TargetPlaylistID > 0 { + playlistID = cfg.TargetPlaylistID + res.TargetID = playlistID + } else { + notify(cfg, fmt.Sprintf("Transfer %d/%d creating playlist: %s", playlistIndex, playlistTotal, shortName(pl.Name))) + created, err := writer.CreatePlaylist(ctx, pl.Name, sanitizeDescription(pl.Description), cfg.PublicPlaylists) + if err != nil { + res.Errors = append(res.Errors, fmt.Sprintf("create playlist: %v", err)) + notify(cfg, fmt.Sprintf("Transfer %d/%d failed creating playlist: %s", playlistIndex, playlistTotal, shortName(pl.Name))) + return res + } + playlistID = created + res.TargetID = playlistID } - res.TargetID = playlistID ids := uniqueIDs(matched) if len(ids) == 0 { diff --git a/transfer-report.json b/transfer-report.json index fa28484..c899f9a 100644 --- a/transfer-report.json +++ b/transfer-report.json @@ -1,2763 +1,4824 @@ { - "started_at": "2026-04-03T18:56:25Z", - "ended_at": "2026-04-03T18:57:44Z", + "started_at": "2026-04-03T21:21:23Z", + "ended_at": "2026-04-03T21:22:59Z", "dry_run": false, "results": [ { - "name": "Sovietwave 🚀", - "target_id": 61640498, - "total_tracks": 304, - "matched_tracks": 143, - "added_tracks": 135, + "name": "Discooooo Baby", + "target_id": 61654720, + "total_tracks": 1665, + "matched_tracks": 1399, + "added_tracks": 1347, "unmatched": [ { "source": { - "source_id": "79hHs6yweCIX0pbnCb4T82", - "title": "Танцевать", + "source_id": "5ueub7CWhYCXkKUZ2kRMOn", + "title": "Hey Don't You Know", "artists": [ - "Бумажные Тигры" + "BOBBY" ], - "album": "Ботаника", - "duration_ms": 162000, - "isrc": "AEA0D1958614" + "album": "Hey Don't You Know", + "duration_ms": 164144, + "isrc": "BEK011900513" }, - "qobuz_id": 217902753, - "score": 10, - "query": "Танцевать Бумажные Тигры", - "reason": "best score 10.0 below threshold", + "qobuz_id": 348398937, + "score": 25.11111111111111, + "query": "Hey Don't You Know", + "reason": "best score 25.1 below threshold", "matched": false }, { "source": { - "source_id": "3o6XKytJbNzvf7v8xl9pVi", - "title": "В леса", + "source_id": "6MAF33h7lRCYkf2M0vtx3y", + "title": "Reality", "artists": [ - "Priroda" + "Lost Frequencies", + "Janieck Devy" ], - "album": "Ада", - "duration_ms": 127304, - "isrc": "RUA1H1935557" + "album": "Less Is More", + "duration_ms": 158474, + "isrc": "NLF711502765" }, - "qobuz_id": 367392430, - "score": 10, - "query": "В леса Priroda", - "reason": "best score 10.0 below threshold", + "qobuz_id": 378037559, + "score": 38.333333333333336, + "query": "Reality Lost Frequencies", + "reason": "best score 38.3 below threshold", "matched": false }, { "source": { - "source_id": "29LZtFMnBk8PmUzg33i4y1", - "title": "Музей космонавтики", + "source_id": "584WJUkmDVvMKqhfBQih9J", + "title": "Apoligize", "artists": [ - "Второй этаж поражает" + "Various Artists" ], - "album": "Крайности", - "duration_ms": 100000, - "isrc": "RUA1D1914404" + "album": "Apoligize", + "duration_ms": 184502, + "isrc": "TCABI1249650" }, - "qobuz_id": 331945012, - "score": 7, - "query": "Музей космонавтики", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "0rNTKjcx9U8dItECBN3mO4", - "title": "Наваждение", - "artists": [ - "Холодный звонок" - ], - "album": "Наваждение", - "duration_ms": 155533, - "isrc": "GBSMU6724353", - "explicit": true - }, - "qobuz_id": 170197499, - "score": 10, - "query": "Наваждение Холодный звонок", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6KaiEB8bC8ctifLUfQdXGR", - "title": "Межзвёздная экспедиция", - "artists": [ - "Время Акаций" - ], - "album": "Межзвёздная экспедиция", - "duration_ms": 256000, - "isrc": "AEA0D1913738" - }, - "qobuz_id": 151917820, - "score": 10, - "query": "Межзвёздная экспедиция Время Акаций", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5sBl6Sq4o3OudeyjPfnfpZ", - "title": "Бутылочка", - "artists": [ - "Luna" - ], - "album": "Маг-ни-ты", - "duration_ms": 269609, - "isrc": "FR2X41637747" - }, - "qobuz_id": 53485802, - "score": 10, - "query": "Бутылочка Luna", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "0uhI1APF1D4scWNrOUCMIw", - "title": "Остров", - "artists": [ - "My" - ], - "album": "Ближе, Pt. 2", - "duration_ms": 146341, - "isrc": "RUA1D1815561" - }, - "qobuz_id": 245594534, - "score": 0, - "query": "Остров", - "reason": "best score 0.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "61iGGhMOjv8eKlRlqugSXP", - "title": "Дорогой Человек", - "artists": [ - "PERMSKY KRAY" - ], - "album": "Дорогой Человек", - "duration_ms": 250665, - "isrc": "FR96X2193728" - }, - "qobuz_id": 364079808, - "score": 20, - "query": "Дорогой Человек PERMSKY KRAY", - "reason": "best score 20.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "2nwiSrGmCGHiplpypWG3Xg", - "title": "Москва", - "artists": [ - "Штадт" - ], - "album": "СНГ", - "duration_ms": 236308, - "isrc": "RUA1D1818569" - }, - "qobuz_id": 269175387, - "score": 10, - "query": "Москва Штадт", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5VfnmTz5NPAW5a8V9M1ZJ9", - "title": "Things I Don't Need", - "artists": [ - "Human Tetris" - ], - "album": "Things I Don't Need", - "duration_ms": 244052, - "isrc": "TCACU1662891" - }, - "qobuz_id": 360077761, - "score": 25, - "query": "Things I Don't Need Human Tetris", - "reason": "best score 25.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5asI2A5CkGZbdcmrg4Q0Kb", - "title": "На реке", - "artists": [ - "Группа Хмурый" - ], - "album": "Картина 1, No. 16/12", - "duration_ms": 313220, - "isrc": "RUA1H1700957" - }, - "qobuz_id": 255397844, - "score": 0, - "query": "На реке Группа Хмурый", - "reason": "best score 0.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "58ScPBHOWwvr0EZVDG3RiJ", - "title": "Исход", - "artists": [ - "Время Акаций" - ], - "album": "Межзвёздная экспедиция", - "duration_ms": 171000, - "isrc": "AEA0D1913742" - }, - "qobuz_id": 151917824, - "score": 10, - "query": "Исход Время Акаций", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "7D23IgZxuaqlbXW0T00ML4", - "title": "Летодачабабушка", - "artists": [ - "ТеплоЭлектроЦентраль" - ], - "album": "Никаких препятствий", - "duration_ms": 194381, - "isrc": "FR26V1546573" - }, - "qobuz_id": 127227561, - "score": 10, - "query": "Летодачабабушка ТеплоЭлектроЦентраль", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "2KWHEbF62KoSRWzeqTf7I1", - "title": "Красные галстуки", - "artists": [ - "Пустая Электричка" - ], - "album": "Синие ночи", - "duration_ms": 149647, - "isrc": "QZGWX2074502" - }, - "qobuz_id": 257233665, - "score": 10, - "query": "Красные галстуки Пустая Электричка", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5qbvNcgYujcSY3CDrXpB19", - "title": "Таврия", - "artists": [ - "Со мною вот что" - ], - "album": "Добро пожаловать в машину", - "duration_ms": 156000, - "isrc": "GB-SMU-24-16728" - }, - "qobuz_id": 110221261, - "score": 10, - "query": "Таврия Со мною вот что", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "034uMUazaVZttJXQqprCFb", - "title": "Ritm Vremeni", - "artists": [ - "Stereoyunost" - ], - "album": "Ritm Vremeni", - "duration_ms": 398000, - "isrc": "DEAR41520222" - }, - "qobuz_id": 379190949, - "score": 11.435483870967742, - "query": "Ritm Vremeni Stereoyunost", - "reason": "best score 11.4 below threshold", - "matched": false - }, - { - "source": { - "source_id": "1ti48LD5k8NTOAodLLSPXS", - "title": "Поезда", - "artists": [ - "RSAC", - "ELLA" - ], - "album": "Голые факты", - "duration_ms": 227948, - "isrc": "FR10S1855850" - }, - "qobuz_id": 30412136, - "score": 20, - "query": "Поезда RSAC", - "reason": "best score 20.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6YAHZuFeKXWszGKrHVltRn", - "title": "Души стареют быстрее тел", - "artists": [ - "Utro" - ], - "album": "First Album", - "duration_ms": 150230, - "isrc": "FR59Y1800208" - }, - "qobuz_id": 105754875, - "score": 30, - "query": "Души стареют быстрее тел Utro", - "reason": "best score 30.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "1cIwIgT8Si472J5EEC5QzE", - "title": "Чужие люди", - "artists": [ - "Luna" - ], - "album": "Заколдованные сны", - "duration_ms": 232143, - "isrc": "RUB421801172" - }, - "qobuz_id": 55759202, - "score": 12.666666666666668, - "query": "Чужие люди Luna", - "reason": "best score 12.7 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6KK1YmL2ouWLDEIcShnhQB", - "title": "Не смотри назад", - "artists": [ - "Артек Электроника" - ], - "album": "Не смотри назад", - "duration_ms": 270588, - "isrc": "RUA3R2061831" - }, - "qobuz_id": 400699263, - "score": 10, - "query": "Не смотри назад Артек Электроника", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "7f5uPGgDUNZu0QDvjVaQFu", - "title": "Отражение лиц в окнах вагонов", - "artists": [ - "Пустая Электричка" - ], - "album": "Синие ночи", - "duration_ms": 137121, - "isrc": "QZGWX2074503" - }, - "qobuz_id": 257233666, - "score": 10, - "query": "Отражение лиц в окнах вагонов Пустая Электричка", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "1HCOz9t3hKcedgXz0dwqfT", - "title": "Таврия мокрый асфальт", - "artists": [ - "Со мною вот что" - ], - "album": "Охота 67", - "duration_ms": 155986, - "isrc": "QMFMG1564910" - }, - "qobuz_id": 110221261, - "score": 10, - "query": "Таврия мокрый асфальт Со мною вот что", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "0RMNG7O7LqA9jWdVN4qotC", - "title": "Музей Радиотехники", - "artists": [ - "Пустая Электричка" - ], - "album": "Родные Края", - "duration_ms": 169908, - "isrc": "GBSMU8412990" - }, - "qobuz_id": 257233668, - "score": 7, - "query": "Музей Радиотехники Пустая Электричка", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "1A0wxpuDMfnKEAYaciLryd", - "title": "Nochnoe Randevu", - "artists": [ - "Chernikovskaya Hata" - ], - "album": "Russian Tour", - "duration_ms": 208000, - "isrc": "CH6541721026" - }, - "qobuz_id": 231225432, - "score": 30, - "query": "Nochnoe Randevu Chernikovskaya Hata", - "reason": "best score 30.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "3SNocJzkS03meGYxJ94nUV", - "title": "Я буду рядом", - "artists": [ - "Не Твое Дело" - ], - "album": "Бэст хитс", - "duration_ms": 223231, - "isrc": "TCACQ1664385" - }, - "qobuz_id": 357398332, - "score": 10, - "query": "Я буду рядом Не Твое Дело", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "764JzEww5nDNwdDdg4h0kC", - "title": "М.У.Р. Перестрелка", - "artists": [ - "Артек Электроника" - ], - "album": "Не смотри назад", - "duration_ms": 178285, - "isrc": "RUA3R2061834" - }, - "qobuz_id": 259904352, - "score": 10, - "query": "М.У.Р. Перестрелка Артек Электроника", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "4yEdn7dSOGR0qbIfkyEioB", - "title": "Луна", - "artists": [ - "Второй этаж поражает" - ], - "album": "Крайности", - "duration_ms": 172235, - "isrc": "RUA1D1914401" - }, - "qobuz_id": 109659252, - "score": 4, - "query": "Луна Второй этаж поражает", - "reason": "best score 4.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "4eWtHT7zdKkl7zSVv7Bsul", - "title": "Над Москвой", - "artists": [ - "Manicure" - ], - "album": "НГ 15", - "duration_ms": 299351, - "isrc": "FR26V1422375" - }, - "qobuz_id": 107356395, - "score": -6, - "query": "Над Москвой Manicure", - "reason": "best score -6.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "0DKXR3f4MHyrcsdRM6LB9G", - "title": "Незнакомая сила", - "artists": [ - "Utro" - ], - "album": "First Album", - "duration_ms": 107745, - "isrc": "FR59Y1800202" - }, - "qobuz_id": 105754869, - "score": 30, - "query": "Незнакомая сила Utro", - "reason": "best score 30.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "4mbzyakwvx9JrXFyCNiO2D", - "title": "Сколько лет, сколько дней", - "artists": [ - "Труд" - ], - "album": "7", - "duration_ms": 283036, - "isrc": "TCAEA1801379" - }, - "qobuz_id": 251110562, - "score": 0, - "query": "Сколько лет, сколько дней Труд", - "reason": "best score 0.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "22tVFvN7N6G5KovyGIldWh", - "title": "Аэродромы", - "artists": [ - "Junk Riot" - ], - "album": "Бесполезная молодость", - "duration_ms": 186000, - "isrc": "QZ9Y21729724" - }, - "qobuz_id": 80786498, - "score": 20, - "query": "Аэродромы Junk Riot", - "reason": "best score 20.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6FgcB83AKEOSVG3yYk6A1N", - "title": "In the Sky", - "artists": [ - "Leto V Gorode" - ], - "album": "2", - "duration_ms": 242517, - "isrc": "QZES81864210" - }, - "qobuz_id": 35188547, - "score": 21.13235294117647, - "query": "In the Sky", - "reason": "best score 21.1 below threshold", - "matched": false - }, - { - "source": { - "source_id": "4mJvCCgKieMOzGMaT85iQP", - "title": "Гипноз", - "artists": [ - "Убийцы" - ], - "album": "Гипноз", - "duration_ms": 220810, - "isrc": "QM4DW1731844", - "explicit": true - }, - "qobuz_id": 97335331, - "score": 10, - "query": "Гипноз", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "3MPshuGBlFbz4z24V9tnJU", - "title": "Снег", - "artists": [ - "Dolphin" - ], - "album": "Юность", - "duration_ms": 182320, - "isrc": "QMFME1590454" - }, - "qobuz_id": 103922244, - "score": 7, - "query": "Снег", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "4BFIJnvxBhlny63mmoK91A", - "title": "Последний герой", - "artists": [ - "Kino" - ], - "album": "Последний герой", - "duration_ms": 184306, - "isrc": "RUB421401401" - }, - "qobuz_id": 119052752, - "score": 10, - "query": "Последний герой", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "2XXaFTV36NvPGlHlk0agSI", - "title": "Deltaplane", - "artists": [ - "Pioneerball" - ], - "album": "Deltaplane", - "duration_ms": 338616, - "isrc": "DEH741815034" - }, - "qobuz_id": 353182065, - "score": 20, - "query": "Deltaplane Pioneerball", - "reason": "best score 20.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "7fPOfNlnbFFjkrHAWS4imd", - "title": "Была права", - "artists": [ - "мертвоеморе" - ], - "album": "Мертвоеморе", - "duration_ms": 314062, - "isrc": "FR96X1636903" - }, - "qobuz_id": 123319183, - "score": -6, - "query": "Была права мертвоеморе", - "reason": "best score -6.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5nOMC6ZZ4EEW4CglJLbNOF", - "title": "Photons", - "artists": [ - "SUPERNOVA 1006" - ], - "album": "Unique World", - "duration_ms": 256361, - "isrc": "GBSMU3420067" - }, - "qobuz_id": 156484687, - "score": 20, - "query": "Photons SUPERNOVA 1006", - "reason": "best score 20.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6UY9O8Xoy3FU91zlaC93UE", - "title": "Мечты", - "artists": [ - "Бумажные Тигры" - ], - "album": "Мечты", - "duration_ms": 253636, - "isrc": "AEA0D1944690" - }, - "qobuz_id": 157203894, - "score": 10, - "query": "Мечты Бумажные Тигры", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6RYF2pAlM0ndFP43fqLRXC", - "title": "В наших глазах", - "artists": [ - "Kino" - ], - "album": "Последний герой", - "duration_ms": 223898, - "isrc": "RUB421401395" - }, - "qobuz_id": 132489743, - "score": 1, - "query": "В наших глазах", - "reason": "best score 1.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "0aPl9viFldoRVw5sGZr7D7", - "title": "Сад", - "artists": [ - "Utro" - ], - "album": "First Album", - "duration_ms": 223177, - "isrc": "FR59Y1800205" - }, - "qobuz_id": 105754872, - "score": 30, - "query": "Сад Utro", - "reason": "best score 30.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "2MelMth1Mc96RWYW1YNHpL", - "title": "Белые стены", - "artists": [ - "Группа Хмурый" - ], - "album": "Картина 2, No. 17/5", - "duration_ms": 193620, - "isrc": "RUA1H1757829" - }, - "qobuz_id": 351328975, - "score": 7, - "query": "Белые стены Группа Хмурый", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "223YWaZVhcpe7lDN5hKO3E", - "title": "посмотри мне в глаза", - "artists": [ - "невиди́мка" - ], - "album": "посмотри мне в глаза", - "duration_ms": 273391, - "isrc": "FR10S1879363", - "explicit": true - }, - "qobuz_id": 178992108, - "score": 7, - "query": "посмотри мне в глаза невиди́мка", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5IoiEEeLZZ7iyMwJs6Fwsy", - "title": "Я люблю ординарную девушку", - "artists": [ - "Sierpien" - ], - "album": "Реновация", - "duration_ms": 261777, - "isrc": "AEA0Q1873341" - }, - "qobuz_id": 125738904, - "score": 7, - "query": "Я люблю ординарную девушку Sierpien", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "1VLWJSnSOGftTkGtXj2S9R", - "title": "Динамо", - "artists": [ - "Убийцы" - ], - "album": "Гипноз", - "duration_ms": 163555, - "isrc": "QM4DW1731846", - "explicit": true - }, - "qobuz_id": 152131595, - "score": 10, - "query": "Динамо Убийцы", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "0lMlwZxMHd0Vy7NUR7i9f9", - "title": "Алкоголь", - "artists": [ - "Проспект Космонавтов" - ], - "album": "Алкоголь и Красота", - "duration_ms": 205118, - "isrc": "AEA0Q1715073" - }, - "qobuz_id": 347637801, - "score": 10, - "query": "Алкоголь Проспект Космонавтов", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "4lsc263j8tN0N5tDhKswtD", - "title": "Всё напоминает о тебе", - "artists": [ - "Ада" - ], - "album": "Всё напоминает о тебе", - "duration_ms": 196825, - "isrc": "RUA1D1807023" - }, - "qobuz_id": 64020975, - "score": 7, - "query": "Всё напоминает о тебе Ада", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "3WVjEp0KB1WDvQlBLMOPAj", - "title": "Первый луч", - "artists": [ - "Труд" - ], - "album": "7", - "duration_ms": 279666, - "isrc": "TCAEA1801375" - }, - "qobuz_id": 381787085, - "score": 0, - "query": "Первый луч Труд", - "reason": "best score 0.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "19BA4sq6q2eoWb4znbAYJM", - "title": "Горячая линия", - "artists": [ - "CREAM SODA", - "LAUD" - ], - "album": "Горячая линия", - "duration_ms": 218488, - "isrc": "FR96X1837922" - }, - "qobuz_id": 127414136, - "score": 27, - "query": "Горячая линия CREAM SODA", - "reason": "best score 27.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "0fLTxYvEnYRyyiFhwGRvED", - "title": "Вечер грустных пар", - "artists": [ - "Ploho" - ], - "album": "Вечер грустных пар", - "duration_ms": 203307, - "isrc": "RUA0G1900121" - }, - "qobuz_id": 96669147, - "score": 30, - "query": "Вечер грустных пар Ploho", - "reason": "best score 30.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6uTEULXe0nYGEdsbE3mGUJ", - "title": "Hate Me", - "artists": [ - "Hut" - ], - "album": "Russian Tour", - "duration_ms": 279324, - "isrc": "CH6541721022" - }, - "qobuz_id": 204278918, - "score": 32, - "query": "Hate Me", - "reason": "best score 32.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "3I4lTfQkwL4xupKrG5owt1", - "title": "Кино", - "artists": [ - "Park17" - ], - "album": "Russian Tour 2", - "duration_ms": 157413, - "isrc": "CH6541741437" - }, - "qobuz_id": 292058730, - "score": 10, - "query": "Кино Park17", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "3uuZgHc57MBoBchsETeecJ", - "title": "Holod", - "artists": [ - "Super Besse" - ], - "album": "63610*", - "duration_ms": 292235, - "isrc": "LVL151500929" - }, - "qobuz_id": 299657611, - "score": 34.5, - "query": "Holod Super Besse", - "reason": "best score 34.5 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5SsXn3hZTWcdhiaKHfpGIq", - "title": "Tak Silno", - "artists": [ - "Super Besse" - ], - "album": "63610*", - "duration_ms": 174866, - "isrc": "LVL151500936" - }, - "qobuz_id": 299657608, - "score": 35.42857142857143, - "query": "Tak Silno Super Besse", - "reason": "best score 35.4 below threshold", - "matched": false - }, - { - "source": { - "source_id": "4pWK4Tahr0t9O634o5wEbb", - "title": "Vsegda", - "artists": [ - "Super Besse" - ], - "album": "La Nuit*", - "duration_ms": 205613, - "isrc": "LVL151703647" - }, - "qobuz_id": 299657605, - "score": 24.954545454545453, - "query": "Vsegda Super Besse", - "reason": "best score 25.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5drVao1HHDRtTDC95myqTt", - "title": "Танцы по расчету", - "artists": [ - "Buerak" - ], - "album": "Танцы по расчету", - "duration_ms": 182000, - "isrc": "FR59R1680938" - }, - "qobuz_id": 131330839, - "score": 10, - "query": "Танцы по расчету Buerak", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5ppnI5PHYFZiTdFK8jqmF7", - "title": "Кожаные туфли", - "artists": [ - "Buerak" - ], - "album": "Танцы по расчету", - "duration_ms": 164136, - "isrc": "FR59R1680935" - }, - "qobuz_id": 131330836, - "score": 10, - "query": "Кожаные туфли Buerak", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "37BoCrCwmSOUcO2jwB7g5W", - "title": "На Заре", - "artists": [ - "Alyans" - ], - "album": "На Заре", - "duration_ms": 346427, - "isrc": "TCADW1853277" - }, - "qobuz_id": 201676764, - "score": 0, - "query": "На Заре Alyans", - "reason": "best score 0.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "0Kcn4voMB1WVsBDv2RlYj9", - "title": "Expedicija", - "artists": [ - "Dzierzynski Bitz" - ], - "album": "I II III", - "duration_ms": 303361, - "isrc": "SEYOK1215285" - }, - "qobuz_id": 81745474, - "score": 14, - "query": "Expedicija Dzierzynski Bitz", - "reason": "best score 14.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5mqZLdS94QdjkJuErUXKpK", - "title": "Заткнись и держи меня за руку", - "artists": [ - "RSAC", - "Shura Kuznetsova" - ], - "album": "Голые факты", - "duration_ms": 220000, - "isrc": "FR10S1855845" - }, - "qobuz_id": 241690394, - "score": 0, - "query": "Заткнись и держи меня за руку RSAC", - "reason": "best score 0.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "3p4CxmNbNcww33DhEHev0f", - "title": "Prime Time", - "artists": [ - "CREAM SODA", - "LAUD" - ], - "album": "Prime Time", - "duration_ms": 209280, - "isrc": "FR59R1812846", - "explicit": true - }, - "qobuz_id": 131792159, - "score": 25, - "query": "Prime Time CREAM SODA", - "reason": "best score 25.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6NtmAiGDvlVuWM2Jw2wf7Q", - "title": "SSSR", - "artists": [ - "Anons" - ], - "album": "Want to Know Everything", - "duration_ms": 268016, - "isrc": "USWMA9008851" - }, - "qobuz_id": 231837430, - "score": 7.142857142857142, - "query": "SSSR Anons", - "reason": "best score 7.1 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5y9axyAdjPQIOO356S33vJ", - "title": "23:45", - "artists": [ - "Advokaty" - ], - "album": "Russian Tour 3", - "duration_ms": 208509, - "isrc": "CH6541867631" - }, - "qobuz_id": 336489236, - "score": 25, - "query": "23:45 Advokaty", - "reason": "best score 25.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "2qgbt9DvjeRUWtYm4nTnZu", - "title": "Твердые Лбы", - "artists": [ - "Budni" - ], - "album": "Russian Tour 2", - "duration_ms": 160313, - "isrc": "CH6541741440" - }, - "qobuz_id": 395462816, - "score": 4, - "query": "Твердые Лбы Budni", - "reason": "best score 4.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "1I2JYk9hEoolPjShRtpDBh", - "title": "Empty Bed", - "artists": [ - "Motorama" - ], - "album": "Alps", - "duration_ms": 204586, - "isrc": "FR59Y1300030" - }, - "qobuz_id": 87479237, + "qobuz_id": 68646740, "score": 35, - "query": "Empty Bed Motorama", + "query": "Apoligize", "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "3dquvbUxeduYIvwORkISfH", - "title": "Опять", + "source_id": "2muo3YkKa2LZwX2xkU6bpg", + "title": "Fine By Me (I'm Just Saying It's Fine By Me)", "artists": [ - "Junk Riot" + "The Worst Cover Band Of The World" ], - "album": "Бесполезная молодость", - "duration_ms": 179000, - "isrc": "QZ9Y21729731" + "album": "On Tour (Since More Than 100 Years and Locked Out of Heaven)", + "duration_ms": 172872, + "isrc": "USA561437026" }, - "qobuz_id": 80786498, - "score": 14, - "query": "Опять Junk Riot", - "reason": "best score 14.0 below threshold", + "qobuz_id": 20444451, + "score": 21.904761904761905, + "query": "Fine By Me (I'm Just Saying It's Fine By Me)", + "reason": "best score 21.9 below threshold", "matched": false }, { "source": { - "source_id": "2thHnXf9SagMyDk1DlEN6U", - "title": "Имя твоё", + "source_id": "1N4fwRGnq9Rt5F2LqU2oOY", + "title": "Just A Touch Of Your Love", "artists": [ - "Убийцы" + "Finn Pearce" ], - "album": "Гипноз", - "duration_ms": 205039, - "isrc": "QM4DW1731848", - "explicit": true + "album": "Just A Touch Of Your Love", + "duration_ms": 210038, + "isrc": "GB8KE1651983" }, - "qobuz_id": 36512547, - "score": 4, - "query": "Имя твоё Убийцы", - "reason": "best score 4.0 below threshold", + "qobuz_id": 93700402, + "score": 19.232804232804234, + "query": "Just A Touch Of Your Love", + "reason": "best score 19.2 below threshold", "matched": false }, { "source": { - "source_id": "1v9gs2Kw1P25N075Wm8Hoz", - "title": "Царь", + "source_id": "34xLCJSfCdBPcPxZTRezwS", + "title": "Dancing", "artists": [ - "Utro" + "Ray-X" ], - "album": "Third Album", - "duration_ms": 172591, - "isrc": "FR59Y1700032" + "album": "Dancing", + "duration_ms": 257071, + "isrc": "GBMA21979836" }, - "qobuz_id": 105754874, - "score": 30, - "query": "Царь Utro", - "reason": "best score 30.0 below threshold", + "qobuz_id": 47632918, + "score": 21.875, + "query": "Dancing", + "reason": "best score 21.9 below threshold", "matched": false }, { "source": { - "source_id": "16e7CE5sfrE0NdJ2dhNWBG", - "title": "Тот самый тип", + "source_id": "1hQ7Q2A8sUQKdFMizQHgXW", + "title": "Recognise (feat. Flynn) - Main Circus Extended Remix", "artists": [ - "Baron" + "Lost Frequencies", + "Flynn", + "Main Circus" ], - "album": "Тот самый тип", - "duration_ms": 180432, - "isrc": "RUA0G1800500" + "album": "Recognise (Remixes) (feat. Flynn)", + "duration_ms": 238560, + "isrc": "NLF711904697" }, - "qobuz_id": 217482832, - "score": 10, - "query": "Тот самый тип Baron", - "reason": "best score 10.0 below threshold", + "qobuz_id": 378122843, + "score": 34.46808510638298, + "query": "Recognise (feat. Flynn) - Main Circus Extended Remix Lost Frequencies", + "reason": "best score 34.5 below threshold", "matched": false }, { "source": { - "source_id": "3wOZBF7kZbAt05mnk6knJ1", - "title": "Ешь молись люби", + "source_id": "22SADv6NIazhnOs6b3iVpK", + "title": "Please Don't Stop The Music", "artists": [ - "Baron" + "United Ibiza DJs" ], - "album": "Ешь молись люби", - "duration_ms": 196540, - "isrc": "RUA0G1800131" + "album": "Club Dance Hits", + "duration_ms": 267600, + "isrc": "USA560897655" }, - "qobuz_id": 368365294, - "score": 10, - "query": "Ешь молись люби Baron", - "reason": "best score 10.0 below threshold", + "qobuz_id": 61185229, + "score": 32, + "query": "Please Don't Stop The Music United Ibiza DJs", + "reason": "best score 32.0 below threshold", "matched": false }, { "source": { - "source_id": "3Ij2OEpAefTAvc8WPooI4c", - "title": "Супервижен", + "source_id": "2MbXUD5CJVDd387gMJYrLm", + "title": "Shake It Off", "artists": [ - "Baron" + "Western Highs" ], - "album": "Брошены", - "duration_ms": 198036, - "isrc": "RUA0G1700255" + "album": "This Is Country 2014", + "duration_ms": 218000, + "isrc": "QMVRR1441221" }, - "qobuz_id": 114943547, - "score": 12.857142857142858, - "query": "Супервижен Baron", - "reason": "best score 12.9 below threshold", + "qobuz_id": 78245406, + "score": 35, + "query": "Shake It Off Western Highs", + "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "3OxAWksiB97snm2qs3iuFZ", - "title": "99", + "source_id": "2dpaYNEQHiRxtZbfNsse99", + "title": "Happier", "artists": [ - "Baron" + "Marshmello", + "Bastille" ], - "album": "99", - "duration_ms": 228000, - "isrc": "QM4DW1768912" + "album": "Happier", + "duration_ms": 214289, + "isrc": "USUG11801651" }, - "qobuz_id": 61300874, - "score": 19, - "query": "99 Baron", - "reason": "best score 19.0 below threshold", + "qobuz_id": 390277048, + "score": 35, + "query": "Happier Marshmello", + "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "0Fl6sZArNGPIgsSDzn1sBQ", - "title": "Flame", + "source_id": "2Rk4JlNc2TPmZe2af99d45", + "title": "ME! (feat. Brendon Urie of Panic! At The Disco)", "artists": [ - "SUPERNOVA 1006" + "Taylor Swift", + "Brendon Urie", + "Panic! At The Disco" ], - "album": "Critical Distance", - "duration_ms": 222000, - "isrc": "QM2PV1803134" + "album": "Lover", + "duration_ms": 193000, + "isrc": "USUG11901494" }, - "qobuz_id": 315564359, - "score": 30, - "query": "Flame SUPERNOVA 1006", - "reason": "best score 30.0 below threshold", + "qobuz_id": 61393762, + "score": 32.14285714285714, + "query": "ME! (feat. Brendon Urie of Panic! At The Disco) Taylor Swift", + "reason": "best score 32.1 below threshold", "matched": false }, { "source": { - "source_id": "1q54djpymIN8FARVpvRCSE", - "title": "You Can't Leave Me", + "source_id": "44vb1ThcYO209aj7ogjQll", + "title": "Skyfall (James Bond)", "artists": [ - "Hut" + "joc.sco" ], - "album": "One Way Ticket", - "duration_ms": 240080, - "isrc": "TCACG1537634" + "album": "You Gotta Get Up And Try (Pink Covers, Etc)", + "duration_ms": 266580, + "isrc": "TCABK1258252" }, - "qobuz_id": 30867560, - "score": 29, - "query": "You Can't Leave Me Hut", - "reason": "best score 29.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "52dq5l1egWYYEAvpnalgDa", - "title": "Табачный дым", - "artists": [ - "Группа Хмурый" - ], - "album": "Картина 2, No. 17/5", - "duration_ms": 139200, - "isrc": "RUA1H1757830" - }, - "qobuz_id": 113191986, - "score": -6, - "query": "Табачный дым Группа Хмурый", - "reason": "best score -6.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5TrxtBaPintomyX7fkhjbM", - "title": "Первые на первом", - "artists": [ - "ЩЕНКИ" - ], - "album": "ЩЕНКИ", - "duration_ms": 207529, - "isrc": "QM4TW1764713" - }, - "qobuz_id": 392222700, - "score": 10, - "query": "Первые на первом", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6cqoszHhE7NyeVZ79ECNli", - "title": "Humaths", - "artists": [ - "SUPERNOVA 1006" - ], - "album": "Blackout", - "duration_ms": 158000, - "isrc": "QZARB1887216" - }, - "qobuz_id": 315564362, - "score": 30, - "query": "Humaths SUPERNOVA 1006", - "reason": "best score 30.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "5bhiXsmluzPoPtFzajpF93", - "title": "Мой день - твой день", - "artists": [ - "Ритуальные Услуги" - ], - "album": "Типичный запрос в психологию", - "duration_ms": 134577, - "isrc": "RUA1D1823466" - }, - "qobuz_id": 294099266, - "score": 7, - "query": "Мой день - твой день", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "1heMZpByfWQ7pG2QkV9cPx", - "title": "Krug", - "artists": [ - "Super Besse" - ], - "album": "La Nuit*", - "duration_ms": 210233, - "isrc": "LVL151703643" - }, - "qobuz_id": 200433446, + "qobuz_id": 7843392, "score": 25, - "query": "Krug", + "query": "Skyfall (James Bond) joc.sco", "reason": "best score 25.0 below threshold", "matched": false }, { "source": { - "source_id": "3R3dkRhRH1irtOnaVjBppQ", - "title": "Бластеры", + "source_id": "0W7rLhxwzFhyPFlMXj72en", + "title": "I Want It I Got It", "artists": [ - "Твоё далеко" + "Areena Grane" ], - "album": "Бластеры", - "duration_ms": 202359, - "isrc": "TCACN1647071" + "album": "I Want It I Got It", + "duration_ms": 171428, + "isrc": "AUXN21905225" }, - "qobuz_id": 310110626, - "score": 10, - "query": "Бластеры Твоё далеко", - "reason": "best score 10.0 below threshold", + "qobuz_id": 268504360, + "score": 22.971428571428568, + "query": "I Want It I Got It Areena Grane", + "reason": "best score 23.0 below threshold", "matched": false }, { "source": { - "source_id": "6vaXaOWxfwlwL7pxnL3myK", - "title": "Холод", + "source_id": "605ivNY8wLDWOW8ZKs32qW", + "title": "Afro Circus Polkadot - Ricardo Autobahn Remix", "artists": [ - "Ploho" + "Cotton \u0026 Gin" ], - "album": "Куда птицы улетают умирать", - "duration_ms": 137000, - "isrc": "QZ5AB1880115" + "album": "Ninthwave Annual 2013", + "duration_ms": 206813, + "isrc": "USFXJ1200098" }, - "qobuz_id": 94071847, - "score": 30, - "query": "Холод Ploho", + "qobuz_id": 95711025, + "score": 22.009966777408636, + "query": "Afro Circus Polkadot - Ricardo Autobahn Remix", + "reason": "best score 22.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7rXzjQUI4Kcbfi8HeOODmN", + "title": "Rise", + "artists": [ + "Will Shepard" + ], + "album": "Rise", + "duration_ms": 190181, + "isrc": "GBMA21802305" + }, + "qobuz_id": 46264844, + "score": 25, + "query": "Rise", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5ONqIYafB41sgReibAkY6c", + "title": "Around the World (La La La La) - Single Edit", + "artists": [ + "Kompulsor" + ], + "album": "Around the World (La La La La)", + "duration_ms": 224223, + "isrc": "DET190801479" + }, + "qobuz_id": 126459791, + "score": 30.041666666666664, + "query": "Around the World (La La La La) - Single Edit Kompulsor", "reason": "best score 30.0 below threshold", "matched": false }, { "source": { - "source_id": "0GeSAsdyKWMfeKtTtJPAqA", - "title": "GRUZOVIK", + "source_id": "2oT06nf70iHViRe5VCDc96", + "title": "Apologize", "artists": [ - "YOURA" + "Gavin Wrong" ], - "album": "PLAN Б", - "duration_ms": 207360, - "isrc": "FR2X41966602" + "album": "Am I Right", + "duration_ms": 195600, + "isrc": "QMFMG1428058" }, - "qobuz_id": 274185562, - "score": 30, - "query": "GRUZOVIK YOURA", - "reason": "best score 30.0 below threshold", + "qobuz_id": 58507641, + "score": 32, + "query": "Apologize", + "reason": "best score 32.0 below threshold", "matched": false }, { "source": { - "source_id": "4LDVgGDj361O8QodPaPftV", - "title": "Советский Парфюм", + "source_id": "0yxMGwklh30uVaqpSIISuN", + "title": "Gimme Gimme Gimme (A Man After Midnight) [In the Style of Abba] - Demo Vocal Version", "artists": [ - "Buerak" + "ProSource Karaoke" ], - "album": "Корни", - "duration_ms": 154105, - "isrc": "FR59R1663043" + "album": "Gimme Gimme Gimme (A Man After Midnight) [In the Style of Abba] [Karaoke Version] - Single", + "duration_ms": 277498, + "isrc": "US8K20922834" }, - "qobuz_id": 336327860, + "qobuz_id": 51060880, + "score": 16.967032967032964, + "query": "Gimme Gimme Gimme (A Man After Midnight) [In the Style of Abba] - Demo Vocal Version ProSource Karaoke", + "reason": "best score 17.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "79jgNFaBCgloYdPhdDRAvG", + "title": "Dont Wake Me Up", + "artists": [ + "Jason Chen" + ], + "album": "The Covers, Vol. 5", + "duration_ms": 224607, + "isrc": "TCABH1226939" + }, + "qobuz_id": 6029764, + "score": 26.875, + "query": "Dont Wake Me Up Jason Chen", + "reason": "best score 26.9 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5vUVe1o9MvB6161zjXlMxc", + "title": "How Far I'll Go", + "artists": [ + "Da Tweekaz" + ], + "album": "How Far I'll Go", + "duration_ms": 260372, + "isrc": "BEB681700164" + }, + "qobuz_id": 141920277, + "score": 19, + "query": "How Far I'll Go Da Tweekaz", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6m1hYbfABsUSL3c7QFRBxB", + "title": "Without Me", + "artists": [ + "Alec Chambers" + ], + "album": "Covers", + "duration_ms": 116506, + "isrc": "QZES61832018", + "explicit": true + }, + "qobuz_id": 157440681, + "score": 35, + "query": "Without Me Alec Chambers", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0ANB1jNBIqz6f53qemiRP9", + "title": "Sugar", + "artists": [ + "Isaac Riley" + ], + "album": "Sugar", + "duration_ms": 221097, + "isrc": "DEZ921500472" + }, + "qobuz_id": 18909909, + "score": 25, + "query": "Sugar", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6BAnxKyld909yo6Pk1DO3r", + "title": "Hello", + "artists": [ + "OMFG" + ], + "album": "Hello", + "duration_ms": 226307, + "isrc": "TCACC1430912" + }, + "qobuz_id": 320759723, + "score": 35, + "query": "Hello OMFG", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3vosNWlFmG5vUV8VepHDlc", + "title": "Ellie", + "artists": [ + "Regi", + "Jake Reese" + ], + "album": "Ellie", + "duration_ms": 164928, + "isrc": "BEK011800111" + }, + "qobuz_id": 31613439, "score": 7, - "query": "Советский Парфюм Buerak", + "query": "Ellie Regi", "reason": "best score 7.0 below threshold", "matched": false }, { "source": { - "source_id": "0pF7OVyZvxN14uhW0gLwVA", - "title": "Оттаявшее Окно", + "source_id": "3CLd7BfvgsBwBUI8kwFLU6", + "title": "iSpy (feat. Kodak Black)", "artists": [ - "Buerak" + "KYLE", + "Kodak Black" ], - "album": "Зимние Песни", - "duration_ms": 160000, - "isrc": "FR59R1663042" + "album": "iSpy (feat. Kodak Black)", + "duration_ms": 227778, + "isrc": "USAT21701659", + "explicit": true }, - "qobuz_id": 316682592, - "score": 10, - "query": "Оттаявшее Окно Buerak", - "reason": "best score 10.0 below threshold", + "qobuz_id": 41531727, + "score": 43.77777777777778, + "query": "iSpy (feat. Kodak Black) KYLE", + "reason": "best score 43.8 below threshold", "matched": false }, { "source": { - "source_id": "3DcWzszZd6H3sSKqkKdcas", - "title": "Скорость", + "source_id": "4kzhGAkVWcsKQoj0F4gcOg", + "title": "The World", "artists": [ - "Model Povedenia" + "Babalos" ], - "album": "Скорость", - "duration_ms": 213390, - "isrc": "FRX201722617" + "album": "The World", + "duration_ms": 298385, + "isrc": "QZFYX1991207" }, - "qobuz_id": 264532032, + "qobuz_id": 360303249, + "score": 9.795454545454547, + "query": "The World", + "reason": "best score 9.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4EDnXPt4LiqknZ2ClpIzXU", + "title": "Boulevard of Broken Dreams", + "artists": [ + "Codfish" + ], + "album": "Boulevard of Broken Dreams", + "duration_ms": 132080, + "isrc": "QZHN81959181" + }, + "qobuz_id": 74088158, + "score": 19, + "query": "Boulevard of Broken Dreams Codfish", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "755inykyaG4w22GWAsA3MX", + "title": "Marlboro Nights", + "artists": [ + "Lonely God" + ], + "album": "Marlboro Nights", + "duration_ms": 68522, + "isrc": "GBSMU5360586" + }, + "qobuz_id": 215208375, + "score": 19, + "query": "Marlboro Nights", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4hPpVbbakQNv8YTHYaOJP4", + "title": "One Thing Right", + "artists": [ + "Marshmello", + "Kane Brown" + ], + "album": "One Thing Right", + "duration_ms": 181823, + "isrc": "US6XF1800275" + }, + "qobuz_id": 142192124, + "score": 35, + "query": "One Thing Right", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0QfmQhr5npxuWQ4zzUDUhB", + "title": "Just A Dream", + "artists": [ + "Kurt Hugo Schneider", + "Christina Grimmie", + "Sam Tsui" + ], + "album": "Just A Dream", + "duration_ms": 263597, + "isrc": "GBDMT1700438" + }, + "qobuz_id": 45998172, + "score": 32, + "query": "Just A Dream Kurt Hugo Schneider", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "03IP1LeIKEZevgyTT2FK3n", + "title": "Potential Breakup Song", + "artists": [ + "Ashley Price" + ], + "album": "Potential Breakup Song", + "duration_ms": 217837, + "isrc": "GBLFP2116448" + }, + "qobuz_id": 54289173, + "score": 35, + "query": "Potential Breakup Song Ashley Price", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6sgc0MAh3TPt00HVvkzv1O", + "title": "Mistakes", + "artists": [ + "Used" + ], + "album": "Mistakes", + "duration_ms": 285257, + "isrc": "QZF8N1865984" + }, + "qobuz_id": 396552450, + "score": 19, + "query": "Mistakes Used", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "01JTIxY5ezpmY8YBMLN13s", + "title": "Can't Get You Out Of My Head", + "artists": [ + "Furkan Sahin", + "LANNÉ" + ], + "album": "Can't Get You Out Of My Head", + "duration_ms": 173333, + "isrc": "QM42K1925631" + }, + "qobuz_id": 134684337, + "score": 25, + "query": "Can't Get You Out Of My Head Furkan Sahin", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6KigD0mlF4VGDYiSEzAyYw", + "title": "Fight Back", + "artists": [ + "NEFFEX" + ], + "album": "Fight Back: The Collection", + "duration_ms": 200571, + "isrc": "TCADI1704435", + "explicit": true + }, + "qobuz_id": 238137603, + "score": 34.08333333333333, + "query": "Fight Back NEFFEX", + "reason": "best score 34.1 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7F9JEUSWBBzrByXA3FszFX", + "title": "Shine", + "artists": [ + "Elgate feat. Spektrem" + ], + "album": "Shine", + "duration_ms": 228675, + "isrc": "GMBA21485634" + }, + "qobuz_id": 127402255, + "score": 19, + "query": "Shine", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1e6aAbWR0MXCNcr4yQovNr", + "title": "Grateful", + "artists": [ + "NEFFEX" + ], + "album": "Grateful", + "duration_ms": 182400, + "isrc": "TCADN1802626" + }, + "qobuz_id": 61292674, + "score": 32, + "query": "Grateful", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7wOqBOryVGD3nqDUihDSwL", + "title": "Rumors", + "artists": [ + "NEFFEX" + ], + "album": "Rumors", + "duration_ms": 247607, + "isrc": "TCADA1762534" + }, + "qobuz_id": 355584197, "score": 27, - "query": "Скорость Model Povedenia", + "query": "Rumors NEFFEX", "reason": "best score 27.0 below threshold", "matched": false }, { "source": { - "source_id": "1kE0WRvNQy0eeMEY0TXPkm", - "title": "Рыбы", + "source_id": "5BuiZmp7H6hoUN5Fw2lUIp", + "title": "Nothing Stopping Me (feat. Kat Nestel)", "artists": [ - "Model Povedenia" + "Vicetone", + "Kat Nestel" ], - "album": "Кому Что", - "duration_ms": 316341, - "isrc": "USCGJ1677669" + "album": "Nothing Stopping Me (feat. Kat Nestel)", + "duration_ms": 223225, + "isrc": "QMQCS1500002" }, - "qobuz_id": 371229610, - "score": 7, - "query": "Рыбы", - "reason": "best score 7.0 below threshold", + "qobuz_id": 356431741, + "score": 30.714285714285715, + "query": "Nothing Stopping Me (feat. Kat Nestel) Vicetone", + "reason": "best score 30.7 below threshold", "matched": false }, { "source": { - "source_id": "61mmfJ6iPzjMyxjIhUzJnw", - "title": "Твоя Россия", + "source_id": "2kmWfYjBR2dgAbB4ZBF9bT", + "title": "Cold", "artists": [ - "RSAC" + "NEFFEX" ], - "album": "Голые факты", - "duration_ms": 265511, - "isrc": "FR10S1855841" + "album": "Destiny: The Collection", + "duration_ms": 186240, + "isrc": "TCADO1880366" }, - "qobuz_id": 225588742, - "score": 14, - "query": "Твоя Россия RSAC", - "reason": "best score 14.0 below threshold", + "qobuz_id": 192467397, + "score": 22.5, + "query": "Cold NEFFEX", + "reason": "best score 22.5 below threshold", "matched": false }, { "source": { - "source_id": "1xn5AaQYSgGGX7ddSUKgjn", - "title": "Первая жизнь", + "source_id": "6xbZaeFj8BPE3HGXF7VVjX", + "title": "Soldier", "artists": [ - "Пожар" + "NEFFEX" ], - "album": "Первая жизнь", - "duration_ms": 240000, - "isrc": "GBKPL1822394" - }, - "qobuz_id": 262383784, - "score": 4, - "query": "Первая жизнь", - "reason": "best score 4.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "16rO0ucE26IeizQNMwL8kS", - "title": "Прыгай за руки держась", - "artists": [ - "8(913)" - ], - "album": "Новая школа русского рока", - "duration_ms": 154043, - "isrc": "USHM81825341" - }, - "qobuz_id": 174060261, - "score": 14, - "query": "Прыгай за руки держась 8(913)", - "reason": "best score 14.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6tsJz6CSWOlN2j7UL3RDM8", - "title": "Дорога в парк", - "artists": [ - "Model Povedenia", - "Рома Красенглаз" - ], - "album": "Ночные ошибки", - "duration_ms": 243998, - "isrc": "FR59R1781446" - }, - "qobuz_id": 337180042, - "score": 10, - "query": "Дорога в парк Model Povedenia", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "054YDVvc7C6Ut9j3Vwljmd", - "title": "Странный рассказ", - "artists": [ - "ОБРАЗ" - ], - "album": "10", - "duration_ms": 184000, - "isrc": "RUA1D1827015" - }, - "qobuz_id": 187041760, - "score": 10, - "query": "Странный рассказ ОБРАЗ", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6oArqallSI5hwKfvDoJZzi", - "title": "Yunost", - "artists": [ - "Stereoyunost" - ], - "album": "Ritm Vremeni", - "duration_ms": 434823, - "isrc": "DEAR41520226" - }, - "qobuz_id": 49549954, - "score": 19, - "query": "Yunost Stereoyunost", - "reason": "best score 19.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6kYY4INcVwB2iPqMYtDY9x", - "title": "23", - "artists": [ - "Baron" - ], - "album": "Давай лучше не знать, что ждет нас дальше", - "duration_ms": 185458, - "isrc": "RUA0G1900792", + "album": "Fight Back: The Collection", + "duration_ms": 216000, + "isrc": "TCADH1724245", "explicit": true }, - "qobuz_id": 302433331, - "score": 14.185185185185185, - "query": "23 Baron", - "reason": "best score 14.2 below threshold", + "qobuz_id": 131657272, + "score": 19.11764705882353, + "query": "Soldier NEFFEX", + "reason": "best score 19.1 below threshold", "matched": false }, { "source": { - "source_id": "4lGbFe3ttwMOh8LSXuxlGS", - "title": "2077", + "source_id": "61RsA1VPJu0JFVsxMxwW6b", + "title": "Careless", "artists": [ - "Встречные" + "NEFFEX" ], - "album": "Первому игроку успокоиться", - "duration_ms": 181746, - "isrc": "RUA1D1827669" + "album": "Careless", + "duration_ms": 296800, + "isrc": "TCADC1765012" }, - "qobuz_id": 239071425, - "score": 19, - "query": "2077 Встречные", - "reason": "best score 19.0 below threshold", + "qobuz_id": 17790863, + "score": 22.5, + "query": "Careless", + "reason": "best score 22.5 below threshold", "matched": false }, { "source": { - "source_id": "4JslcpcH003rVxrledLkEt", - "title": "Работа", + "source_id": "6e6H00s0e2cZayrnBbvPsv", + "title": "Flirt", "artists": [ - "The Violent Youth" + "NEFFEX" ], - "album": "Distant", - "duration_ms": 135186, - "isrc": "AEA0D1940133" + "album": "Flirt", + "duration_ms": 159375, + "isrc": "TCADH1750644" }, - "qobuz_id": 210826659, - "score": 14, - "query": "Работа The Violent Youth", - "reason": "best score 14.0 below threshold", + "qobuz_id": 57225500, + "score": 35, + "query": "Flirt", + "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "3FOKbB3b1v9Aiv6BXwzFHM", - "title": "Your Mess", + "source_id": "5pYlc1vQ6999WU43WzF4SR", + "title": "Barbra Streisand (Radio Edit)", "artists": [ - "SUPERNOVA 1006" + "Duck Sauce" ], - "album": "Technical Support", - "duration_ms": 185374, - "isrc": "QZES71995874" + "album": "Barbra Streisand", + "duration_ms": 194531, + "isrc": "GBSXS1000131" }, - "qobuz_id": 227081536, - "score": 21.32142857142857, - "query": "Your Mess SUPERNOVA 1006", - "reason": "best score 21.3 below threshold", + "qobuz_id": 310053722, + "score": 20.444444444444443, + "query": "Barbra Streisand (Radio Edit) Duck Sauce", + "reason": "best score 20.4 below threshold", "matched": false }, { "source": { - "source_id": "1hJXxEdCJW5GAvZ2I9ixwY", - "title": "Electroenergy", + "source_id": "4oKgYmrKO4JLyUCfOXowJj", + "title": "Radio Hardcore - Nightcore Edit", "artists": [ - "The End of Electronics" + "ItaloBrothers" ], - "album": "Electroenergy", - "duration_ms": 239200, - "isrc": "QZFZ71977210" + "album": "Nightcore", + "duration_ms": 151252, + "isrc": "DEHK91586943" }, - "qobuz_id": 267653933, - "score": 14, - "query": "Electroenergy The End of Electronics", - "reason": "best score 14.0 below threshold", + "qobuz_id": 54846082, + "score": 30.58620689655173, + "query": "Radio Hardcore - Nightcore Edit ItaloBrothers", + "reason": "best score 30.6 below threshold", "matched": false }, { "source": { - "source_id": "1CXFNlanFFOecNi82dy7xD", - "title": "Serdze", + "source_id": "4fXGWiVhlOLdhwRDP6pIFG", + "title": "Lemon Tree", "artists": [ - "Leto V Gorode" + "Fools Garden" ], - "album": "2", - "duration_ms": 250222, - "isrc": "QZES81864207" + "album": "Dish Of The Day", + "duration_ms": 191026, + "isrc": "DEAF70927221" }, - "qobuz_id": 72884675, - "score": 14, - "query": "Serdze Leto V Gorode", - "reason": "best score 14.0 below threshold", + "qobuz_id": 387769459, + "score": 41.666666666666664, + "query": "Lemon Tree Fools Garden", + "reason": "best score 41.7 below threshold", "matched": false }, { "source": { - "source_id": "4alnnfmKOcfg1gbojoLJb0", - "title": "Место наших встреч", + "source_id": "1liMtgSjJsxY3s53p2vpfM", + "title": "Purge", "artists": [ - "Англия" + "Josh A", + "iamjakehill" ], - "album": "Тепло от холодных рук", - "duration_ms": 215406, - "isrc": "RUA1D1902135" - }, - "qobuz_id": 234140094, - "score": 10, - "query": "Место наших встреч Англия", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "3VTTpPfkuB5Zr2ZLxeFzMG", - "title": "Лударь", - "artists": [ - "Убийцы" - ], - "album": "Убийцы", - "duration_ms": 161685, - "isrc": "QZ22B1966616", + "album": "Better Off Dead III", + "duration_ms": 156458, + "isrc": "UST8K1887833", "explicit": true }, - "qobuz_id": 152131595, - "score": 10, - "query": "Лударь Убийцы", - "reason": "best score 10.0 below threshold", + "qobuz_id": 151350522, + "score": 35, + "query": "Purge", + "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "6ncUiDhR3inz0U0cpgC0fF", - "title": "ACTIVITY", + "source_id": "6VlxdfLIfqf7saVOuerWyR", + "title": "A Million Voices", "artists": [ - "YOURA" + "Polina Gagarina" ], - "album": "ACTIVITY", - "duration_ms": 249678, - "isrc": "FR96X1981964" + "album": "A Million Voices", + "duration_ms": 180381, + "isrc": "RUB421800687" }, - "qobuz_id": 130812390, - "score": 13.214285714285715, - "query": "ACTIVITY", - "reason": "best score 13.2 below threshold", + "qobuz_id": 113837457, + "score": 24.86904761904762, + "query": "A Million Voices Polina Gagarina", + "reason": "best score 24.9 below threshold", "matched": false }, { "source": { - "source_id": "7gNDoczqxYznKEIDrY1mp8", - "title": "Proletarian Gothic", + "source_id": "5ihbWbVjMJp7LH1B4nqYMV", + "title": "Good Game", "artists": [ - "The End of Electronics" + "Kiss Kanoo" ], - "album": "Proletarian Gothic", - "duration_ms": 213333, - "isrc": "QZHN91934317" + "album": "Good Game", + "duration_ms": 175881, + "isrc": "GBKPL2168607" }, - "qobuz_id": 270913540, - "score": 42.64285714285714, - "query": "Proletarian Gothic The End of Electronics", - "reason": "best score 42.6 below threshold", + "qobuz_id": 344487965, + "score": 25, + "query": "Good Game", + "reason": "best score 25.0 below threshold", "matched": false }, { "source": { - "source_id": "0xiO0Gt1jEcAF3VPVf4pOr", - "title": "Юдоль Печали", + "source_id": "0lxnARqvcXiv7Cd4IJiiST", + "title": "Dear God", "artists": [ - "Порез на Собаке" + "Confetti" ], - "album": "Фегивербе", - "duration_ms": 279336, - "isrc": "RUA0G1900406" + "album": "Dear God", + "duration_ms": 202257, + "isrc": "NLS6R1869070", + "explicit": true }, - "qobuz_id": 293357404, - "score": 10, - "query": "Юдоль Печали Порез на Собаке", - "reason": "best score 10.0 below threshold", + "qobuz_id": 89069689, + "score": 32, + "query": "Dear God Confetti", + "reason": "best score 32.0 below threshold", "matched": false }, { "source": { - "source_id": "0h1Q54bnxYPIH8wM9KZP0V", - "title": "8080", + "source_id": "7CS7aBcrABHsODxUncQ4ZU", + "title": "Suicide Forest", "artists": [ - "Priroda" + "Josh A", + "iamjakehill" ], - "album": "Ада", - "duration_ms": 198857, - "isrc": "QZGLM1929078" + "album": "Chaos", + "duration_ms": 180004, + "isrc": "TCADL1877221", + "explicit": true }, - "qobuz_id": 301455022, - "score": 29, - "query": "8080 Priroda", - "reason": "best score 29.0 below threshold", + "qobuz_id": 89008641, + "score": 14.5, + "query": "Suicide Forest Josh A", + "reason": "best score 14.5 below threshold", "matched": false }, { "source": { - "source_id": "64xPmRyF9zySyWKewmeGWE", - "title": "Туманный день", + "source_id": "6jkpnvfMM9pEWYe68yNIYt", + "title": "dying lately", "artists": [ - "Весна 310" + "iamjakehill" ], - "album": "Минувших дней память", - "duration_ms": 209552, - "isrc": "QZGLM1983171" + "album": "dying lately", + "duration_ms": 221147, + "isrc": "QZNWU2059316" }, - "qobuz_id": 341600033, - "score": 14, - "query": "Туманный день Весна 310", - "reason": "best score 14.0 below threshold", + "qobuz_id": 244105339, + "score": 20, + "query": "dying lately iamjakehill", + "reason": "best score 20.0 below threshold", "matched": false }, { "source": { - "source_id": "4aj7f1GfDhufVkNZPzMl62", - "title": "Открывая путь в космос", + "source_id": "3msrFqORuvAmthIlioUmMQ", + "title": "Anarchy Acres", "artists": [ - "Весна 310" + "Josh A", + "iamjakehill" ], - "album": "По проспектам", - "duration_ms": 253800, - "isrc": "QZGLM1983078" + "album": "Chaos", + "duration_ms": 183640, + "isrc": "TCADL1877211", + "explicit": true }, - "qobuz_id": 299092113, - "score": 0, - "query": "Открывая путь в космос Весна 310", - "reason": "best score 0.0 below threshold", + "qobuz_id": 133358926, + "score": 27, + "query": "Anarchy Acres Josh A", + "reason": "best score 27.0 below threshold", "matched": false }, { "source": { - "source_id": "40FVkBiYJLHeuzq9SfOXKV", - "title": "Безмятежность", + "source_id": "3fE8njy5zdZZCucQbDkxkW", + "title": "OXYGIN", "artists": [ - "Весна 310" + "Witt Lowry" ], - "album": "Минувших дней память", - "duration_ms": 148374, - "isrc": "QZGLM1983177" + "album": "NEVERS ROAD", + "duration_ms": 241548, + "isrc": "TCAEK1907597", + "explicit": true }, - "qobuz_id": 341600033, + "qobuz_id": 188381305, "score": 30, - "query": "Безмятежность Весна 310", + "query": "OXYGIN Witt Lowry", "reason": "best score 30.0 below threshold", "matched": false }, { "source": { - "source_id": "39U2N0ZBsT7FZE8ur4xMzH", - "title": "Уединение", + "source_id": "1zKOagmkCtXuGmCivG8HZE", + "title": "Icee Pop", "artists": [ - "луноберег" + "Nic D" ], - "album": "Видение", - "duration_ms": 161149, - "isrc": "AEA0Q1908871" + "album": "Icee Pop", + "duration_ms": 147555, + "isrc": "QZK6G2166348" }, - "qobuz_id": 276292096, - "score": 0, - "query": "Уединение луноберег", - "reason": "best score 0.0 below threshold", + "qobuz_id": 287112377, + "score": 29, + "query": "Icee Pop Nic D", + "reason": "best score 29.0 below threshold", "matched": false }, { "source": { - "source_id": "4LDKYR393AY0L7nna2LIBK", - "title": "Загадка", + "source_id": "5hMW5O2b6oOVjthMc9StPy", + "title": "poison ivy", "artists": [ - "Время Акаций" + "Heroine Diaries", + "Grimori" ], - "album": "Межзвёздная экспедиция", - "duration_ms": 216000, - "isrc": "AEA0D1913736" + "album": "poison ivy", + "duration_ms": 108813, + "isrc": "QZDA82256564", + "explicit": true }, - "qobuz_id": 151917818, + "qobuz_id": 363140242, + "score": 32, + "query": "poison ivy Heroine Diaries", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "55Fpeuuc2sbQiy74eA1gTt", + "title": "Wolf in Sheep's Clothing", + "artists": [ + "Set It Off", + "William Beckett" + ], + "album": "Duality", + "duration_ms": 187880, + "isrc": "ITH711400134", + "explicit": true + }, + "qobuz_id": 77870541, + "score": 44.708333333333336, + "query": "Wolf in Sheep's Clothing Set It Off", + "reason": "best score 44.7 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1RBIGYCOODfL5fJ8f9pGrZ", + "title": "idewk", + "artists": [ + "antonvstheworld" + ], + "album": "idewk", + "duration_ms": 178490, + "isrc": "QZHN42006358", + "explicit": true + }, + "qobuz_id": 49488980, "score": 10, - "query": "Загадка Время Акаций", + "query": "idewk antonvstheworld", "reason": "best score 10.0 below threshold", "matched": false }, { "source": { - "source_id": "495DM35lETVDpYhbHZ24T1", - "title": "Sea of Moscow", + "source_id": "3vlvl1MvSdgNJeQt7mF4mX", + "title": "Bury a Friend", "artists": [ - "Pioneerball" + "robert." ], - "album": "Sea of Moscow", - "duration_ms": 297122, - "isrc": "DEH741804501" + "album": "Bury a Friend", + "duration_ms": 192315, + "isrc": "GBKPL1951498" }, - "qobuz_id": 151920084, + "qobuz_id": 77469843, + "score": 35, + "query": "Bury a Friend", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1Fo1bfUlQA5DbN6l67U9QD", + "title": "Graveyard (Acoustic)", + "artists": [ + "FRND" + ], + "album": "Adventures of the FRNDship: Issue One (Acoustic)", + "duration_ms": 136102, + "isrc": "QM24S1925153" + }, + "qobuz_id": 102368074, "score": 19, - "query": "Sea of Moscow Pioneerball", + "query": "Graveyard (Acoustic) FRND", "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "3fHy2yuVB41WJM1kaEHY5R", - "title": "В леса", + "source_id": "0u6STd9K8a5rbfXsxWefN7", + "title": "Anxiety", "artists": [ - "Priroda" + "MNNX" ], - "album": "Ада", - "duration_ms": 127304, - "isrc": "QZGLM1929072" + "album": "Anxiety", + "duration_ms": 183185, + "isrc": "QZDA81984628", + "explicit": true }, - "qobuz_id": 367392430, - "score": 10, - "query": "В леса Priroda", - "reason": "best score 10.0 below threshold", + "qobuz_id": 320231920, + "score": 19, + "query": "Anxiety", + "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "6WSYfybMYzx2JmFemGjVhB", - "title": "Niejeden", + "source_id": "0bZjnz2VrCe3gcNrw5dv2X", + "title": "Nice", "artists": [ - "Kult" + "Yung Xander" ], - "album": "Spokojnie", - "duration_ms": 261586, - "isrc": "PLE781200097" + "album": "Singles, Vol. 1", + "duration_ms": 176228, + "isrc": "QZES71903746", + "explicit": true }, - "qobuz_id": 392479154, + "qobuz_id": 296624465, + "score": 16.25, + "query": "Nice Yung Xander", + "reason": "best score 16.2 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4RY7bKEvIfpEFOd8IcYCOa", + "title": "11:11 PM", + "artists": [ + "Pally Ray", + "Clizgad" + ], + "album": "11:11 PM", + "duration_ms": 178004, + "isrc": "QZHNB1909203", + "explicit": true + }, + "qobuz_id": 21499007, + "score": 32, + "query": "11:11 PM Pally Ray", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2tARS47Dee5iknqqyCmNlc", + "title": "Sharp Pain / Dull Ache", + "artists": [ + "Lil Xtra" + ], + "album": "Sharp Pain / Dull Ache", + "duration_ms": 170083, + "isrc": "QZNWZ2140074" + }, + "qobuz_id": 368145116, + "score": 19, + "query": "Sharp Pain / Dull Ache Lil Xtra", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5ZlXXKbW8WJKvL7ItcdOKB", + "title": "3 Types", + "artists": [ + "Kennedy" + ], + "album": "3 Types", + "duration_ms": 142195, + "isrc": "QZHN91997901" + }, + "qobuz_id": 77819833, + "score": 19, + "query": "3 Types", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3WG9iTfM8UKnh9Pmr7ygEV", + "title": "Switchblade", + "artists": [ + "neverwaves" + ], + "album": "Switchblade", + "duration_ms": 222000, + "isrc": "QZFZ52053467" + }, + "qobuz_id": 145844219, + "score": 19, + "query": "Switchblade neverwaves", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4xqfW239ESX3o6dc7jhZCb", + "title": "bad bad bad", + "artists": [ + "ash blakk" + ], + "album": "bad bad bad", + "duration_ms": 116869, + "isrc": "QZES72023309", + "explicit": true + }, + "qobuz_id": 49248991, "score": 8.166666666666666, - "query": "Niejeden", + "query": "bad bad bad ash blakk", "reason": "best score 8.2 below threshold", "matched": false }, { "source": { - "source_id": "44BuVyAMmkIHHtq8mxlwhA", - "title": "Группа крови", + "source_id": "1wU5II9aAYkd9MmcII1UBT", + "title": "Hope", "artists": [ - "Kino" + "Two:22" ], - "album": "Группа крови", - "duration_ms": 284002, - "isrc": "RUB421401310" + "album": "Eudaemonia", + "duration_ms": 195411, + "isrc": "QZDA41815502", + "explicit": true }, - "qobuz_id": 135489982, - "score": 7, - "query": "Группа крови", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "3mFRiJ6c2XXkd0Hd9qWP46", - "title": "Arahja", - "artists": [ - "Kult" - ], - "album": "Spokojnie", - "duration_ms": 220013, - "isrc": "PLE781200093" - }, - "qobuz_id": 179244208, + "qobuz_id": 103568567, "score": 19, - "query": "Arahja", + "query": "Hope", "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "279dZt9gv2kkXizN6EU8Ha", - "title": "Totalna stabilizacja", + "source_id": "0DznAouu4n8WKwaFDR5ai6", + "title": "Bad Love Breaks Hearts", "artists": [ - "KULT" + "Heroine Diaries", + "Violet Electric" ], - "album": "Posłuchaj to do Ciebie (Expanded)", - "duration_ms": 122013, - "isrc": "PLE781200083" + "album": "Bad Love Breaks Hearts", + "duration_ms": 151578, + "isrc": "QZFYX2063487", + "explicit": true }, - "qobuz_id": 96467627, - "score": 20.5, - "query": "Totalna stabilizacja", - "reason": "best score 20.5 below threshold", + "qobuz_id": 401922968, + "score": 15.892857142857142, + "query": "Bad Love Breaks Hearts Heroine Diaries", + "reason": "best score 15.9 below threshold", "matched": false }, { "source": { - "source_id": "2I9y1p6HdG7UDWr5jaNk1B", - "title": "Jeźdźcy", + "source_id": "4SeZpWSgq1c8a0MY3iVy1f", + "title": "Flashbacks", "artists": [ - "Kult" + "Zach Hood" ], - "album": "Spokojnie", - "duration_ms": 349386, - "isrc": "PLE781200094" + "album": "Flashbacks", + "duration_ms": 183000, + "isrc": "USANG2129382" }, - "qobuz_id": 161574780, - "score": 12.683982683982684, - "query": "Jeźdźcy Kult", - "reason": "best score 12.7 below threshold", + "qobuz_id": 306768153, + "score": 30, + "query": "Flashbacks Zach Hood", + "reason": "best score 30.0 below threshold", "matched": false }, { "source": { - "source_id": "5qhR5ZhTDqFjOvh1oVC6oO", - "title": "Саша", + "source_id": "6P8zr1ghnd78EPhUO8axDm", + "title": "nerve", "artists": [ - "Kino" + "iamjakehill" ], - "album": "Легенды русского рока: КИНО", - "duration_ms": 245800, - "isrc": "FR10S1775001" + "album": "dying lately", + "duration_ms": 175072, + "isrc": "QZK6M2109428" }, - "qobuz_id": 186759833, - "score": 7, - "query": "Саша", - "reason": "best score 7.0 below threshold", + "qobuz_id": 326878639, + "score": 35, + "query": "nerve", + "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "26sgqMLFOhRrryoaPovlI2", - "title": "Спокойная ночь", + "source_id": "5bwSx1hwmUivlUgY9UhfEB", + "title": "re:birth", "artists": [ - "Kino" + "50landing", + "brakence" ], - "album": "Группа крови", - "duration_ms": 364009, - "isrc": "RUB421401318" + "album": "re:birth", + "duration_ms": 199197, + "isrc": "QZFZ41936014" }, - "qobuz_id": 367344889, - "score": -6, - "query": "Спокойная ночь Kino", - "reason": "best score -6.0 below threshold", + "qobuz_id": 219835187, + "score": 32, + "query": "re:birth 50landing", + "reason": "best score 32.0 below threshold", "matched": false }, { "source": { - "source_id": "4y3SP8H7xqjsJtVYsDPtNh", - "title": "Камчатка", + "source_id": "34qbwpw74XInaTH0QJN8Lo", + "title": "Quarantine", "artists": [ - "Kino" + "BESTÒR" ], - "album": "46", - "duration_ms": 131400, - "isrc": "RUB421800474" + "album": "Quarantine", + "duration_ms": 180128, + "isrc": "QZK6L2051369" }, - "qobuz_id": 330248261, - "score": 7, - "query": "Камчатка", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6EYUZdDVScNWjJfIwAtSEg", - "title": "Закрой за мной дверь, я ухожу", - "artists": [ - "Kino" - ], - "album": "Группа крови", - "duration_ms": 256096, - "isrc": "RUB421401314" - }, - "qobuz_id": 367344886, - "score": -6, - "query": "Закрой за мной дверь, я ухожу Kino", - "reason": "best score -6.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "1ngjjSd73Fgkcf3uOCGnxZ", - "title": "Polska", - "artists": [ - "KULT" - ], - "album": "Posłuchaj to do Ciebie (Expanded)", - "duration_ms": 324013, - "isrc": "PLE781200076" - }, - "qobuz_id": 29994040, + "qobuz_id": 109475446, "score": 19, - "query": "Polska KULT", + "query": "Quarantine BESTÒR", "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "5OBfFzjGI6Evs3iVGJivG4", - "title": "Транквилизатор", + "source_id": "0glQyuYv0ylzFhVLJh55E2", + "title": "Blacked Out Whip", "artists": [ - "Kino" + "Bri-C" ], - "album": "46", - "duration_ms": 329040, - "isrc": "RUB421800475" + "album": "Blacked Out Whip", + "duration_ms": 156687, + "isrc": "QZHN32073121", + "explicit": true }, - "qobuz_id": 314630044, - "score": -6, - "query": "Транквилизатор Kino", - "reason": "best score -6.0 below threshold", + "qobuz_id": 318331697, + "score": 35, + "query": "Blacked Out Whip", + "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "14TXj517NaPhpcPeUWkYNM", - "title": "Мне не нравится город Москва", + "source_id": "4Dhvd4V7PBQYBrIeUuSZQK", + "title": "Broken Eyes", "artists": [ - "Kino" + "P.MO", + "Mike Squires" ], - "album": "Легенда", - "duration_ms": 227160, - "isrc": "RUB421800464" + "album": "Broken Eyes", + "duration_ms": 204112, + "isrc": "QZFYW2029459" }, - "qobuz_id": 378781869, - "score": 10, - "query": "Мне не нравится город Москва Kino", - "reason": "best score 10.0 below threshold", + "qobuz_id": 357746217, + "score": 19, + "query": "Broken Eyes P.MO", + "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "7zQbvIgfpeg1Npk9eoQeyD", - "title": "Бездельник №1", + "source_id": "3JXsIGWUG94RE2lMhu2OlE", + "title": "Everything's Alright", "artists": [ - "Kino" + "conscience" ], - "album": "45", - "duration_ms": 194040, - "isrc": "RUB421800454" + "album": "Everything's Alright", + "duration_ms": 203428, + "isrc": "QZDA42011382", + "explicit": true }, - "qobuz_id": 3618864, - "score": 5.666666666666666, - "query": "Бездельник №1 Kino", - "reason": "best score 5.7 below threshold", + "qobuz_id": 130305102, + "score": 25, + "query": "Everything's Alright conscience", + "reason": "best score 25.0 below threshold", "matched": false }, { "source": { - "source_id": "6kB0sf6BSk1mQLtHzkRGAb", - "title": "Просто хочешь ты знать", + "source_id": "10H3CR9qhY2DncyWqxcDNK", + "title": "Easier to Say", "artists": [ - "Kino" + "Grady" ], - "album": "45", - "duration_ms": 209160, - "isrc": "RUB421800455" + "album": "Easier to Say", + "duration_ms": 139985, + "isrc": "QMDGQ1500402", + "explicit": true }, - "qobuz_id": 224190122, - "score": 10, - "query": "Просто хочешь ты знать Kino", - "reason": "best score 10.0 below threshold", + "qobuz_id": 350613935, + "score": 21.75, + "query": "Easier to Say", + "reason": "best score 21.8 below threshold", "matched": false }, { "source": { - "source_id": "24FHbVweImIqKzgwkugUtK", - "title": "Пачка сигарет", + "source_id": "0561ZV0uaJYEOPTa5jCiqg", + "title": "Moved On", "artists": [ - "Kino" + "Redlight Blue" ], - "album": "Легенды русского рока: КИНО", - "duration_ms": 265173, - "isrc": "FR10S1774986" + "album": "Moved On", + "duration_ms": 167045, + "isrc": "QZK6P1961314" }, - "qobuz_id": 58120736, - "score": 10, - "query": "Пачка сигарет", - "reason": "best score 10.0 below threshold", + "qobuz_id": 366457100, + "score": 19, + "query": "Moved On", + "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "3A5NUIgXCUPNeA5enhqUEe", - "title": "Где-то там", + "source_id": "5W2WoQLCOjYx3u8NmySwcH", + "title": "Retro", "artists": [ - "Utro" + "Emcee KB" ], - "album": "Third Album", - "duration_ms": 289006, - "isrc": "FR59Y1700027" + "album": "Retro", + "duration_ms": 156221, + "isrc": "QZFYW2153752" }, - "qobuz_id": 152619881, - "score": 0, - "query": "Где-то там Utro", - "reason": "best score 0.0 below threshold", + "qobuz_id": 189853182, + "score": 30, + "query": "Retro Emcee KB", + "reason": "best score 30.0 below threshold", "matched": false }, { "source": { - "source_id": "3N3ytK9Yk9cL7RCCglBjwL", - "title": "Крайности", + "source_id": "5f8ueD4XV1JKYphfVixZPY", + "title": "takes my breath away", "artists": [ - "Второй этаж поражает" + "soku", + "Lxst Boy" ], - "album": "Крайности", - "duration_ms": 212467, - "isrc": "RUA1D1914407" + "album": "lately it takes my breath away", + "duration_ms": 185701, + "isrc": "QZNWZ2101604" }, - "qobuz_id": 37877528, - "score": 7, - "query": "Крайности Второй этаж поражает", - "reason": "best score 7.0 below threshold", + "qobuz_id": 29998926, + "score": 29, + "query": "takes my breath away", + "reason": "best score 29.0 below threshold", "matched": false }, { "source": { - "source_id": "4PiSrHGaBXpudUHZ60cNGX", - "title": "Я обыватель", + "source_id": "77qVvfoo1PdHB6lW0jHF8A", + "title": "TRUST ISSUES", "artists": [ - "Группа Хмурый" + "CASPIAN" ], - "album": "Картина 1, No. 16/12", - "duration_ms": 190000, - "isrc": "RUA1H1700955" - }, - "qobuz_id": 336924606, - "score": 10, - "query": "Я обыватель Группа Хмурый", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "6ZC8Sm6niDwi1YxLxMyW9c", - "title": "Ночные картины", - "artists": [ - "Группа Хмурый" - ], - "album": "Картина 2, No. 17/5", - "duration_ms": 233496, - "isrc": "RUA1H1757831" - }, - "qobuz_id": 96669411, - "score": 10, - "query": "Ночные картины Группа Хмурый", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "4JaDViW3wyXJgammbmJLEi", - "title": "Баланс", - "artists": [ - "Кофе" - ], - "album": "Баланс", - "duration_ms": 330690, - "isrc": "TCADY1882982" - }, - "qobuz_id": 387053663, - "score": 7, - "query": "Баланс Кофе", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "1rMIP9l5jm496fnTG1GZkD", - "title": "Шельда", - "artists": [ - "ОБРАЗ" - ], - "album": "10", - "duration_ms": 182500, - "isrc": "RUA1D1827018" - }, - "qobuz_id": 311421461, - "score": 10, - "query": "Шельда ОБРАЗ", - "reason": "best score 10.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "2YK0xea4oNrLmtijUhmBju", - "title": "Война", - "artists": [ - "ОБРАЗ" - ], - "album": "Безымянность", - "duration_ms": 287000, - "isrc": "RUA1D1827920" - }, - "qobuz_id": 141537470, - "score": 7, - "query": "Война", - "reason": "best score 7.0 below threshold", - "matched": false - }, - { - "source": { - "source_id": "4dl2G6wuOpFIRTGtrm3iFS", - "title": "Лик", - "artists": [ - "ОБРАЗ" - ], - "album": "10", + "album": "TRUST ISSUES", "duration_ms": 194000, - "isrc": "RUA1D1827017" + "isrc": "QZMEP2081277", + "explicit": true }, - "qobuz_id": 354517405, + "qobuz_id": 365345836, + "score": 35, + "query": "TRUST ISSUES CASPIAN", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2K9H7ZRiQG3VUheqPNXLnD", + "title": "Casket Dreaming", + "artists": [ + "YNG ONE", + "YNG Martyr" + ], + "album": "Casket Dreaming", + "duration_ms": 130324, + "isrc": "QZFYY2097620", + "explicit": true + }, + "qobuz_id": 317566663, + "score": 21.11111111111111, + "query": "Casket Dreaming YNG ONE", + "reason": "best score 21.1 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6PZImcCM9O6jeKQTonELt8", + "title": "Why Was I Waiting", + "artists": [ + "Dubich" + ], + "album": "Why Was I Waiting", + "duration_ms": 188360, + "isrc": "QZK6F2153497", + "explicit": true + }, + "qobuz_id": 58417365, + "score": 22.470588235294116, + "query": "Why Was I Waiting Dubich", + "reason": "best score 22.5 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1MvRmCGFwk7NDCSQQPWUdV", + "title": "Boom", + "artists": [ + "Natalia" + ], + "album": "Overdrive", + "duration_ms": 213173, + "isrc": "BEUM71300105" + }, + "qobuz_id": 357582098, + "score": 25, + "query": "Boom Natalia", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3weXKdVWueTdlM0AEu5kUJ", + "title": "Pitter Patter", + "artists": [ + "KAAG", + "Davis Mallory" + ], + "album": "Pitter Patter", + "duration_ms": 194728, + "isrc": "DKUCA1800075" + }, + "qobuz_id": 122596255, + "score": 29, + "query": "Pitter Patter", + "reason": "best score 29.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5eqKdXlimdVvIqP33vgq7s", + "title": "Heartbreaker", + "artists": [ + "Timmy White" + ], + "album": "WELCOME TO MY LIFE", + "duration_ms": 178333, + "isrc": "QZES62173959", + "explicit": true + }, + "qobuz_id": 347273423, + "score": 32, + "query": "Heartbreaker", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1SCKmv3XgRYKD2YWE1l1Qv", + "title": "paper planes", + "artists": [ + "wynn", + "Niacavaon" + ], + "album": "paper planes", + "duration_ms": 193947, + "isrc": "DEQ022009840" + }, + "qobuz_id": 291909147, + "score": 32, + "query": "paper planes", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2Cf1c7Hi8QQyK4fI6CnGUR", + "title": "coffin girl", + "artists": [ + "Naits", + "fawlin" + ], + "album": "coffin girl", + "duration_ms": 218277, + "isrc": "QZHN32012092", + "explicit": true + }, + "qobuz_id": 84760393, + "score": 10.454545454545453, + "query": "coffin girl", + "reason": "best score 10.5 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7ibzMFLknMFgH05iJCfkQo", + "title": "Blood in the Water", + "artists": [ + "Witt Lowry" + ], + "album": "I Could Not Plan This", + "duration_ms": 213333, + "isrc": "TCADE1762939", + "explicit": true + }, + "qobuz_id": 223706675, + "score": 35, + "query": "Blood in the Water Witt Lowry", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "64RZNkFqMF44Ql8dOfesgr", + "title": "Feels Right (I Love It)", + "artists": [ + "Flo Rida", + "Brian Kelley" + ], + "album": "Feels Right (I Love It)", + "duration_ms": 147189, + "isrc": "QZVFR2300706" + }, + "qobuz_id": 36736037, + "score": 19.34543325526932, + "query": "Feels Right (I Love It) Flo Rida", + "reason": "best score 19.3 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0JrXUsqzecfVbdT5bvsMwX", + "title": "Heartless - Radio Edit", + "artists": [ + "Babbeo", + "TEKKNO" + ], + "album": "Heartless (Radio Edit)", + "duration_ms": 234050, + "isrc": "QZZ972417418" + }, + "qobuz_id": 342356702, + "score": 29, + "query": "Heartless - Radio Edit Babbeo", + "reason": "best score 29.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "07xOTRcQijB89eBXDMTAoa", + "title": "CRY", + "artists": [ + "Parker Jack" + ], + "album": "CRY", + "duration_ms": 135418, + "isrc": "QZHN62210487" + }, + "qobuz_id": 77112850, + "score": 19, + "query": "CRY", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2C84NxJX5ediVInznNcuDV", + "title": "Chasing Highs", + "artists": [ + "Sonny Wern", + "Dimmalou" + ], + "album": "Chasing Highs", + "duration_ms": 143800, + "isrc": "QZWDW2318489" + }, + "qobuz_id": 231029421, + "score": 27, + "query": "Chasing Highs Sonny Wern", + "reason": "best score 27.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6u8ITzuaSse7oiP7Abg3a3", + "title": "Hush Hush (Don't Be Shy) (Sped up)", + "artists": [ + "Anthony Keyrouz", + "ZANA" + ], + "album": "Hush Hush (Don't Be Shy) (Sped up)", + "duration_ms": 119040, + "isrc": "NLT2H2300205" + }, + "qobuz_id": 142260623, + "score": 38.04761904761905, + "query": "Hush Hush (Don't Be Shy) (Sped up) Anthony Keyrouz", + "reason": "best score 38.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5JY0ICTiZcuBjUcW26Tdmq", + "title": "VACATION", + "artists": [ + "fkbambam", + "Luga" + ], + "album": "VACATION", + "duration_ms": 116144, + "isrc": "QZFZ62050401", + "explicit": true + }, + "qobuz_id": 115400730, + "score": 19, + "query": "VACATION fkbambam", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5thst4Urb9jUOPoriQMmxL", + "title": "SUNGLASSES", + "artists": [ + "Eldritch" + ], + "album": "GAME OF LIFE", + "duration_ms": 139154, + "isrc": "AUBEC2313462", + "explicit": true + }, + "qobuz_id": 114217495, + "score": 19, + "query": "SUNGLASSES", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4mtVxeFNPphBlkc7TipdFR", + "title": "Vegas", + "artists": [ + "Xelishurt", + "Faceless 1-7", + "Aryel", + "Shneaky" + ], + "album": "LEGEND", + "duration_ms": 126630, + "isrc": "QZK6K2100843", + "explicit": true + }, + "qobuz_id": 60438535, + "score": 7.055555555555557, + "query": "Vegas Xelishurt", + "reason": "best score 7.1 below threshold", + "matched": false + }, + { + "source": { + "source_id": "26dZqv39K4kE2kFXAI5dH5", + "title": "Rave Superstar", + "artists": [ + "W\u0026W", + "AXMO", + "Haley Maze" + ], + "album": "Rave Superstar", + "duration_ms": 159993, + "isrc": "NL4VT2100252" + }, + "qobuz_id": 215706643, + "score": 15.8, + "query": "Rave Superstar", + "reason": "best score 15.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2rh38KyxmYjzTU1tavVLl4", + "title": "Gangster", + "artists": [ + "W\u0026W", + "VINAI" + ], + "album": "Gangster", + "duration_ms": 136000, + "isrc": "NL4VT2100276" + }, + "qobuz_id": 141299436, + "score": 7.653846153846155, + "query": "Gangster", + "reason": "best score 7.7 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3ATgzkSiejImKcPC0aY8Bw", + "title": "Detox", + "artists": [ + "Kado", + "Promoting Sounds", + "MASN" + ], + "album": "Detox", + "duration_ms": 203909, + "isrc": "SE5BU2304048", + "explicit": true + }, + "qobuz_id": 154103357, + "score": 11.666666666666666, + "query": "Detox", + "reason": "best score 11.7 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5xdmotWnFPVuPEZAI98OHl", + "title": "BLOODY ASS SHOES", + "artists": [ + "Project 98" + ], + "album": "BLOODY ASS SHOES", + "duration_ms": 139935, + "isrc": "CH7812238373", + "explicit": true + }, + "qobuz_id": 112864907, + "score": 24.5, + "query": "BLOODY ASS SHOES Project 98", + "reason": "best score 24.5 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4Am1mDdU4S0Mez2ckH3M4L", + "title": "HIGH 4LERT", + "artists": [ + "Grioten", + "Day$okee", + "Sayfalse" + ], + "album": "HIGH 4LERT", + "duration_ms": 127402, + "isrc": "QZNWQ2290579", + "explicit": true + }, + "qobuz_id": 266933198, + "score": 29.166666666666664, + "query": "HIGH 4LERT Grioten", + "reason": "best score 29.2 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6mOtvVZfMGlwS45csISlXs", + "title": "LAST LAUGH!", + "artists": [ + "CAIRO!", + "Eldritch" + ], + "album": "LAST LAUGH!", + "duration_ms": 127304, + "isrc": "QZPLR2286270", + "explicit": true + }, + "qobuz_id": 275254589, + "score": 19, + "query": "LAST LAUGH! CAIRO!", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6TayrUZyAgKgOkybXdKIpa", + "title": "Hero", + "artists": [ + "Cam Wehunt" + ], + "album": "Hero", + "duration_ms": 138080, + "isrc": "QZNWZ2263237" + }, + "qobuz_id": 401058552, + "score": 19, + "query": "Hero Cam Wehunt", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3DYWXWNKOeeSxIdvJC332H", + "title": "CAUSTIC", + "artists": [ + "Vitamjn", + "ONI INC." + ], + "album": "CAUSTIC", + "duration_ms": 108035, + "isrc": "QZS652163930", + "explicit": true + }, + "qobuz_id": 296428682, + "score": 19, + "query": "CAUSTIC Vitamjn", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2NRtoOKWi4LkZKNwFIPoXC", + "title": "RØLL THE DICE", + "artists": [ + "CAZSPER" + ], + "album": "RØLL THE DICE", + "duration_ms": 73937, + "isrc": "QZFZ22365049", + "explicit": true + }, + "qobuz_id": 324463926, + "score": 9.230769230769232, + "query": "RØLL THE DICE CAZSPER", + "reason": "best score 9.2 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4zOAjC83WdMqA490LCdwY2", + "title": "MADRID", + "artists": [ + "Eldritch" + ], + "album": "MADRID", + "duration_ms": 108394, + "isrc": "QZK6F2100566" + }, + "qobuz_id": 225087419, + "score": 19, + "query": "MADRID Eldritch", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1Rpj9CZE7cGSXUCfiBf0eA", + "title": "Ghosts", + "artists": [ + "Jacob Tillberg" + ], + "album": "Ghosts", + "duration_ms": 215050, + "isrc": "TCACL1688013" + }, + "qobuz_id": 79023859, + "score": 33, + "query": "Ghosts Jacob Tillberg", + "reason": "best score 33.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0fSPXbrGsRZQV1UmUb8Uo7", + "title": "Titty Pom Pom - Radio Edit", + "artists": [ + "Dyprax" + ], + "album": "Titty Pom Pom (Radio Edit)", + "duration_ms": 201600, + "isrc": "NLFL71700338", + "explicit": true + }, + "qobuz_id": 8632878, + "score": 20.583333333333336, + "query": "Titty Pom Pom - Radio Edit Dyprax", + "reason": "best score 20.6 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0xCeDdBFZaPe0E1pua5AiH", + "title": "In My Head", + "artists": [ + "idkjack", + "Luvjools" + ], + "album": "In My Head", + "duration_ms": 195563, + "isrc": "QZHN92041661" + }, + "qobuz_id": 99201260, + "score": 32, + "query": "In My Head idkjack", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0bzxhqRgQE7C9A0CKS7gHi", + "title": "Blade!", + "artists": [ + "DeeKay", + "CAIRO!" + ], + "album": "Blade!", + "duration_ms": 120064, + "isrc": "QZNWV2276352", + "explicit": true + }, + "qobuz_id": 99509552, "score": 10, - "query": "Лик", + "query": "Blade! DeeKay", "reason": "best score 10.0 below threshold", "matched": false }, { "source": { - "source_id": "0dAcfhBoCQXjhPb0ba4fYk", - "title": "Ночной променад", + "source_id": "3r5694rwbeUhwjJkCHrPgV", + "title": "Belong Together (Sped Up)", "artists": [ - "СОЮЗ" + "Luke Willies" ], - "album": "СОЮЗ", - "duration_ms": 248354, - "isrc": "UAKK11700102" + "album": "Belong Together (Sped Up)", + "duration_ms": 123653, + "isrc": "QZZ662449575" }, - "qobuz_id": 174517675, - "score": 0, - "query": "Ночной променад СОЮЗ", - "reason": "best score 0.0 below threshold", + "qobuz_id": 258547684, + "score": 32, + "query": "Belong Together (Sped Up) Luke Willies", + "reason": "best score 32.0 below threshold", "matched": false }, { "source": { - "source_id": "7ERS2VL9QeKzSrBBfESf0P", - "title": "Troleibusai", + "source_id": "0fk59KNVkeVF1BprGZpQv8", + "title": "Creepin' - Sped Up Version", "artists": [ - "Šiaurės kryptis" + "SP3CTRUM", + "Beau James" ], - "album": "Ledynai", - "duration_ms": 266765, - "isrc": "QZ4JJ1972859" + "album": "Creepin' - Sped Up Version", + "duration_ms": 108031, + "isrc": "GX8KD2336429" }, - "qobuz_id": 350310178, - "score": 3.37142857142857, - "query": "Troleibusai Šiaurės kryptis", - "reason": "best score 3.4 below threshold", + "qobuz_id": 184497546, + "score": 19.956521739130437, + "query": "Creepin' - Sped Up Version SP3CTRUM", + "reason": "best score 20.0 below threshold", "matched": false }, { "source": { - "source_id": "3uTMwljOgDz2s6oXrM1BQO", - "title": "Хочу перемен", + "source_id": "4GBDAlro6Z64L788LB8rxA", + "title": "Missing You - Gassed Up", "artists": [ - "Kino" + "Billi Royce" ], - "album": "Последний герой", - "duration_ms": 292606, - "isrc": "RUB421401394" + "album": "Missing You", + "duration_ms": 135463, + "isrc": "QZLBC2416100", + "explicit": true }, - "qobuz_id": 24438, - "score": 4, - "query": "Хочу перемен Kino", - "reason": "best score 4.0 below threshold", + "qobuz_id": 263870499, + "score": 30.238095238095237, + "query": "Missing You - Gassed Up Billi Royce", + "reason": "best score 30.2 below threshold", "matched": false }, { "source": { - "source_id": "5kH4o6XuMjvLnPU1ObTe6r", - "title": "Wódka", + "source_id": "0Tzwe4DT6IZpfIxxzUAnoq", + "title": "backwards", "artists": [ - "KULT" + "ChrispyD" ], - "album": "Posłuchaj to do Ciebie (Expanded)", - "duration_ms": 314506, - "isrc": "PLE781200079" + "album": "backwards", + "duration_ms": 138857, + "isrc": "QZDA72204283", + "explicit": true }, - "qobuz_id": 98483682, - "score": 8.166666666666666, - "query": "Wódka", - "reason": "best score 8.2 below threshold", + "qobuz_id": 349656492, + "score": 19, + "query": "backwards", + "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "3PkyOSJUaUZ0npKampSyH9", - "title": "Kult", + "source_id": "6Ha9KAf7mHUR9JwAHL1Z4P", + "title": "FYE", "artists": [ - "KULT" + "Ethan Ross", + "XO1", + "Ioan Straton" ], - "album": "Posłuchaj to do Ciebie (Expanded)", - "duration_ms": 218520, - "isrc": "PLE781200082" + "album": "FYE", + "duration_ms": 134516, + "isrc": "CA5KR2373334", + "explicit": true }, - "qobuz_id": 336311080, - "score": 4.833333333333334, - "query": "Kult", - "reason": "best score 4.8 below threshold", + "qobuz_id": 260225240, + "score": 27, + "query": "FYE Ethan Ross", + "reason": "best score 27.0 below threshold", "matched": false }, { "source": { - "source_id": "4itBiAaEfr0Mg3dwYBa5EJ", - "title": "Umarł mój wróg", + "source_id": "7pLNQkGPI3X1HHssiNL8tD", + "title": "Talk To Me", "artists": [ - "KULT" + "Emcee KB" ], - "album": "Posłuchaj to do Ciebie (Expanded)", - "duration_ms": 158506, - "isrc": "PLE781200085" + "album": "Talk To Me", + "duration_ms": 138390, + "isrc": "QZNWV2387516", + "explicit": true }, - "qobuz_id": 378525392, - "score": 23.33333333333333, - "query": "Umarł mój wróg KULT", - "reason": "best score 23.3 below threshold", + "qobuz_id": 216124750, + "score": 19.916666666666668, + "query": "Talk To Me Emcee KB", + "reason": "best score 19.9 below threshold", "matched": false }, { "source": { - "source_id": "11iqTRZTgQxPUeIMwBqoDU", - "title": "Rozmyślania wychowanka", + "source_id": "32wNdhdRMlXl994u6WNKMv", + "title": "60 Minutes", "artists": [ - "KULT" + "Emcee KB" ], - "album": "Posłuchaj to do Ciebie (Expanded)", - "duration_ms": 146000, - "isrc": "PLE781200088" + "album": "60 Minutes", + "duration_ms": 161824, + "isrc": "QZNWY2271452", + "explicit": true }, - "qobuz_id": 354435173, - "score": 15, - "query": "Rozmyślania wychowanka", - "reason": "best score 15.0 below threshold", + "qobuz_id": 265474508, + "score": 27, + "query": "60 Minutes Emcee KB", + "reason": "best score 27.0 below threshold", "matched": false }, { "source": { - "source_id": "6c80rzvhrsLZCJrAWElx6W", - "title": "Легенда", + "source_id": "4NNo6yFzKvX4HsTcaH6WIU", + "title": "Salsa Tequila", "artists": [ - "Kino" + "Anders Nilsen" ], - "album": "Группа крови", - "duration_ms": 248054, - "isrc": "RUB421401319" + "album": "Salsa Tequila", + "duration_ms": 199804, + "isrc": "NOAJR1400044" }, - "qobuz_id": 126238883, - "score": 4, - "query": "Легенда", - "reason": "best score 4.0 below threshold", + "qobuz_id": 125130012, + "score": 35, + "query": "Salsa Tequila", + "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "06jE36hfsvQpXxOMwqM5Y0", - "title": "Память", + "source_id": "3RNZka5rejWdrVs6gvs3Yi", + "title": "KICKBACK", "artists": [ - "Мать Тереза" + "SaintCi" ], - "album": "Иллюзия", - "duration_ms": 251013, - "isrc": "FR59R1991943" + "album": "I'M SORRY MAMA \u003c3 (Deluxe)", + "duration_ms": 150356, + "isrc": "QZHN72322105", + "explicit": true }, - "qobuz_id": 94071989, - "score": 7, - "query": "Память", - "reason": "best score 7.0 below threshold", + "qobuz_id": 170675686, + "score": 25, + "query": "KICKBACK SaintCi", + "reason": "best score 25.0 below threshold", "matched": false }, { "source": { - "source_id": "5PUAe8RKd1zVOo6JX4wrD5", - "title": "77", + "source_id": "2kKT3oIOVYRu3JUk1fIWLd", + "title": "RED LIGHT", "artists": [ - "Leto V Gorode" + "fiftyfive", + "Big Melancholy", + "4Scythe" ], - "album": "1", - "duration_ms": 248894, - "isrc": "QZES81838059" + "album": "RED LIGHT", + "duration_ms": 162496, + "isrc": "QZFYY2345929", + "explicit": true }, - "qobuz_id": 72884675, + "qobuz_id": 63083584, + "score": 19, + "query": "RED LIGHT fiftyfive", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3iQuX7ZVxUcxGeZGTfvkgf", + "title": "Street Tuff", + "artists": [ + "Double Trouble" + ], + "album": "Be As One", + "duration_ms": 208826, + "isrc": "NLML68000312" + }, + "qobuz_id": 114181118, + "score": 29, + "query": "Street Tuff", + "reason": "best score 29.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7tyPg2zARpiZFG6dFpfZlx", + "title": "BACK DOWN", + "artists": [ + "Synsy" + ], + "album": "BACK DOWN", + "duration_ms": 124950, + "isrc": "QZNWX2178507", + "explicit": true + }, + "qobuz_id": 187441291, + "score": 19, + "query": "BACK DOWN Synsy", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2e9iuqJd7mEZnk2INiuFyr", + "title": "OBSESSED", + "artists": [ + "KOGAIHU", + "Jupiluxe" + ], + "album": "OBSESSED", + "duration_ms": 112483, + "isrc": "QZK6G2323713" + }, + "qobuz_id": 117417641, + "score": 25, + "query": "OBSESSED KOGAIHU", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3blywv24QJmFseGVe3ll0F", + "title": "Heart of Scars!", + "artists": [ + "DeeKay", + "666SWISH", + "CLXUDA" + ], + "album": "Heart of Scars!", + "duration_ms": 186552, + "isrc": "QZMEP2386188", + "explicit": true + }, + "qobuz_id": 390772349, + "score": 25.61842105263158, + "query": "Heart of Scars! DeeKay", + "reason": "best score 25.6 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3b8eZlUQVMmH32E7wqeyRE", + "title": "STUPID (MOVE IT!)", + "artists": [ + "Clevamane", + "Prexcher" + ], + "album": "STUPID (MOVE IT!)", + "duration_ms": 157440, + "isrc": "UKZGC2403655", + "explicit": true + }, + "qobuz_id": 349400449, + "score": 23.428571428571427, + "query": "STUPID (MOVE IT!) Clevamane", + "reason": "best score 23.4 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0DLDONiZ0agyx8cFxa45MD", + "title": "JUNKIE", + "artists": [ + "REMIEWORLD", + "Synsy" + ], + "album": "JUNKIE", + "duration_ms": 104470, + "isrc": "DGA062304726", + "explicit": true + }, + "qobuz_id": 375064060, + "score": 19, + "query": "JUNKIE REMIEWORLD", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "35VoPYeYnpvn03EIsQ4Vn6", + "title": "Equivalent Exchange", + "artists": [ + "6roke 6oy Six", + "Warlord Colossus" + ], + "album": "Equivalent Exchange", + "duration_ms": 164937, + "isrc": "QZNWT2098908" + }, + "qobuz_id": 297517416, + "score": 25, + "query": "Equivalent Exchange 6roke 6oy Six", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3Bek7ju78ZK4CVxSnUbrRQ", + "title": "APRIL 19TH", + "artists": [ + "Ethan Ross" + ], + "album": "APRIL 19TH", + "duration_ms": 180000, + "isrc": "QZTGW2402702" + }, + "qobuz_id": 90591037, + "score": 19, + "query": "APRIL 19TH", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3LniLcrlG0xBj8SMXaH3Co", + "title": "Catch Me", + "artists": [ + "Kylof Söze", + "Prompto" + ], + "album": "DOUBLE DASH", + "duration_ms": 124560, + "isrc": "QZTAT2371057", + "explicit": true + }, + "qobuz_id": 341876698, + "score": 21.944444444444443, + "query": "Catch Me Kylof Söze", + "reason": "best score 21.9 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3bPtmat5ZjE2CZTgeNxGfa", + "title": "Hell Dance", + "artists": [ + "Demxn" + ], + "album": "Hell Dance", + "duration_ms": 99503, + "isrc": "QZHN62317309", + "explicit": true + }, + "qobuz_id": 353619299, + "score": 6, + "query": "Hell Dance", + "reason": "best score 6.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1zvj5LsJ2PphZJ8bEkNAbo", + "title": "ThereMightActuallyBeNothingWrongWithMe", + "artists": [ + "Ethan Ross" + ], + "album": "ThereMightActuallyBeNothingWrongWithMe", + "duration_ms": 123166, + "isrc": "QZNWV2455419", + "explicit": true + }, + "qobuz_id": 209838756, + "score": 27, + "query": "ThereMightActuallyBeNothingWrongWithMe Ethan Ross", + "reason": "best score 27.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "21uOXMvv67tUB3uShXu1ts", + "title": "FORTY FIVE", + "artists": [ + "KOGAIHU", + "Kamiyada+" + ], + "album": "FORTY FIVE", + "duration_ms": 101616, + "isrc": "QZK6P2336716" + }, + "qobuz_id": 162411317, + "score": 19, + "query": "FORTY FIVE KOGAIHU", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2o5xWgqK0ZgaZblGD4ioLE", + "title": "TACA BALA", + "artists": [ + "Demxn" + ], + "album": "ABYSS, Pt. 4", + "duration_ms": 111143, + "isrc": "QZK6Q2417189", + "explicit": true + }, + "qobuz_id": 253862990, + "score": 32, + "query": "TACA BALA Demxn", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3Ha62iVIUNEVNRx1X8nQf6", + "title": "Read The Room", + "artists": [ + "Synsy" + ], + "album": "FRACTURED REALITY", + "duration_ms": 113406, + "isrc": "UKZGC2305371", + "explicit": true + }, + "qobuz_id": 231920124, + "score": 19, + "query": "Read The Room Synsy", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1wzq2mlL10OGcduTCDQW52", + "title": "SATISFACTION!", + "artists": [ + "Xelishurt", + "Sadfriendd", + "Prompto" + ], + "album": "SATISFACTION!", + "duration_ms": 120923, + "isrc": "QZTB32245480", + "explicit": true + }, + "qobuz_id": 169076145, + "score": 19, + "query": "SATISFACTION! Xelishurt", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "09joxdwlCokfVBr8JYJ4ro", + "title": "Dance With Your Devil - Sped Up", + "artists": [ + "Anthony Keyrouz", + "Paradigm" + ], + "album": "Dance With Your Devil - Sped Up", + "duration_ms": 134526, + "isrc": "NLT2H2300364" + }, + "qobuz_id": 119655149, + "score": 37.241379310344826, + "query": "Dance With Your Devil - Sped Up Anthony Keyrouz", + "reason": "best score 37.2 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2L1FxAxL03r8Llu1AE3Slx", + "title": "Turn The Lights Off", + "artists": [ + "Braaheim", + "ILYAA", + "Dani Vidi" + ], + "album": "Turn The Lights Off", + "duration_ms": 169014, + "isrc": "NLT2H2300767" + }, + "qobuz_id": 378504738, + "score": 39, + "query": "Turn The Lights Off Braaheim", + "reason": "best score 39.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3HVaJzqVptw4vznWAU99z0", + "title": "MICHIGAN LEFT", + "artists": [ + "Press Kampe", + "Vitamjn" + ], + "album": "MICHIGAN LEFT", + "duration_ms": 144000, + "isrc": "QZS632394243", + "explicit": true + }, + "qobuz_id": 212509609, + "score": 24.64705882352941, + "query": "MICHIGAN LEFT", + "reason": "best score 24.6 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6sfTnL8X3FWAg9xzHHFl6P", + "title": "DYSMORPHIA", + "artists": [ + "Ethan Ross" + ], + "album": "DYSMORPHIA", + "duration_ms": 124598, + "isrc": "QM24S2206070", + "explicit": true + }, + "qobuz_id": 224106048, + "score": 25, + "query": "DYSMORPHIA", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "01MUawlDtZSdksJGN7PXvR", + "title": "Supra", + "artists": [ + "ДЕТИ RAVE" + ], + "album": "Фая", + "duration_ms": 150000, + "isrc": "FR96X1914583" + }, + "qobuz_id": 181087702, + "score": 25, + "query": "Supra", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "67frtTBWXbbBBhm3mnLaM0", + "title": "Kill Em with Kindness", + "artists": [ + "ChrispyD" + ], + "album": "Kill Em with Kindness", + "duration_ms": 144149, + "isrc": "QMEZE1927024", + "explicit": true + }, + "qobuz_id": 217811021, + "score": 29, + "query": "Kill Em with Kindness ChrispyD", + "reason": "best score 29.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2m8ejfQavfx09lbQgQ6q2M", + "title": "did it to yourself", + "artists": [ + "ChrispyD" + ], + "album": "did it to yourself", + "duration_ms": 78966, + "isrc": "QZK6J2214009" + }, + "qobuz_id": 391268195, + "score": 20.18181818181818, + "query": "did it to yourself", + "reason": "best score 20.2 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6mkhl1pwN5j0fbOm8D2Tcn", + "title": "Lobster 2.0", + "artists": [ + "RJ Pasin", + "WesGhost" + ], + "album": "Lobster 2.0", + "duration_ms": 118956, + "isrc": "CA5KR2474027" + }, + "qobuz_id": 238195312, + "score": 11.36111111111111, + "query": "Lobster 2.0 RJ Pasin", + "reason": "best score 11.4 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6b05XUwytAxcnAZKpp6qVU", + "title": "GXTH G!", + "artists": [ + "TH3 KXD" + ], + "album": "GXTH G!", + "duration_ms": 140725, + "isrc": "QZFZ62369376", + "explicit": true + }, + "qobuz_id": 298701880, + "score": 24.833333333333336, + "query": "GXTH G! TH3 KXD", + "reason": "best score 24.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3WisYlY2eya6takytbsZXy", + "title": "distant memories (N4NTiX Remix)", + "artists": [ + "N4NTiX", + "guardin" + ], + "album": "distant memories (N4NTiX Remix)", + "duration_ms": 110785, + "isrc": "TCAII2439416" + }, + "qobuz_id": 271035394, + "score": 16.45812807881773, + "query": "distant memories (N4NTiX Remix) N4NTiX", + "reason": "best score 16.5 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5SvD9zzGEIBo4yKr5OLvom", + "title": "Tokyo Drip", + "artists": [ + "Moneyboss", + "Yung Bucket" + ], + "album": "Tokyo Drip", + "duration_ms": 172697, + "isrc": "QZMEN2295310" + }, + "qobuz_id": 335999774, + "score": 32, + "query": "Tokyo Drip", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "74iK34SY64SaNV1C3x57X9", + "title": "Selfish", + "artists": [ + "iamjakehill" + ], + "album": "Solace", + "duration_ms": 197641, + "isrc": "QM4DW1881218", + "explicit": true + }, + "qobuz_id": 249206519, + "score": 19, + "query": "Selfish iamjakehill", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7lRNSxonTMJnunwEIEMGPn", + "title": "POLARIZE", + "artists": [ + "Grioten", + "BEXSTMXDE" + ], + "album": "POL4R", + "duration_ms": 120000, + "isrc": "UKZGC2309621", + "explicit": true + }, + "qobuz_id": 282437193, + "score": 32, + "query": "POLARIZE", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4Twa0rvJUloTw6itYfJpiU", + "title": "Death Note", + "artists": [ + "Autograf", + "Stellar", + "SIDD" + ], + "album": "Death Note", + "duration_ms": 158044, + "isrc": "NLF712307262", + "explicit": true + }, + "qobuz_id": 305706268, + "score": 19, + "query": "Death Note Autograf", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "12DAwjClsUj19EAM8ajcox", + "title": "Sheikah", + "artists": [ + "Kylof Söze", + "Eldritch", + "Bloodlish" + ], + "album": "Sheikah", + "duration_ms": 114625, + "isrc": "QZTH92200613", + "explicit": true + }, + "qobuz_id": 283946697, + "score": 20, + "query": "Sheikah Kylof Söze", + "reason": "best score 20.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3CiBoyE0QJlbmuibyEXkp4", + "title": "MAGIC!", + "artists": [ + "Kylof Söze", + "Eldritch", + "Hies" + ], + "album": "MAGIC!", + "duration_ms": 142503, + "isrc": "QM8DG2273036", + "explicit": true + }, + "qobuz_id": 17121810, + "score": 19, + "query": "MAGIC! Kylof Söze", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1GT7dPruiVYJ11zMaNPz0Q", + "title": "Where The Angels Are", + "artists": [ + "Kado", + "juli" + ], + "album": "Where The Angels Are", + "duration_ms": 159399, + "isrc": "SE6TI2349437" + }, + "qobuz_id": 360337051, + "score": 25.806451612903224, + "query": "Where The Angels Are Kado", + "reason": "best score 25.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4c2RXQoNTtraGFfoDNKbTg", + "title": "CARNIVAL x FEIN", + "artists": [ + "Kemi not a Kid" + ], + "album": "CARNIVAL x FEIN", + "duration_ms": 161033, + "isrc": "CA5KR2444306", + "explicit": true + }, + "qobuz_id": 355458529, + "score": 27, + "query": "CARNIVAL x FEIN Kemi not a Kid", + "reason": "best score 27.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4NrUYfnf0HUeQRdKDwp837", + "title": "Need U", + "artists": [ + "Grioten", + "Jelex", + "Lil God Dan" + ], + "album": "Falling in Love", + "duration_ms": 169500, + "isrc": "QZHN52287346", + "explicit": true + }, + "qobuz_id": 332770497, + "score": 21.029411764705884, + "query": "Need U Grioten", + "reason": "best score 21.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3CZB4TtVnDxtsHAHhO2rGu", + "title": "FALLIN DOWN!", + "artists": [ + "CAIRO!" + ], + "album": "NORTHSIDE 1049", + "duration_ms": 156946, + "isrc": "QMEZE1941562", + "explicit": true + }, + "qobuz_id": 58417619, + "score": 26.11111111111111, + "query": "FALLIN DOWN!", + "reason": "best score 26.1 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3sNcqiOhQICcWx9a1zzLxG", + "title": "Little Love", + "artists": [ + "Corey Corner" + ], + "album": "Little Love", + "duration_ms": 149443, + "isrc": "QZTB42480043", + "explicit": true + }, + "qobuz_id": 68993759, + "score": 21.974358974358974, + "query": "Little Love Corey Corner", + "reason": "best score 22.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "70ZcCZwbyDRy97jesl6DxG", + "title": "HIDE AND SEEK", + "artists": [ + "Pyrrhic" + ], + "album": "HIDE AND SEEK", + "duration_ms": 101436, + "isrc": "QZFYY2370660", + "explicit": true + }, + "qobuz_id": 307451226, + "score": 19, + "query": "HIDE AND SEEK Pyrrhic", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3EHoBWBgWYSH8FwicfBMMX", + "title": "Batman!", + "artists": [ + "DeeKay" + ], + "album": "Batman!", + "duration_ms": 141750, + "isrc": "QZFZ62203896", + "explicit": true + }, + "qobuz_id": 114697602, + "score": 25, + "query": "Batman!", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5DGCE8cmbjOeySPZPrA7Dl", + "title": "BITE ME PLS!", + "artists": [ + "lamont4u" + ], + "album": "BITE ME PLS!", + "duration_ms": 144017, + "isrc": "QZK6H2448627", + "explicit": true + }, + "qobuz_id": 211567000, + "score": 16.363636363636363, + "query": "BITE ME PLS! lamont4u", + "reason": "best score 16.4 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0Vff54lXFn6qBsfbfTgTzG", + "title": "Game Over", + "artists": [ + "Grioten", + "Jelex" + ], + "album": "Falling in Love", + "duration_ms": 182778, + "isrc": "QZHN52287348", + "explicit": true + }, + "qobuz_id": 77607714, + "score": 29, + "query": "Game Over Grioten", + "reason": "best score 29.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1UaHt8XVYOmbvc8MEiVdfI", + "title": "I DONT WANNA BE MYSELF", + "artists": [ + "cloverscars" + ], + "album": "I DONT WANNA BE MYSELF", + "duration_ms": 144117, + "isrc": "QZHN52105228", + "explicit": true + }, + "qobuz_id": 33758919, + "score": 18.4, + "query": "I DONT WANNA BE MYSELF cloverscars", + "reason": "best score 18.4 below threshold", + "matched": false + }, + { + "source": { + "source_id": "568VeBWle44zP0iwPf7O7w", + "title": "Don't Wanna Die", + "artists": [ + "Kado", + "juli" + ], + "album": "Don't Wanna Die", + "duration_ms": 167826, + "isrc": "SE66N2262337" + }, + "qobuz_id": 229094268, + "score": 14.823529411764707, + "query": "Don't Wanna Die", + "reason": "best score 14.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3KR1JFRwYzha78aE9SpX3a", + "title": "Im Doing Fine", + "artists": [ + "Marino", + "Promoting Sounds" + ], + "album": "Im Doing Fine", + "duration_ms": 99844, + "isrc": "SE6SA2488274" + }, + "qobuz_id": 92692225, + "score": 9.285714285714286, + "query": "Im Doing Fine", + "reason": "best score 9.3 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0VjBlyHOKvMwbSdMmyiFEp", + "title": "She Bad", + "artists": [ + "Khantrast" + ], + "album": "She Bad", + "duration_ms": 105534, + "isrc": "QZFZ32227044", + "explicit": true + }, + "qobuz_id": 218498653, + "score": 21.857142857142858, + "query": "She Bad Khantrast", + "reason": "best score 21.9 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6LBGojl2XjpgYXLGPSpPVm", + "title": "Green Guap!", + "artists": [ + "DeeKay", + "CAIRO!" + ], + "album": "Green Guap!", + "duration_ms": 101136, + "isrc": "QZNWR2129600", + "explicit": true + }, + "qobuz_id": 366468155, + "score": 15.363636363636365, + "query": "Green Guap!", + "reason": "best score 15.4 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0uoFiFGTCzQ2I6RBndGpuo", + "title": "Cyclops", + "artists": [ + "Comb4t" + ], + "album": "Cyclops", + "duration_ms": 60740, + "isrc": "QZNWV2059455", + "explicit": true + }, + "qobuz_id": 34733997, + "score": 19, + "query": "Cyclops", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7ibXQnWFxyYik1y4cYu35O", + "title": "Woah!", + "artists": [ + "CAIRO!" + ], + "album": "Woah!", + "duration_ms": 98246, + "isrc": "QZHN41916888", + "explicit": true + }, + "qobuz_id": 69061649, + "score": 25, + "query": "Woah!", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4i57SwvXC5Jww0H4mK4Xhb", + "title": "DRILL | дрель | ドリル |", + "artists": [ + "Kylof Söze" + ], + "album": "DRILL | дрель | ドリル |", + "duration_ms": 70335, + "isrc": "QZH5E2049354", + "explicit": true + }, + "qobuz_id": 286661682, "score": 14, - "query": "77 Leto V Gorode", + "query": "DRILL | дрель | ドリル | Kylof Söze", "reason": "best score 14.0 below threshold", "matched": false }, { "source": { - "source_id": "1tmF8MUUOa9w4Wg9XFm2f2", - "title": "Дождь для нас", + "source_id": "2kNSIwHUxOz5dNfgoeK9pL", + "title": "Subliminal Criminal", "artists": [ - "Kino" + "Daegho" ], - "album": "46", - "duration_ms": 207360, - "isrc": "RUB421800476" + "album": "Subliminal Criminal", + "duration_ms": 95572, + "isrc": "QZDA62055345", + "explicit": true }, - "qobuz_id": 92138394, - "score": 10, - "query": "Дождь для нас Kino", - "reason": "best score 10.0 below threshold", + "qobuz_id": 208183136, + "score": 37.30769230769231, + "query": "Subliminal Criminal Daegho", + "reason": "best score 37.3 below threshold", "matched": false }, { "source": { - "source_id": "1eqI2Wi3J5jU99SESynPlY", - "title": "Ночь", + "source_id": "083IvUhTSTQwXbqbuYCVXE", + "title": "Orbit", "artists": [ - "Kino" + "Xelishurt", + "Prompto" ], - "album": "Ночь", - "duration_ms": 327536, - "isrc": "RUB421401361" + "album": "Orbit", + "duration_ms": 131612, + "isrc": "QZRP42199287", + "explicit": true }, - "qobuz_id": 367344889, - "score": 10, - "query": "Ночь Kino", - "reason": "best score 10.0 below threshold", + "qobuz_id": 368050394, + "score": 7, + "query": "Orbit Xelishurt", + "reason": "best score 7.0 below threshold", "matched": false }, { "source": { - "source_id": "2ocnj7yoAevxjgroRRbRHw", - "title": "Если я лгу", + "source_id": "1RENVwzr08EMwtcgT0HNnj", + "title": "NUNCHUCK", "artists": [ - "Дурное Влияние" + "Xelishurt", + "Prompto", + "Nateki" ], - "album": "Неподвижность", - "duration_ms": 269240, - "isrc": "RUA1H1738235" + "album": "NUNCHUCK", + "duration_ms": 137543, + "isrc": "QZK6Q2302894", + "explicit": true }, - "qobuz_id": 236742202, - "score": 0, - "query": "Если я лгу Дурное Влияние", - "reason": "best score 0.0 below threshold", + "qobuz_id": 212616281, + "score": 30, + "query": "NUNCHUCK Xelishurt", + "reason": "best score 30.0 below threshold", "matched": false }, { "source": { - "source_id": "5aV6NxUaWtQdDV4K6VSLww", - "title": "Hej, czy nie wiecie", + "source_id": "3pyNyyNnl4EnzlURp9DNeN", + "title": "LATIOS", "artists": [ - "Kult" + "Comb4t" ], - "album": "Your Eyes", - "duration_ms": 321013, - "isrc": "PLE781200144" + "album": "LATIOS", + "duration_ms": 62857, + "isrc": "QZK6L2169272", + "explicit": true }, - "qobuz_id": 364609670, + "qobuz_id": 296431123, + "score": 2.75, + "query": "LATIOS", + "reason": "best score 2.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6FLrYHKNx2BqaUZFVD7OOz", + "title": "HABANERO", + "artists": [ + "Ethan Ross" + ], + "album": "HABANERO", + "duration_ms": 115059, + "isrc": "QZMEM2291615", + "explicit": true + }, + "qobuz_id": 209838756, + "score": 27, + "query": "HABANERO Ethan Ross", + "reason": "best score 27.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2oBNFjcHiAaXIUawReBA7E", + "title": "SECLUDED", + "artists": [ + "Eldritch" + ], + "album": "GAME OF LIFE", + "duration_ms": 106951, + "isrc": "AUBEC2313459", + "explicit": true + }, + "qobuz_id": 231227456, + "score": 30, + "query": "SECLUDED Eldritch", + "reason": "best score 30.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "687z7yr1iXDXpD7KV6Dbrj", + "title": "VENOM", + "artists": [ + "Eldritch" + ], + "album": "VENOM", + "duration_ms": 117293, + "isrc": "QZK6P2194831" + }, + "qobuz_id": 178610124, "score": 19, - "query": "Hej, czy nie wiecie Kult", + "query": "VENOM Eldritch", "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "3IEnTBT73UBrJr1U0KoSvG", - "title": "Krew Boga", + "source_id": "07pc3rOoloA8nVbCEnf5Rn", + "title": "PSYCHO!", "artists": [ - "Kult" + "Grioten", + "Xelishurt", + "Trunja" ], - "album": "Kult", - "duration_ms": 163506, - "isrc": "PLE781200063" + "album": "PSYCHO!", + "duration_ms": 102345, + "isrc": "QZTB52267105", + "explicit": true }, - "qobuz_id": 315915895, - "score": 11.944444444444443, - "query": "Krew Boga", + "qobuz_id": 12983962, + "score": 19, + "query": "PSYCHO! Grioten", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6MknWxVxaShYEmx2BEaWZk", + "title": "Fever Dreams", + "artists": [ + "Istasha", + "outsiderX" + ], + "album": "Fever Dreams", + "duration_ms": 113113, + "isrc": "QZK6J2147629", + "explicit": true + }, + "qobuz_id": 120897556, + "score": 19, + "query": "Fever Dreams Istasha", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2wFcemVbQpD33rFTWyDefJ", + "title": "MYBAD!", + "artists": [ + "Grioten", + "Ethan Ross", + "Sayfalse", + "SaintRxse" + ], + "album": "MYBAD!", + "duration_ms": 118032, + "isrc": "QZFYZ2356942", + "explicit": true + }, + "qobuz_id": 330398220, + "score": 32, + "query": "MYBAD!", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "55Obwpwcw9uoR4XA9eqn6i", + "title": "Grudge Match", + "artists": [ + "Sugs", + "$atori Zoom" + ], + "album": "Grudge Match", + "duration_ms": 172800, + "isrc": "QZHNA2029086", + "explicit": true + }, + "qobuz_id": 367314533, + "score": 29, + "query": "Grudge Match", + "reason": "best score 29.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3BsVgJM44KVQL2tkU5U66d", + "title": "OH NO!", + "artists": [ + "Dexndre", + "MUPP" + ], + "album": "OH NO!", + "duration_ms": 116980, + "isrc": "QZDA42243545", + "explicit": true + }, + "qobuz_id": 148656671, + "score": 19, + "query": "OH NO! Dexndre", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6ljsBxBrCZOpZh9cJMMdRp", + "title": "ZUMIEZGIRL", + "artists": [ + "Sadzilla", + "B-Train" + ], + "album": "IGNORANT", + "duration_ms": 140048, + "isrc": "SE6TI2102015", + "explicit": true + }, + "qobuz_id": 396262918, + "score": 8.097826086956522, + "query": "ZUMIEZGIRL Sadzilla", + "reason": "best score 8.1 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7bHCMy74FWuCYOYCZw6wE8", + "title": "WHATS UP?", + "artists": [ + "Eldritch" + ], + "album": "GAME OF LIFE", + "duration_ms": 148741, + "isrc": "AUBEC2313457", + "explicit": true + }, + "qobuz_id": 129557036, + "score": 16.63888888888889, + "query": "WHATS UP? Eldritch", + "reason": "best score 16.6 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5SFRuyJsFPyqdMsTxZwrMn", + "title": "THINGS I NEED", + "artists": [ + "Eldritch" + ], + "album": "GAME OF LIFE", + "duration_ms": 122697, + "isrc": "AUBEC2313456", + "explicit": true + }, + "qobuz_id": 46223973, + "score": 21.42307692307692, + "query": "THINGS I NEED Eldritch", + "reason": "best score 21.4 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2yADOpOH2vBnEqak0hSWp3", + "title": "Outlast", + "artists": [ + "Downfvll" + ], + "album": "Outlast", + "duration_ms": 151500, + "isrc": "QZPLR2069573", + "explicit": true + }, + "qobuz_id": 115849887, + "score": 35, + "query": "Outlast", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6PbKci69DtLKqooe9FGbQZ", + "title": "The Pylons", + "artists": [ + "Sugs" + ], + "album": "The Pylons", + "duration_ms": 106000, + "isrc": "QZDA42156990", + "explicit": true + }, + "qobuz_id": 171591465, + "score": 11.69230769230769, + "query": "The Pylons", + "reason": "best score 11.7 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5jX0F1iR4GnlXbpd6FVSEB", + "title": "FLEXED UP", + "artists": [ + "Sadzilla", + "Blake Basic" + ], + "album": "MACH 5", + "duration_ms": 174456, + "isrc": "SE6XY2173342", + "explicit": true + }, + "qobuz_id": 362928683, + "score": 35, + "query": "FLEXED UP", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4zuO9RdA7guzi1dTXRfN57", + "title": "TO ME", + "artists": [ + "Prompto" + ], + "album": "TO ME", + "duration_ms": 186000, + "isrc": "QZFZ72343197", + "explicit": true + }, + "qobuz_id": 381364957, + "score": 10, + "query": "TO ME", + "reason": "best score 10.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6CguKwYX0UMnzcX5nq9udi", + "title": "Obey", + "artists": [ + "Khantrast" + ], + "album": "Obey", + "duration_ms": 127424, + "isrc": "USANG2251097", + "explicit": true + }, + "qobuz_id": 182533216, + "score": 24, + "query": "Obey Khantrast", + "reason": "best score 24.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6APgOMkG1jkeFZD3rfCpvp", + "title": "dedd barchetta", + "artists": [ + "Sugs" + ], + "album": "dedd barchetta", + "duration_ms": 80029, + "isrc": "QZMEQ2013236", + "explicit": true + }, + "qobuz_id": 271855312, + "score": 14, + "query": "dedd barchetta Sugs", + "reason": "best score 14.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5YU4HAWwVhcCVx5myqzC5h", + "title": "Talk", + "artists": [ + "Prompto" + ], + "album": "Talk", + "duration_ms": 106299, + "isrc": "QZHNA2366443", + "explicit": true + }, + "qobuz_id": 35541911, + "score": 19, + "query": "Talk", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7FaZQbfdacnan50Re5R420", + "title": "WHAT I BEEN ON!", + "artists": [ + "CAIRO!", + "LOAT!", + "farofinat beats" + ], + "album": "WHAT I BEEN ON!", + "duration_ms": 123854, + "isrc": "QZFZ62345137", + "explicit": true + }, + "qobuz_id": 326770797, + "score": 32, + "query": "WHAT I BEEN ON!", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1HrDCdmBdsXPrQA9euvQwy", + "title": "Underworld Cruisin'", + "artists": [ + "CoaastGxd", + "Netuh" + ], + "album": "Underworld Cruisin'", + "duration_ms": 116718, + "isrc": "QZRP52187309", + "explicit": true + }, + "qobuz_id": 304410095, + "score": 6.111111111111112, + "query": "Underworld Cruisin' CoaastGxd", + "reason": "best score 6.1 below threshold", + "matched": false + }, + { + "source": { + "source_id": "51IlI8XLa3kmfRub5GJTxa", + "title": "#TokyoGxng", + "artists": [ + "KR:ONE", + "Grioten" + ], + "album": "#TokyoGxng", + "duration_ms": 115753, + "isrc": "QZHNB2334577", + "explicit": true + }, + "qobuz_id": 361433362, + "score": 0, + "query": "#TokyoGxng KR:ONE", + "reason": "best score 0.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0BV0AYGLVlu2SdjN3J9twp", + "title": "Fed Up", + "artists": [ + "Ghostemane" + ], + "album": "ANTI-ICON", + "duration_ms": 151625, + "isrc": "ZZOPM2003235", + "explicit": true + }, + "qobuz_id": 349694432, + "score": 35, + "query": "Fed Up Ghostemane", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3bduzfHDlELafbuxtbyRSS", + "title": "MADRID", + "artists": [ + "Eldritch" + ], + "album": "MADRID", + "duration_ms": 108394, + "isrc": "QZK6F2100566", + "explicit": true + }, + "qobuz_id": 225087419, + "score": 19, + "query": "MADRID Eldritch", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7dFxI3iA38EzPGv7FoJg5e", + "title": "TAHITI BL33DIN", + "artists": [ + "Sugs" + ], + "album": "TAHITI BL33DIN", + "duration_ms": 151680, + "isrc": "QZNWY2105263", + "explicit": true + }, + "qobuz_id": 1781287, + "score": 13.926282051282051, + "query": "TAHITI BL33DIN Sugs", + "reason": "best score 13.9 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4MCdw9C8q7QgqRyqGr0h5E", + "title": "Knockout", + "artists": [ + "XANAKIN SKYWOK", + "Yung Kage", + "OBLXKQ" + ], + "album": "Knockout", + "duration_ms": 108000, + "isrc": "QM24S2301453", + "explicit": true + }, + "qobuz_id": 121218346, + "score": 30, + "query": "Knockout XANAKIN SKYWOK", + "reason": "best score 30.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3VSCn5YrX3FfV9fmufazDu", + "title": "Fourfold Funeral", + "artists": [ + "do not resurrect", + "adjacen7" + ], + "album": "GR/IM", + "duration_ms": 115066, + "isrc": "QZRP42299945", + "explicit": true + }, + "qobuz_id": 239071390, + "score": 27, + "query": "Fourfold Funeral do not resurrect", + "reason": "best score 27.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5eZfJUO6eFwJidth6rngwW", + "title": "ANIME TITTIES!", + "artists": [ + "Doe Slurp", + "RainingOnRoses", + "Kid Carrillo" + ], + "album": "ANIME TITTIES!", + "duration_ms": 160673, + "isrc": "SE6SA2260392", + "explicit": true + }, + "qobuz_id": 211535718, + "score": 30, + "query": "ANIME TITTIES! Doe Slurp", + "reason": "best score 30.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6lBjqdPLsOxLSKrBPQufi5", + "title": "ROLEPLAY", + "artists": [ + "OMXNEMO", + "YNG Martyr", + "Lucie's Nightmare", + "ISSBROKIE" + ], + "album": "ROLEPLAY", + "duration_ms": 178953, + "isrc": "QZES92291368", + "explicit": true + }, + "qobuz_id": 287571778, + "score": 19, + "query": "ROLEPLAY OMXNEMO", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3GXuNQW5cJK5rJDaGqbhma", + "title": "SASS", + "artists": [ + "YukiBeats", + "Eldritch" + ], + "album": "PINK", + "duration_ms": 81110, + "isrc": "QZTB22206091", + "explicit": true + }, + "qobuz_id": 96540052, + "score": 11.136363636363637, + "query": "SASS YukiBeats", + "reason": "best score 11.1 below threshold", + "matched": false + }, + { + "source": { + "source_id": "311K2ktfJuM0WAj4zJ1yyI", + "title": "TOOTHACHE!", + "artists": [ + "MadeOfWax" + ], + "album": "TOOTHACHE!", + "duration_ms": 103800, + "isrc": "QZDA72329649", + "explicit": true + }, + "qobuz_id": 282378235, + "score": 25, + "query": "TOOTHACHE! MadeOfWax", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "01NU6YnRuMjAxNCxGvbz5j", + "title": "Necrotic Grip", + "artists": [ + "do not resurrect" + ], + "album": "Necrotic Grip", + "duration_ms": 150603, + "isrc": "QZES72124512", + "explicit": true + }, + "qobuz_id": 239071358, + "score": 30, + "query": "Necrotic Grip do not resurrect", + "reason": "best score 30.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2oy5cPUnQv8ckQnyEYtIw7", + "title": "Dark Winter", + "artists": [ + "ONI INC.", + "Xelishurt" + ], + "album": "BEYOND NOTHING", + "duration_ms": 202764, + "isrc": "QZMHN2235776", + "explicit": true + }, + "qobuz_id": 272354485, + "score": 27, + "query": "Dark Winter ONI INC.", + "reason": "best score 27.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5BZWL9MgsmxkANTZxd8qGu", + "title": "LOUD \u0026 CLEAR", + "artists": [ + "Eldritch" + ], + "album": "GAME OF LIFE", + "duration_ms": 129764, + "isrc": "AUBEC2313458", + "explicit": true + }, + "qobuz_id": 46554630, + "score": 19, + "query": "LOUD \u0026 CLEAR Eldritch", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5ylVY0X5k4rcaFNFbSHVCK", + "title": "let it bang", + "artists": [ + "Big Melancholy", + "Faceless 1-7" + ], + "album": "Melancholia", + "duration_ms": 121114, + "isrc": "QZTRX2363554", + "explicit": true + }, + "qobuz_id": 33183838, + "score": 19, + "query": "let it bang Big Melancholy", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4tpcpK67CW3tVtGqMgy24s", + "title": "Quickly Digest", + "artists": [ + "Press Kampe", + "Ethan Ross" + ], + "album": "Quickly Digest", + "duration_ms": 135011, + "isrc": "QZHNB2320625", + "explicit": true + }, + "qobuz_id": 2543808, + "score": 10, + "query": "Quickly Digest Press Kampe", + "reason": "best score 10.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4CDx4p07zibQCCQ8spXhH3", + "title": "DEATHNOTE$", + "artists": [ + "Ethan Ross", + "Luga", + "Nightshift TV" + ], + "album": "DEATHNOTE$", + "duration_ms": 107000, + "isrc": "QZMER2208840", + "explicit": true + }, + "qobuz_id": 255041798, + "score": 25, + "query": "DEATHNOTE$", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5xskFB7cM39W08wVQyILKA", + "title": "Cellcast", + "artists": [ + "Istasha" + ], + "album": "Swallowing Centipedes", + "duration_ms": 181958, + "isrc": "QZFZ42395556", + "explicit": true + }, + "qobuz_id": 365708341, + "score": 20, + "query": "Cellcast Istasha", + "reason": "best score 20.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2FbLQfqTwwJSm4fB51qPW4", + "title": "SIN CITY", + "artists": [ + "Pyrrhic" + ], + "album": "SIN CITY", + "duration_ms": 159422, + "isrc": "QZK6H2369548", + "explicit": true + }, + "qobuz_id": 292753792, + "score": 32, + "query": "SIN CITY Pyrrhic", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0H9S2cechOukBBGZqfIXuO", + "title": "Enter The Fuego", + "artists": [ + "Daegho" + ], + "album": "Enter The Fuego", + "duration_ms": 123223, + "isrc": "QZNWW2099329", + "explicit": true + }, + "qobuz_id": 208653592, + "score": 32.06818181818181, + "query": "Enter The Fuego Daegho", + "reason": "best score 32.1 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5rGiRhXZAhj5tSZw2dkuh6", + "title": "Alone at the Club", + "artists": [ + "Arsx", + "666SWISH", + "DeeKay" + ], + "album": "Alone at the Club", + "duration_ms": 171428, + "isrc": "QM24S2308351", + "explicit": true + }, + "qobuz_id": 368250770, + "score": 25, + "query": "Alone at the Club", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0jqRjG1trk8BsI5z9VwxLY", + "title": "maker", + "artists": [ + "Yung Griffin", + "local zero" + ], + "album": "maker", + "duration_ms": 220511, + "isrc": "QZES51965245", + "explicit": true + }, + "qobuz_id": 2057799, + "score": 17.75, + "query": "maker Yung Griffin", + "reason": "best score 17.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "12HdXCa4nAyFrMEtBvP680", + "title": "S!KE", + "artists": [ + "Snøw", + "Skinny Atlas" + ], + "album": "S!KE", + "duration_ms": 136888, + "isrc": "SE6HN2035673", + "explicit": true + }, + "qobuz_id": 202396119, + "score": 9.5, + "query": "S!KE", + "reason": "best score 9.5 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4LMlIX9Y8qziRafzW30mGc", + "title": "you never meant it", + "artists": [ + "Skinny Atlas", + "Snøw", + "cøzybøy" + ], + "album": "you never meant it", + "duration_ms": 117692, + "isrc": "SE6SA2043468", + "explicit": true + }, + "qobuz_id": 381926305, + "score": 19, + "query": "you never meant it Skinny Atlas", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7BdlyzVvOqmwPH9dYtZfsx", + "title": "Dead Eyes", + "artists": [ + "Promoting Sounds", + "Powfu", + "Ouse" + ], + "album": "Dead Eyes", + "duration_ms": 219428, + "isrc": "SE6I31965181", + "explicit": true + }, + "qobuz_id": 141703649, + "score": 29, + "query": "Dead Eyes", + "reason": "best score 29.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2NYPx7YjNrHteC2RxzTzTZ", + "title": "Losing Interest", + "artists": [ + "Papithbk" + ], + "album": "Thbk.", + "duration_ms": 93360, + "isrc": "TCAEZ2015742" + }, + "qobuz_id": 192892494, + "score": 44.333333333333336, + "query": "Losing Interest Papithbk", + "reason": "best score 44.3 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1DogGoIMkFf8jsrs3AlTUQ", + "title": "I Don't Understand", + "artists": [ + "Seon" + ], + "album": "I Know You're Broken", + "duration_ms": 153600, + "isrc": "QZHNC2159318" + }, + "qobuz_id": 95951845, + "score": 26.82608695652174, + "query": "I Don't Understand", + "reason": "best score 26.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6MZ91tbZxwwqimJffOoLsW", + "title": "Computer Crash", + "artists": [ + "Lui Joseph" + ], + "album": "Computer Crash", + "duration_ms": 169508, + "isrc": "QZFZ31915440" + }, + "qobuz_id": 281101540, + "score": 30, + "query": "Computer Crash Lui Joseph", + "reason": "best score 30.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2PAwhchKPd8F5FDYXQmZgL", + "title": "Float", + "artists": [ + "Seon", + "Kado" + ], + "album": "Float", + "duration_ms": 162901, + "isrc": "QZDA42174922", + "explicit": true + }, + "qobuz_id": 134596864, + "score": 25, + "query": "Float", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2kUbGfTv5miiBD2R21i5Gu", + "title": "can't let my guard down", + "artists": [ + "Promoting Sounds", + "Ezra" + ], + "album": "can't let my guard down", + "duration_ms": 98909, + "isrc": "SE6QE2351058" + }, + "qobuz_id": 400347043, + "score": 17.391304347826086, + "query": "can't let my guard down Promoting Sounds", + "reason": "best score 17.4 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0MSLJOWljfQr067PYyndK9", + "title": "Tired Eyes", + "artists": [ + "Kado", + "Powfu", + "Promoting Sounds", + "vict molina" + ], + "album": "Tired Eyes", + "duration_ms": 163604, + "isrc": "SE6QE2296773" + }, + "qobuz_id": 35995430, + "score": 19, + "query": "Tired Eyes Kado", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3X4sErWRnQCmhhZMGv6r51", + "title": "when we were 16", + "artists": [ + "Rxseboy", + "Powfu", + "Mishaal Tamer" + ], + "album": "when we were 16", + "duration_ms": 195745, + "isrc": "QZHN61904808", + "explicit": true + }, + "qobuz_id": 133619634, + "score": 29, + "query": "when we were 16", + "reason": "best score 29.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4pbcWPWlVftf3uSTDE3NQD", + "title": "Just Hold Me", + "artists": [ + "Ely Waves" + ], + "album": "Just Hold Me", + "duration_ms": 204771, + "isrc": "QZFYY2108301" + }, + "qobuz_id": 44594049, + "score": 25, + "query": "Just Hold Me Ely Waves", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5g4fDB0jSzxnr7mnXyS3AU", + "title": "charades", + "artists": [ + "Beautiful Beats", + "Yung Crusha", + "ChrispyD" + ], + "album": "charades", + "duration_ms": 72307, + "isrc": "QZTB22248840" + }, + "qobuz_id": 89006404, + "score": 25, + "query": "charades", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "43Jd1RTvVeYM065FmzDrKV", + "title": "you dont really want me", + "artists": [ + "Landon Schafer" + ], + "album": "you dont really want me", + "duration_ms": 65031, + "isrc": "QZTB92352749", + "explicit": true + }, + "qobuz_id": 150191797, + "score": 12.154761904761905, + "query": "you dont really want me Landon Schafer", + "reason": "best score 12.2 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0mp9nN5CtD1xfDeMoebDPM", + "title": "To The Souls That Leave Us Too Soon", + "artists": [ + "Promoting Sounds", + "Step Aside" + ], + "album": "To The Souls That Leave Us Too Soon", + "duration_ms": 156428, + "isrc": "QZGWW1998632" + }, + "qobuz_id": 471484, + "score": 11.857142857142858, + "query": "To The Souls That Leave Us Too Soon Promoting Sounds", "reason": "best score 11.9 below threshold", "matched": false }, { "source": { - "source_id": "7LkBr4rg4vhZjlDBVGpkkg", - "title": "Друг", + "source_id": "63hcZI0I4dinNwIevUADXm", + "title": "Love No One", "artists": [ - "Труд" + "Chri$tian Gate$" ], - "album": "1", - "duration_ms": 208561, - "isrc": "TCAEA1814658" + "album": "Love No One", + "duration_ms": 113502, + "isrc": "QZES72075124" }, - "qobuz_id": 58952498, - "score": 7, - "query": "Друг", - "reason": "best score 7.0 below threshold", + "qobuz_id": 111887206, + "score": 19, + "query": "Love No One Chri$tian Gate$", + "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "0qlCTm0U6Jcgx29HEYIXrg", - "title": "Группа крови", + "source_id": "6v5vr3SqSczkqIIVeW8RjZ", + "title": "Never Be Alright", "artists": [ - "Kino" + "Seon" ], - "album": "Последний герой", - "duration_ms": 235107, - "isrc": "RUB421401399" + "album": "Never Be Alright", + "duration_ms": 168308, + "isrc": "QZDA51900756", + "explicit": true }, - "qobuz_id": 361265393, - "score": 7, - "query": "Группа крови Kino", - "reason": "best score 7.0 below threshold", + "qobuz_id": 224053942, + "score": 24.13888888888889, + "query": "Never Be Alright", + "reason": "best score 24.1 below threshold", "matched": false }, { "source": { - "source_id": "4g87T7h8coshsA1zJjFFbG", - "title": "Звезда по имени Солнце", + "source_id": "2brjzWiBAfuX7r6eZEk5qG", + "title": "Tic Tac Toe", "artists": [ - "Kino" + "Kado", + "Promoting Sounds" ], - "album": "Звезда по имени Солнце", - "duration_ms": 225666, - "isrc": "RUB421401323" + "album": "Tic Tac Toe", + "duration_ms": 190693, + "isrc": "SE6XW2275150" }, - "qobuz_id": 285298456, - "score": 10, - "query": "Звезда по имени Солнце Kino", - "reason": "best score 10.0 below threshold", + "qobuz_id": 299579709, + "score": 35, + "query": "Tic Tac Toe", + "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "7nzMU6ive8Zpv6Puqid46W", - "title": "Пачка сигарет", + "source_id": "48tI68zHn3r3uHmGxdkKDd", + "title": "Pullin Up", "artists": [ - "Kino" + "Soda" ], - "album": "Звезда по имени Солнце", - "duration_ms": 266017, - "isrc": "RUB421401328" + "album": "Pullin Up", + "duration_ms": 115642, + "isrc": "CH6542004106", + "explicit": true }, - "qobuz_id": 58120736, - "score": 10, - "query": "Пачка сигарет", - "reason": "best score 10.0 below threshold", + "qobuz_id": 226587548, + "score": 32, + "query": "Pullin Up", + "reason": "best score 32.0 below threshold", "matched": false }, { "source": { - "source_id": "5KBuyLSC7pO8Y8kp250UFg", - "title": "Что-то не то творится", + "source_id": "5p7lSUWRO6aqN0LuawnZax", + "title": "DOVY KEUKENS HARDCORE REMIX", "artists": [ - "Utro" + "POMBAK" ], - "album": "Third Album", - "duration_ms": 226484, - "isrc": "FR59Y1700029" + "album": "DOVY KEUKENS HARDCORE REMIX", + "duration_ms": 94430, + "isrc": "QZMEQ2282969" }, - "qobuz_id": 395322201, - "score": 7, - "query": "Что-то не то творится Utro", - "reason": "best score 7.0 below threshold", + "qobuz_id": 63183231, + "score": 5.925925925925926, + "query": "DOVY KEUKENS HARDCORE REMIX POMBAK", + "reason": "best score 5.9 below threshold", "matched": false }, { "source": { - "source_id": "0c58luGUfo3kkYLwkAQfxO", - "title": "Лето", + "source_id": "13FiGsKcPLHaXj8IXeUPJr", + "title": "Gangsta's Paradise", "artists": [ - "Kino" + "Danimal" ], - "album": "Чёрный альбом", - "duration_ms": 354671, - "isrc": "RUB421401407" + "album": "Gangsta's Paradise", + "duration_ms": 114206, + "isrc": "NL1DT2200120" }, - "qobuz_id": 382324691, - "score": -6, - "query": "Лето Kino", - "reason": "best score -6.0 below threshold", + "qobuz_id": 123127183, + "score": 35, + "query": "Gangsta's Paradise Danimal", + "reason": "best score 35.0 below threshold", "matched": false }, { "source": { - "source_id": "1SCwVUbxOrqU7NADHm7x7j", - "title": "Кукушка", + "source_id": "3enFqjfdvWKja1fa7U0m7Y", + "title": "Love Lockdown", "artists": [ - "Kino" + "SP3CTRUM" ], - "album": "Чёрный альбом", - "duration_ms": 398658, - "isrc": "RUB421401409" + "album": "Love Lockdown", + "duration_ms": 116575, + "isrc": "GX89G2497524" }, - "qobuz_id": 34593294, - "score": 10, - "query": "Кукушка Kino", - "reason": "best score 10.0 below threshold", + "qobuz_id": 129106877, + "score": 25, + "query": "Love Lockdown", + "reason": "best score 25.0 below threshold", "matched": false }, { "source": { - "source_id": "3fmGzUfQskSBj7g2DEtoxr", - "title": "Белые стены", + "source_id": "6yR5qjkO6fIDAp6zvlniRU", + "title": "Tell Me How (Sped Up)", "artists": [ - "Группа Хмурый" + "Anthony Keyrouz", + "offrami", + "Jeannette" ], - "album": "Картина 2, No. 17/5", - "duration_ms": 193620, - "isrc": "RUA1H1757829" + "album": "Tell Me How (Sped Up)", + "duration_ms": 118009, + "isrc": "GX8LD2340356" }, - "qobuz_id": 351328975, - "score": 7, - "query": "Белые стены Группа Хмурый", - "reason": "best score 7.0 below threshold", + "qobuz_id": 210952736, + "score": 40.425, + "query": "Tell Me How (Sped Up) Anthony Keyrouz", + "reason": "best score 40.4 below threshold", "matched": false }, { "source": { - "source_id": "5WaSBTP8rqk6YckGobgnkz", - "title": "Спокойная ночь", + "source_id": "6bDXSq6ADKac3zhy3bk3fa", + "title": "Spectrum (Say My Name) - Sped Up", "artists": [ - "Kino" + "Anthony Keyrouz" ], - "album": "Последний герой", - "duration_ms": 382803, - "isrc": "RUB421401403" + "album": "Spectrum (Say My Name) - Sped Up", + "duration_ms": 145651, + "isrc": "NLT2H2300433" }, - "qobuz_id": 367344889, - "score": -6, - "query": "Спокойная ночь Kino", - "reason": "best score -6.0 below threshold", + "qobuz_id": 119789205, + "score": 37.14285714285714, + "query": "Spectrum (Say My Name) - Sped Up Anthony Keyrouz", + "reason": "best score 37.1 below threshold", "matched": false }, { "source": { - "source_id": "16s07AzsIWbQywqbaoOZGU", - "title": "Весна", + "source_id": "7czLEQKuvTcRfYZBJJobmh", + "title": "Home", "artists": [ - "Dolphin" + "NEFFEX" ], - "album": "Звезда", - "duration_ms": 291320, - "isrc": "US6R21523021" + "album": "Home", + "duration_ms": 136800, + "isrc": "TCADX1878654" }, - "qobuz_id": 800817, - "score": 4, - "query": "Весна Dolphin", - "reason": "best score 4.0 below threshold", + "qobuz_id": 46264841, + "score": 19, + "query": "Home", + "reason": "best score 19.0 below threshold", "matched": false }, { "source": { - "source_id": "11qffnsT8x96r4NUnsfNjx", - "title": "Нимфа", + "source_id": "2RaqBnbdkBHeGZPQNt5b4C", + "title": "What's Up", "artists": [ - "Аметистовые Вены" + "NEFFEX" ], - "album": "Так красиво догорает закат", - "duration_ms": 253714, - "isrc": "AEA0D1840623" + "album": "Fight Back: The Collection", + "duration_ms": 133333, + "isrc": "TCADW1892362", + "explicit": true }, - "qobuz_id": 202438220, - "score": 10, - "query": "Нимфа Аметистовые Вены", - "reason": "best score 10.0 below threshold", + "qobuz_id": 129557036, + "score": 29, + "query": "What's Up NEFFEX", + "reason": "best score 29.0 below threshold", "matched": false }, { "source": { - "source_id": "7eywk7AnX4wxB6xTECyUwY", - "title": "Электроприборы", + "source_id": "2FpWhUMOPGUVR95DkfKjGH", + "title": "Cold", "artists": [ - "Товарищ Астроном" + "NEFFEX" ], - "album": "Верба", - "duration_ms": 335333, - "isrc": "QZ8LD1996743" + "album": "Cold", + "duration_ms": 186240, + "isrc": "TCADO1880366" }, - "qobuz_id": 175948575, - "score": -6, - "query": "Электроприборы Товарищ Астроном", - "reason": "best score -6.0 below threshold", + "qobuz_id": 192467397, + "score": 22.5, + "query": "Cold NEFFEX", + "reason": "best score 22.5 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2RoNWy5EhHSYa2mYA8esHf", + "title": "Nightmare", + "artists": [ + "NEFFEX" + ], + "album": "Nightmare", + "duration_ms": 184750, + "isrc": "TCADK1774228" + }, + "qobuz_id": 2270592, + "score": 19, + "query": "Nightmare NEFFEX", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4J4eojl30tJQoBq7usE9N7", + "title": "Stomp", + "artists": [ + "Geehee", + "Tunnel Factory" + ], + "album": "Stomp", + "duration_ms": 252914, + "isrc": "DEAR42484013" + }, + "qobuz_id": 127880508, + "score": 35, + "query": "Stomp", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "14istVIf5NGd0NgfJykv5a", + "title": "Stranger (To Stability)", + "artists": [ + "Marnik" + ], + "album": "Stranger (To Stability)", + "duration_ms": 189239, + "isrc": "NL4VT2100382" + }, + "qobuz_id": 378271014, + "score": 29.774193548387096, + "query": "Stranger (To Stability) Marnik", + "reason": "best score 29.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3iIUWennhQXqpeGk9MdooV", + "title": "The Feeling - Schranz Edit", + "artists": [ + "ZENTEX" + ], + "album": "The Feeling (Schranz Edit)", + "duration_ms": 232690, + "isrc": "QZK6N2495120" + }, + "qobuz_id": 36062048, + "score": 19.5, + "query": "The Feeling - Schranz Edit ZENTEX", + "reason": "best score 19.5 below threshold", + "matched": false + }, + { + "source": { + "source_id": "1Q7O0QGbnNsEU4nK0dAb90", + "title": "DRILL | дрель | ドリル |", + "artists": [ + "Kylof Söze" + ], + "album": "DRILL | дрель | ドリル |", + "duration_ms": 70335, + "isrc": "QZH5E2049354", + "explicit": true + }, + "qobuz_id": 286661682, + "score": 14, + "query": "DRILL | дрель | ドリル | Kylof Söze", + "reason": "best score 14.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "32rPWvaBTobH77Ouiwq4hI", + "title": "Woah!", + "artists": [ + "CAIRO!" + ], + "album": "Woah!", + "duration_ms": 98240, + "isrc": "QZHN41916888", + "explicit": true + }, + "qobuz_id": 69061649, + "score": 25, + "query": "Woah!", + "reason": "best score 25.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2WopkuUzdKfDIPp3KiRb2Z", + "title": "Speedcore Fotze", + "artists": [ + "TerrorClown", + "Lord Of Speed" + ], + "album": "10 Years of Violence Sampler", + "duration_ms": 223200, + "isrc": "DEAR42125127" + }, + "qobuz_id": 81700119, + "score": 12, + "query": "Speedcore Fotze TerrorClown", + "reason": "best score 12.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5KL2twbJten3QcKY1HQWxy", + "title": "Pick Me Up Then Let Me Fall", + "artists": [ + "LILRAE2K" + ], + "album": "HOT \u0026 COLD", + "duration_ms": 146266, + "isrc": "NZAM01900174" + }, + "qobuz_id": 147487902, + "score": 17.61904761904762, + "query": "Pick Me Up Then Let Me Fall LILRAE2K", + "reason": "best score 17.6 below threshold", + "matched": false + }, + { + "source": { + "source_id": "7KZrxt9ZSNPzjwwTlkL41p", + "title": "Run It Up", + "artists": [ + "Lil Tra$h", + "Lil Pinecone" + ], + "album": "Lil Tra$h", + "duration_ms": 135669, + "isrc": "QM2PV1821081", + "explicit": true + }, + "qobuz_id": 220203697, + "score": 35.55555555555556, + "query": "Run It Up Lil Tra$h", + "reason": "best score 35.6 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4o2CokvPJ57WvbtO984RW3", + "title": "Hope", + "artists": [ + "Two:22" + ], + "album": "Eudaemonia", + "duration_ms": 195411, + "isrc": "QZDA41815502", + "explicit": true + }, + "qobuz_id": 103568567, + "score": 19, + "query": "Hope", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4Xn89qH8uKOumgvAGSvY3U", + "title": "Stay", + "artists": [ + "iamjakehill" + ], + "album": "Solace", + "duration_ms": 185070, + "isrc": "QM4DW1881220", + "explicit": true + }, + "qobuz_id": 34736408, + "score": 32, + "query": "Stay iamjakehill", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4WnxIeQY1RwKos4MUuYyS9", + "title": "Paper Planes", + "artists": [ + "wynn", + "Niacavaon" + ], + "album": "Paper Planes", + "duration_ms": 193947, + "isrc": "DEQ022009840" + }, + "qobuz_id": 291909147, + "score": 32, + "query": "Paper Planes", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "6srOcowjLHsaPM2MArMGs5", + "title": "i'm not suicidal, ur suicidal!", + "artists": [ + "kodiak" + ], + "album": "i'm not suicidal, ur suicidal!", + "duration_ms": 181067, + "isrc": "QZDA41986424" + }, + "qobuz_id": 402137921, + "score": 19.285714285714285, + "query": "i'm not suicidal, ur suicidal! kodiak", + "reason": "best score 19.3 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0lyPdGa95G5QzmdDoQT71G", + "title": "Pitter Patter", + "artists": [ + "KAAG", + "Davis Mallory" + ], + "album": "Pitter Patter", + "duration_ms": 194728, + "isrc": "DKUCA1800075" + }, + "qobuz_id": 122596255, + "score": 29, + "query": "Pitter Patter", + "reason": "best score 29.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "5C6UoWO8yA33mdkRTv2Pdg", + "title": "Darkness", + "artists": [ + "Josh A", + "Lil Revive" + ], + "album": "Disgrace", + "duration_ms": 112076, + "isrc": "QZHNB1921799", + "explicit": true + }, + "qobuz_id": 133519598, + "score": 16.607142857142858, + "query": "Darkness Josh A", + "reason": "best score 16.6 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2CHuu85IjdomB4wPkDwoZp", + "title": "Endless Nightmare", + "artists": [ + "Josh A", + "iamjakehill" + ], + "album": "Chaos", + "duration_ms": 151308, + "isrc": "TCADL1877224", + "explicit": true + }, + "qobuz_id": 325294923, + "score": 19, + "query": "Endless Nightmare Josh A", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "175DPQiTtnoCBSUC1y0G2g", + "title": "Asthma", + "artists": [ + "RiverKinn" + ], + "album": "The Fox With Cloven Hooves", + "duration_ms": 181733, + "isrc": "QZDA51843291", + "explicit": true + }, + "qobuz_id": 89513829, + "score": 35, + "query": "Asthma", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "56TOfxnRzSRbFRw8J6C4IT", + "title": "Suicidal Thoughts", + "artists": [ + "Josh A", + "iamjakehill" + ], + "album": "Better off Dead", + "duration_ms": 181727, + "isrc": "TCADH1744549", + "explicit": true + }, + "qobuz_id": 293833983, + "score": 35, + "query": "Suicidal Thoughts Josh A", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "4B740yPT342wlqaxO3q7nM", + "title": "Fifty Shades", + "artists": [ + "s0cliché" + ], + "album": "Fifty Shades", + "duration_ms": 176470, + "isrc": "QZFYY2031354", + "explicit": true + }, + "qobuz_id": 22389909, + "score": 5.034965034965035, + "query": "Fifty Shades s0cliché", + "reason": "best score 5.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3k4fk2l4B2K2Y2VGElAepi", + "title": "Pain", + "artists": [ + "VyOk" + ], + "album": "ODD COLLECTION", + "duration_ms": 157214, + "isrc": "CA5KR1908110", + "explicit": true + }, + "qobuz_id": 134794932, + "score": 19, + "query": "Pain", + "reason": "best score 19.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2DlpTlMtYBzDj75OhJVRUv", + "title": "Bury a Friend", + "artists": [ + "robert." + ], + "album": "Bury a Friend", + "duration_ms": 192315, + "isrc": "GBKPL1951498" + }, + "qobuz_id": 77469843, + "score": 35, + "query": "Bury a Friend", + "reason": "best score 35.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "77e0K7vWuBunVj16g7rClf", + "title": "Too Many Dead", + "artists": [ + "Josh A", + "iamjakehill" + ], + "album": "Better Off Dead III", + "duration_ms": 166955, + "isrc": "UST8K1887837", + "explicit": true + }, + "qobuz_id": 142023630, + "score": 23.92857142857143, + "query": "Too Many Dead", + "reason": "best score 23.9 below threshold", + "matched": false + }, + { + "source": { + "source_id": "71FkzN3DmgwZaMKsvXkYWi", + "title": "Last Night I Accepted Death W Open Arms", + "artists": [ + "Lil Revive" + ], + "album": "Slasher", + "duration_ms": 152027, + "isrc": "QZES51818852", + "explicit": true + }, + "qobuz_id": 133358931, + "score": 26.298076923076923, + "query": "Last Night I Accepted Death W Open Arms Lil Revive", + "reason": "best score 26.3 below threshold", + "matched": false + }, + { + "source": { + "source_id": "57b84jVYYBRxET9miVc5nZ", + "title": "Rest in Pieces", + "artists": [ + "Josh A", + "iamjakehill" + ], + "album": "Better Off Dead III", + "duration_ms": 151831, + "isrc": "UST8K1887844", + "explicit": true + }, + "qobuz_id": 196253595, + "score": 32, + "query": "Rest in Pieces", + "reason": "best score 32.0 below threshold", + "matched": false + }, + { + "source": { + "source_id": "0TphLiK4h8UQURYST08SSi", + "title": "i'm not suicidal, ur suicidal!", + "artists": [ + "Sleepy Head" + ], + "album": "i'm not suicidal, ur suicidal!", + "duration_ms": 181067, + "isrc": "QZDA41986424" + }, + "qobuz_id": 402137921, + "score": 19.285714285714285, + "query": "i'm not suicidal, ur suicidal!", + "reason": "best score 19.3 below threshold", + "matched": false + }, + { + "source": { + "source_id": "3Vi4bL9tyKxIcFnWRWKYpu", + "title": "Dear Death, I Miss You", + "artists": [ + "yung van" + ], + "album": "Dead Love", + "duration_ms": 178285, + "isrc": "QZ9JZ1771837" + }, + "qobuz_id": 322969269, + "score": 42.79220779220779, + "query": "Dear Death, I Miss You yung van", + "reason": "best score 42.8 below threshold", + "matched": false + }, + { + "source": { + "source_id": "2AT6k2cr1WuZRU4mkqt9yk", + "title": "Pick Me Up Then Let Me Fall", + "artists": [ + "LILRAE2K" + ], + "album": "Hot \u0026 Cold", + "duration_ms": 145095, + "isrc": "NZAM01900174" + }, + "qobuz_id": 5950295, + "score": 17.59259259259259, + "query": "Pick Me Up Then Let Me Fall LILRAE2K", + "reason": "best score 17.6 below threshold", "matched": false } ],