From 93d3e88bc45457b8ee5d5b87823b886b0ade0d49 Mon Sep 17 00:00:00 2001 From: Pato05 Date: Sun, 31 Mar 2024 21:33:45 +0200 Subject: [PATCH] try adding animated bars --- build.sh | 30 +- lib/ui/animated_bars.dart | 59 + lib/ui/player_screen.dart | 33 +- lib/ui/tiles.dart | 24 + page.web.json | 3563 +++++++++++++++++++++++++++++++++++++ pubspec.lock | 7 +- pubspec.yaml | 14 +- 7 files changed, 3697 insertions(+), 33 deletions(-) mode change 100644 => 100755 build.sh create mode 100644 lib/ui/animated_bars.dart create mode 100644 page.web.json diff --git a/build.sh b/build.sh old mode 100644 new mode 100755 index 6a94cb8..3f3c0c4 --- a/build.sh +++ b/build.sh @@ -1,15 +1,35 @@ echo "1. Linux" echo "2. Android" +echo "3. All" echo "" echo -n "Target? " read target -case "$target" in - 1) target="linux";; - 2) target="android --split-per-abi" -esac +build() { + set -x + flutter build $@ + set +x +} + +build_linux() { + build linux +} + +build_android() { + build apk --split-per-abi +} set -x flutter pub get flutter pub run build_runner build -flutter build $target \ No newline at end of file +set +x + +case "$target" in + 1) build_linux;; + 2) build_android;; + 3) + build_linux & + build_android & + wait + ;; +esac \ No newline at end of file diff --git a/lib/ui/animated_bars.dart b/lib/ui/animated_bars.dart new file mode 100644 index 0000000..7681810 --- /dev/null +++ b/lib/ui/animated_bars.dart @@ -0,0 +1,59 @@ +import 'dart:math'; + +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; + +class AnimatedBars extends StatefulWidget { + final double size; + final Color? color; + const AnimatedBars({ + super.key, + this.size = 24.0, + this.color, + }); + + @override + State createState() => _AnimatedBarsState(); +} + +class _AnimatedBarsState extends State + with TickerProviderStateMixin { + late final _controller = AnimationController( + vsync: this, duration: const Duration(milliseconds: 1000)) + ..repeat(reverse: true); + + @override + void dispose() { + _controller.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + final color = widget.color ?? Theme.of(context).colorScheme.onSurface; + final r = Random(); + final count = 3; + AnimatedIcons.search_ellipsis; + return SizedBox.square( + dimension: widget.size, + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceEvenly, + children: List.generate( + count, + (index) => SizedBox( + width: widget.size / count, + child: Align( + alignment: Alignment.bottomCenter, + child: SizeTransition( + sizeFactor: Tween(begin: 1.0, end: 0.2)..animate( + CurvedAnimation( + parent: _controller., + curve: Interval(0.1 * index, 0.3 * index, + curve: Curves.easeIn))), + axisAlignment: 1.0, + child: Container(color: color)), + ), + )), + )); + } +} diff --git a/lib/ui/player_screen.dart b/lib/ui/player_screen.dart index ea66422..79b3996 100644 --- a/lib/ui/player_screen.dart +++ b/lib/ui/player_screen.dart @@ -96,6 +96,7 @@ class PlayerScreen extends StatelessWidget { @override Widget build(BuildContext context) { return ChangeNotifierProvider( + lazy: false, create: (context) => BackgroundProvider(), child: PlayerArtColorScheme( child: PlayerScreenBackground( @@ -126,25 +127,21 @@ class PlayerArtColorScheme extends StatelessWidget { @override Widget build(BuildContext context) { - return Consumer( - builder: (context, backgroundProvider, child) { - if (backgroundProvider.dominantColor == null) { - // do nothing - return child!; - } + final backgroundProvider = context.watch(); + if (backgroundProvider.dominantColor == null) { + // do nothing + return child; + } - final brightness = forceDark - ? Brightness.dark - : Theme.of(context).colorScheme.brightness; + final brightness = + forceDark ? Brightness.dark : Theme.of(context).colorScheme.brightness; - return Theme( - data: Theme.of(context).copyWith( - colorScheme: ColorScheme.fromSeed( - seedColor: backgroundProvider.dominantColor!, - brightness: brightness, - )), - child: child!); - }, + return Theme( + data: Theme.of(context).copyWith( + colorScheme: ColorScheme.fromSeed( + seedColor: backgroundProvider.dominantColor!, + brightness: brightness, + )), child: child); } } @@ -233,7 +230,7 @@ class PlayerScreenBackground extends StatelessWidget { (settings.blurPlayerBackground || settings.colorGradientBackground); final color = hasBackground ? Colors.transparent - : Theme.of(context).scaffoldBackgroundColor; + : Theme.of(context).colorScheme.background; Widget widgetChild = Scaffold( appBar: appBar, backgroundColor: color, diff --git a/lib/ui/tiles.dart b/lib/ui/tiles.dart index 37d49b7..315e2d6 100644 --- a/lib/ui/tiles.dart +++ b/lib/ui/tiles.dart @@ -8,6 +8,7 @@ import 'package:freezer/api/player/player_helper.dart'; import 'package:freezer/icons.dart'; import 'package:freezer/main.dart'; import 'package:freezer/translations.i18n.dart'; +import 'package:freezer/ui/animated_bars.dart'; import '../api/definitions.dart'; import 'cached_image.dart'; @@ -117,6 +118,29 @@ class TrackTile extends StatelessWidget { width: 48.0, height: 48.0, ), + // StreamBuilder( + // initialData: audioHandler.mediaItem.value, + // stream: audioHandler.mediaItem, + // builder: (context, snapshot) { + // final child = CachedImage( + // url: artUri, + // width: 48.0, + // height: 48.0, + // ); +// + // if (snapshot.data?.id == trackId) { + // return Stack(children: [ + // child, + // const Positioned.fill( + // child: DecoratedBox( + // decoration: BoxDecoration(color: Colors.black26), + // child: AnimatedBars()), + // ), + // ]); + // } +// + // return child; + // }), onTap: onTap, onLongPress: normalizeSecondary(onSecondary), trailing: Row( diff --git a/page.web.json b/page.web.json new file mode 100644 index 0000000..19c107b --- /dev/null +++ b/page.web.json @@ -0,0 +1,3563 @@ +{ + "error": [], + "results": { + "version": "2.5", + "page_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0", + "render_id": "018db9c8-b574-726a-a2ff-09eb7e0abf54", + "page_name": "home", + "product_version": "channels/home/home-desktop.1.0", + "ga": { "screen_name": "music-home" }, + "title": "Home desktop", + "persistent": true, + "sections": [ + { + "layout": "filterable-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm", + "group_id": "65d15a4b9f446", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=default,item_position=0", + "id": "default", + "type": "flow", + "alignment": "left", + "data": { + "id": "default", + "title": "Flow", + "description": "Flow", + "assets": { + "wheelIcon": "10ce0e25ad1ef94a1597bd3ffad522a6", + "dynamicPageIcon": "5ebebf6844fcc68d192f7544081c8d21", + "hardwareSquareIcon": "91f4f6c61d09b8e2d6dbc40ce988723e", + "hardwareCircleIcon": "de71ff367986d02aaeadaca225bf3007" + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow#action=play", + "title": "Flow", + "subtitle": "Flow", + "pictures": [ + { "md5": "5ebebf6844fcc68d192f7544081c8d21", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_mood", "flow_config_genre"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=motivation,item_position=1", + "id": "motivation", + "type": "flow", + "alignment": "left", + "data": { + "id": "motivation", + "title": "Motivation", + "description": "Motivation", + "assets": { + "wheelIcon": "3e3aa0ab20a9deeaf8205541e469ac15", + "dynamicPageIcon": "0a6be3cc85fdaf033e0529f04acac686", + "hardwareSquareIcon": "46aa7cf0a2eb6da82de3380f228b4efa", + "hardwareCircleIcon": "b44c8a2a852a3a81eee4b63c88d3720b" + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/motivation#action=play", + "title": "Motivation", + "subtitle": "Motivation", + "pictures": [ + { "md5": "0a6be3cc85fdaf033e0529f04acac686", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_mood"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=party,item_position=2", + "id": "party", + "type": "flow", + "alignment": "left", + "data": { + "id": "party", + "title": "Party", + "description": "Party", + "assets": { + "wheelIcon": "f78d71d44a9c6c706413d9f36b123849", + "dynamicPageIcon": "d4b988bf7b4c286b0fa5cc60190a3275", + "hardwareSquareIcon": "d2bc6982601057314bb65eaf6440e76b", + "hardwareCircleIcon": "27842efd4c6b3098d3d3fbf636645468" + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/party#action=play", + "title": "Party", + "subtitle": "Party", + "pictures": [ + { "md5": "d4b988bf7b4c286b0fa5cc60190a3275", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_mood"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=chill,item_position=3", + "id": "chill", + "type": "flow", + "alignment": "left", + "data": { + "id": "chill", + "title": "Chill", + "description": "Chill", + "assets": { + "wheelIcon": "5cb7b210ca519acc3849c9064b091195", + "dynamicPageIcon": "8480aa295e29d6231bc8509ff772b0e5", + "hardwareSquareIcon": "ee57a7a4542153b863ecda3d863d4ae0", + "hardwareCircleIcon": "2cd8012fd3b45f9f54b26fa9e1f0ae92" + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/chill#action=play", + "title": "Chill", + "subtitle": "Chill", + "pictures": [ + { "md5": "8480aa295e29d6231bc8509ff772b0e5", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_mood"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=melancholy,item_position=4", + "id": "melancholy", + "type": "flow", + "alignment": "left", + "data": { + "id": "melancholy", + "title": "Melancholy", + "description": "Melancholy", + "assets": { + "wheelIcon": "b1b894c4399b998492aded77beb17b63", + "dynamicPageIcon": "34387ff89908f5e906e090f89f7b81a6", + "hardwareSquareIcon": "70739a144b9c5923a55be82ef123e17f", + "hardwareCircleIcon": "131aca6313a57b5d3aa440ce429ede19" + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/melancholy#action=play", + "title": "Melancholy", + "subtitle": "Melancholy", + "pictures": [ + { "md5": "34387ff89908f5e906e090f89f7b81a6", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_mood"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=you_and_me,item_position=5", + "id": "you_and_me", + "type": "flow", + "alignment": "left", + "data": { + "id": "you_and_me", + "title": "Love", + "description": "Love", + "assets": { + "wheelIcon": "aea0ca7269a578a6d6cf1ebe346b61c2", + "dynamicPageIcon": "d50de3857d481369ff0a9711a4055941", + "hardwareSquareIcon": "23462b8f11ba02395c03b0e06139f8f0", + "hardwareCircleIcon": "aaaecd4b0ccaa2596af71f10f43d288e" + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/you_and_me#action=play", + "title": "Love", + "subtitle": "Love", + "pictures": [ + { "md5": "d50de3857d481369ff0a9711a4055941", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_mood"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=focus,item_position=6", + "id": "focus", + "type": "flow", + "alignment": "left", + "data": { + "id": "focus", + "title": "Focus", + "description": "Focus", + "assets": { + "wheelIcon": "bb4f1d90891f33597a23dab173086987", + "dynamicPageIcon": "541625ee6d3888443c1232f2acb7237e", + "hardwareSquareIcon": "94dda4884cc2d84472fc623ae9b2b506", + "hardwareCircleIcon": "68c08ff6b999ff3ad73bba5029af20ee" + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/focus#action=play", + "title": "Focus", + "subtitle": "Focus", + "pictures": [ + { "md5": "541625ee6d3888443c1232f2acb7237e", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_mood"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=genre-pop,item_position=7", + "id": "genre-pop", + "type": "flow", + "alignment": "left", + "data": { + "id": "genre-pop", + "title": "Pop", + "description": "Pop", + "assets": { + "wheelIcon": "7caa7625a1c20375fde8e8a28fc6cecf", + "dynamicPageIcon": "24d27a478fbb085f2488ffc2984c7b73", + "hardwareSquareIcon": null, + "hardwareCircleIcon": null + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/genre-pop#action=play", + "title": "Pop", + "subtitle": "Pop", + "pictures": [ + { "md5": "24d27a478fbb085f2488ffc2984c7b73", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_genre"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=genre-alternative,item_position=8", + "id": "genre-alternative", + "type": "flow", + "alignment": "left", + "data": { + "id": "genre-alternative", + "title": "Alternative", + "description": "Alternative", + "assets": { + "wheelIcon": "2cbc2b7ac2805a14623a60998d6ab87d", + "dynamicPageIcon": "5094d3d333f1a7421f0d9a0e56d86eb5", + "hardwareSquareIcon": null, + "hardwareCircleIcon": null + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/genre-alternative#action=play", + "title": "Alternative", + "subtitle": "Alternative", + "pictures": [ + { "md5": "5094d3d333f1a7421f0d9a0e56d86eb5", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_genre"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=genre-rap,item_position=9", + "id": "genre-rap", + "type": "flow", + "alignment": "left", + "data": { + "id": "genre-rap", + "title": "Rap", + "description": "Rap", + "assets": { + "wheelIcon": "67320772fd68623a3bd2e4702c895ea3", + "dynamicPageIcon": "985703080057970eb0060077ea344ffe", + "hardwareSquareIcon": null, + "hardwareCircleIcon": null + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/genre-rap#action=play", + "title": "Rap", + "subtitle": "Rap", + "pictures": [ + { "md5": "985703080057970eb0060077ea344ffe", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_genre"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=genre-rock,item_position=10", + "id": "genre-rock", + "type": "flow", + "alignment": "left", + "data": { + "id": "genre-rock", + "title": "Rock", + "description": "Rock", + "assets": { + "wheelIcon": "231d3db7268f9abcf58f710d6d599a81", + "dynamicPageIcon": "8612ac9f10843f4573e0ddf11c370775", + "hardwareSquareIcon": null, + "hardwareCircleIcon": null + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/genre-rock#action=play", + "title": "Rock", + "subtitle": "Rock", + "pictures": [ + { "md5": "8612ac9f10843f4573e0ddf11c370775", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_genre"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=genre-kpop,item_position=11", + "id": "genre-kpop", + "type": "flow", + "alignment": "left", + "data": { + "id": "genre-kpop", + "title": "K-pop", + "description": "K-pop", + "assets": { + "wheelIcon": "7b38651f6875bd2c91415104e0fc82a5", + "dynamicPageIcon": "60b09ffd3dfbfc977fde27e14d6cff34", + "hardwareSquareIcon": null, + "hardwareCircleIcon": null + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/genre-kpop#action=play", + "title": "K-pop", + "subtitle": "K-pop", + "pictures": [ + { "md5": "60b09ffd3dfbfc977fde27e14d6cff34", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_genre"] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=filterable-grid,section_position=0,module_id=b21892d3-7e9c-4b06-aff6-2c3be3266f68,module_type=flow,layout=flow_layout_filterable-grid,content_source=flow_content-source_user-tops,content_source_count=13,content_programming_count=0,section_content=flow%3Adefault%3Bflow%3Amotivation%3Bflow%3Aparty%3Bflow%3Achill%3Bflow%3Amelancholy%3Bflow%3Ayou_and_me%3Bflow%3Afocus%3Bflow%3Agenre-pop%3Bflow%3Agenre-alternative%3Bflow%3Agenre-rap%3Bflow%3Agenre-rock%3Bflow%3Agenre-kpop%3Bflow%3Agenre-danceedm,item_type=flow,item_id=genre-danceedm,item_position=12", + "id": "genre-danceedm", + "type": "flow", + "alignment": "left", + "data": { + "id": "genre-danceedm", + "title": "Dance & EDM", + "description": "Dance & EDM", + "assets": { + "wheelIcon": "f31c6633f6f8005f742970df9213286f", + "dynamicPageIcon": "4f0646b059934380bb64525e62cacfc8", + "hardwareSquareIcon": null, + "hardwareCircleIcon": null + }, + "__TYPE__": "flow" + }, + "target": "/multi_flow/genre-danceedm#action=play", + "title": "Dance & EDM", + "subtitle": "Dance & EDM", + "pictures": [ + { "md5": "4f0646b059934380bb64525e62cacfc8", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "filter_option_ids": ["flow_config_genre"] + } + ], + "module_id": "b21892d3-7e9c-4b06-aff6-2c3be3266f68", + "title": "Flow: play how you feel", + "alignment": "left", + "subtitle": "An infinite, personalized mix of the music you love and new discoveries", + "filter": { + "default_option_id": "flow_config_mood", + "options": [ + { "id": "flow_config_mood", "label": "Moods" }, + { "id": "flow_config_genre", "label": "Genres" } + ] + } + }, + { + "layout": "horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=1,module_id=348128f5-bed6-4ccb-9a37-8e5f5ed08a62,module_type=artist,layout=artist_layout_small-horizontal-grid,content_source=artist_content-source_targeted-module,content_source_count=7,content_programming_count=0,section_content=album%3A746059%3Balbum%3A546733702%3Bartist%3A145%3Bartist%3A8706544%3Bplaylist%3A65489479%3Bplaylist%3A8918927822%3Balbum%3A544889292", + "group_id": "65d15a4b9f48b", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=1,module_id=348128f5-bed6-4ccb-9a37-8e5f5ed08a62,module_type=artist,layout=artist_layout_small-horizontal-grid,content_source=artist_content-source_targeted-module,content_source_count=7,content_programming_count=0,section_content=album%3A746059%3Balbum%3A546733702%3Bartist%3A145%3Bartist%3A8706544%3Bplaylist%3A65489479%3Bplaylist%3A8918927822%3Balbum%3A544889292,item_type=album,item_id=746059,item_position=0", + "id": "746059", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "746059", + "ALB_PICTURE": "8bdaf37e2e7f883e84bbc3462c938293", + "ALB_TITLE": "21", + "ART_ID": "75798", + "ART_NAME": "Adele", + "ORIGINAL_RELEASE_DATE": "2011-01-19", + "DIGITAL_RELEASE_DATE": "2011-01-24", + "PHYSICAL_RELEASE_DATE": "2011-01-24", + "TYPE": "1", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 4, + "EXPLICIT_COVER_STATUS": 0 + }, + "__TYPE__": "album" + }, + "target": "/album/746059", + "title": "21", + "subtitle": "by Adele", + "description": "Adele", + "pictures": [ + { "md5": "8bdaf37e2e7f883e84bbc3462c938293", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=1,module_id=348128f5-bed6-4ccb-9a37-8e5f5ed08a62,module_type=artist,layout=artist_layout_small-horizontal-grid,content_source=artist_content-source_targeted-module,content_source_count=7,content_programming_count=0,section_content=album%3A746059%3Balbum%3A546733702%3Bartist%3A145%3Bartist%3A8706544%3Bplaylist%3A65489479%3Bplaylist%3A8918927822%3Balbum%3A544889292,item_type=album,item_id=546733702,item_position=1", + "id": "546733702", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "546733702", + "ALB_PICTURE": "e50407841497a26457036110eab49f1b", + "ALB_TITLE": "TEXAS HOLD 'EM", + "ART_ID": "145", + "ART_NAME": "Beyonc\u00e9", + "DIGITAL_RELEASE_DATE": "2024-02-11", + "PHYSICAL_RELEASE_DATE": "2024-02-11", + "TYPE": "0", + "SUBTYPES": { + "isStudio": true, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 1, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album" + }, + "target": "/album/546733702", + "title": "TEXAS HOLD 'EM", + "subtitle": "by Beyonc\u00e9", + "description": "Beyonc\u00e9", + "pictures": [ + { "md5": "e50407841497a26457036110eab49f1b", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=1,module_id=348128f5-bed6-4ccb-9a37-8e5f5ed08a62,module_type=artist,layout=artist_layout_small-horizontal-grid,content_source=artist_content-source_targeted-module,content_source_count=7,content_programming_count=0,section_content=album%3A746059%3Balbum%3A546733702%3Bartist%3A145%3Bartist%3A8706544%3Bplaylist%3A65489479%3Bplaylist%3A8918927822%3Balbum%3A544889292,item_type=artist,item_id=145,item_position=2", + "id": "145", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "145", + "ART_NAME": "Beyonc\u00e9", + "URL_REWRITING": "beyonce", + "ART_PICTURE": "2de869b50d9f5cf7f1a673d0b736c4a0", + "NB_FAN": 11813453, + "SMARTRADIO": 1, + "LOCALES": { + "lang_en": { "name": "Beyonc\u00e9" }, + "lang_ja-hrkt": { "name": "\u30d3\u30e8\u30f3\u30bb" }, + "lang_ja-jpan": { "name": "\u30d3\u30e8\u30f3\u30bb" }, + "lang_ja-kana": { "name": "\u30d3\u30e8\u30f3\u30bb" }, + "lang_zh-hant": { "name": "\u78a7\u6602\u7d72" }, + "lang_zh-latn": { "name": "Beyonc\u00e9" }, + "lang_ar": { + "name": "\u0628\u064a\u0648\u0646\u0633\u064a\u0647" + } + }, + "__TYPE__": "artist" + }, + "target": "/artist/145", + "title": "Beyonc\u00e9", + "subtitle": "11 813 453 fans", + "pictures": [ + { "md5": "2de869b50d9f5cf7f1a673d0b736c4a0", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=1,module_id=348128f5-bed6-4ccb-9a37-8e5f5ed08a62,module_type=artist,layout=artist_layout_small-horizontal-grid,content_source=artist_content-source_targeted-module,content_source_count=7,content_programming_count=0,section_content=album%3A746059%3Balbum%3A546733702%3Bartist%3A145%3Bartist%3A8706544%3Bplaylist%3A65489479%3Bplaylist%3A8918927822%3Balbum%3A544889292,item_type=artist,item_id=8706544,item_position=3", + "id": "8706544", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "8706544", + "ART_NAME": "Dua Lipa", + "URL_REWRITING": "dua-lipa", + "ART_PICTURE": "7375742a46dbebb6efc0ae362e18eb24", + "NB_FAN": 7698576, + "SMARTRADIO": 1, + "LOCALES": { + "lang_ja-hrkt": { "name": "\u30c7\u30e5\u30a2\u30ea\u30d1" }, + "lang_ja-jpan": { + "name": "\u30c7\u30e5\u30a2\u30fb\u30ea\u30d1" + }, + "lang_ja-kana": { "name": "\u30c7\u30e5\u30a2\u30ea\u30d1" }, + "lang_en": { "name": "Dua Lipa" }, + "lang_ja": { "name": "DUA LIPA" } + }, + "__TYPE__": "artist" + }, + "target": "/artist/8706544", + "title": "Dua Lipa", + "subtitle": "7 698 576 fans", + "pictures": [ + { "md5": "7375742a46dbebb6efc0ae362e18eb24", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=1,module_id=348128f5-bed6-4ccb-9a37-8e5f5ed08a62,module_type=artist,layout=artist_layout_small-horizontal-grid,content_source=artist_content-source_targeted-module,content_source_count=7,content_programming_count=0,section_content=album%3A746059%3Balbum%3A546733702%3Bartist%3A145%3Bartist%3A8706544%3Bplaylist%3A65489479%3Bplaylist%3A8918927822%3Balbum%3A544889292,item_type=playlist,item_id=65489479,item_position=4", + "id": "65489479", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 3088244, + "NB_SONG": 50, + "PARENT_USER_ID": "304159715", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "65489479", + "PLAYLIST_PICTURE": "3a3ecb6eaae1c08cb9ebc80f53d6ad69", + "STATUS": 0, + "TITLE": "Hits del momento", + "TYPE": "0", + "DATE_MOD": "2024-02-14 10:29:47", + "DATE_ADD": "2024-02-13 19:17:05", + "DESCRIPTION": "I brani pi\u00f9 ascoltati del momento. ", + "__TYPE__": "playlist" + }, + "target": "/playlist/65489479", + "title": "Hits del momento", + "subtitle": "50 tracks - 3 088 244 fans", + "description": "I brani pi\u00f9 ascoltati del momento. ", + "pictures": [ + { "md5": "3a3ecb6eaae1c08cb9ebc80f53d6ad69", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=1,module_id=348128f5-bed6-4ccb-9a37-8e5f5ed08a62,module_type=artist,layout=artist_layout_small-horizontal-grid,content_source=artist_content-source_targeted-module,content_source_count=7,content_programming_count=0,section_content=album%3A746059%3Balbum%3A546733702%3Bartist%3A145%3Bartist%3A8706544%3Bplaylist%3A65489479%3Bplaylist%3A8918927822%3Balbum%3A544889292,item_type=playlist,item_id=8918927822,item_position=5", + "id": "8918927822", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 1436, + "NB_SONG": 60, + "PARENT_USER_ID": "304159715", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "8918927822", + "PLAYLIST_PICTURE": "2db26ac3217b5a1a11e923cd14a7ab6f", + "STATUS": 0, + "TITLE": "Sanremo", + "TYPE": "0", + "DATE_MOD": "2024-02-08 10:08:00", + "DATE_ADD": "2024-02-07 19:49:18", + "DESCRIPTION": "Un viaggio nella storia di Sanremo, dalle origini ad oggi.", + "__TYPE__": "playlist" + }, + "target": "/playlist/8918927822", + "title": "Sanremo", + "subtitle": "60 tracks - 1 436 fans", + "description": "Un viaggio nella storia di Sanremo, dalle origini ad oggi.", + "pictures": [ + { "md5": "2db26ac3217b5a1a11e923cd14a7ab6f", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=1,module_id=348128f5-bed6-4ccb-9a37-8e5f5ed08a62,module_type=artist,layout=artist_layout_small-horizontal-grid,content_source=artist_content-source_targeted-module,content_source_count=7,content_programming_count=0,section_content=album%3A746059%3Balbum%3A546733702%3Bartist%3A145%3Bartist%3A8706544%3Bplaylist%3A65489479%3Bplaylist%3A8918927822%3Balbum%3A544889292,item_type=album,item_id=544889292,item_position=6", + "id": "544889292", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "544889292", + "ALB_PICTURE": "6cc5350f0c6cfe5f44dfa7f9f9765c65", + "ALB_TITLE": "Sinceramente", + "ART_ID": "245432", + "ART_NAME": "Annalisa", + "DIGITAL_RELEASE_DATE": "2024-02-07", + "PHYSICAL_RELEASE_DATE": "2024-02-07", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album" + }, + "target": "/album/544889292", + "title": "Sinceramente", + "subtitle": "by Annalisa", + "description": "Annalisa", + "pictures": [ + { "md5": "6cc5350f0c6cfe5f44dfa7f9f9765c65", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + } + ], + "module_id": "348128f5-bed6-4ccb-9a37-8e5f5ed08a62", + "title": "Continue streaming", + "alignment": "left", + "hasMoreItems": false + }, + { + "layout": "horizontal-list", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483", + "group_id": "65d15a4b9f4b5", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=610230262,item_position=0", + "id": "610230262", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "82927612", + "ALB_PICTURE": "cca67a3224673235e7e7e6a3248db146", + "ALB_TITLE": "\u00c8 sempre bello", + "ALB_STATUS": "1", + "ART_ID": "5061189", + "ART_NAME": "Coez", + "DURATION": "203", + "EXPLICIT_LYRICS": "0", + "GENRE_ID": "0", + "MD5_ORIGIN": "9fcf90bb5d0d198aa421edf3621c8470", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033333333333333333303333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333033333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333300", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "SNG_ID": "610230262", + "SNG_TITLE": "\u00c8 sempre bello", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": false, + "FAV": true, + "COLLECTED": false, + "HOTNESS": 0, + "DATE_FAV": 1697064576, + "LAST_LISTEN": 1697064576 + } + }, + "target": "/track/610230262?mix=true#action=play", + "title": "\u00c8 sempre bello", + "subtitle": "Coez", + "pictures": [ + { "md5": "cca67a3224673235e7e7e6a3248db146", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=65227240,item_position=1", + "id": "65227240", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "6392847", + "ALB_PICTURE": "823f1de7a75ffa025683c02a2df9ff03", + "ALB_TITLE": "Electra Heart (Deluxe)", + "ALB_STATUS": "1", + "ART_ID": "74357", + "ART_NAME": "MARINA", + "DURATION": "154", + "EXPLICIT_LYRICS": "1", + "GENRE_ID": "25", + "MD5_ORIGIN": "0b47d2b9c3fee8496a3dd46428c06020", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3303333030303333333333333333333303333003333303333303033333333333333333333333333333333333330303033333333333033333333303303333333333333333333330333330333330333333303333300333333333333330333333330333333333333033033333330333033033330333333303030333333333", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 1, + "EXPLICIT_COVER_STATUS": 0 + }, + "SNG_ID": "65227240", + "SNG_TITLE": "Bubblegum Bitch", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": false, + "FAV": true, + "COLLECTED": false, + "HOTNESS": 0, + "DATE_FAV": 1697448584, + "LAST_LISTEN": 1697448584 + } + }, + "target": "/track/65227240?mix=true#action=play", + "title": "Bubblegum Bitch", + "subtitle": "MARINA", + "pictures": [ + { "md5": "823f1de7a75ffa025683c02a2df9ff03", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "accessory_type": "explicit" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=70322141,item_position=2", + "id": "70322141", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "6899610", + "ALB_PICTURE": "64e54e307bd5e2bdb27ffeb662fd910d", + "ALB_TITLE": "AM", + "ALB_STATUS": "1", + "ART_ID": "1182", + "ART_NAME": "Arctic Monkeys", + "DURATION": "257", + "EXPLICIT_LYRICS": "0", + "GENRE_ID": "7054", + "MD5_ORIGIN": "46f024863203e316d2c1f0d2357b7267", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033333333333333333333333333303333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333330333333333333333333333333333333333333333333333333333333333333", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 0 + }, + "SNG_ID": "70322141", + "SNG_TITLE": "Knee Socks", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": false, + "FAV": true, + "COLLECTED": false, + "HOTNESS": 0, + "DATE_FAV": 1672614609, + "LAST_LISTEN": 1672614609 + } + }, + "target": "/track/70322141?mix=true#action=play", + "title": "Knee Socks", + "subtitle": "Arctic Monkeys", + "pictures": [ + { "md5": "64e54e307bd5e2bdb27ffeb662fd910d", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=1191651842,item_position=3", + "id": "1191651842", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "196239012", + "ALB_PICTURE": "db01e11e63ad87484b0d37f98ca9a443", + "ALB_TITLE": "77 singoli + 7 (Bonus Version)", + "ALB_STATUS": "1", + "ART_ID": "64932", + "ART_NAME": "Ligabue", + "DURATION": "275", + "EXPLICIT_LYRICS": "0", + "GENRE_ID": "0", + "MD5_ORIGIN": "c73477fce131113e0f0a075cbdbc4638", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033333333333333333333333333333333333333333303333333333333333333333333333333333333333333333333333333033333333333303333333333333333333333333333333333333333333333333333333333333333333333333333333333333333033333333333333333330333333333333333333333", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "SNG_ID": "1191651842", + "SNG_TITLE": "Il giorno di dolore che uno ha", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": true, + "FAV": false, + "COLLECTED": true, + "HOTNESS": 1, + "DATE_FAV": 0, + "LAST_LISTEN": 1708040859 + } + }, + "target": "/track/1191651842?mix=true#action=play", + "title": "Il giorno di dolore che uno ha", + "subtitle": "Ligabue", + "pictures": [ + { "md5": "db01e11e63ad87484b0d37f98ca9a443", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=944915112,item_position=4", + "id": "944915112", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "145044802", + "ALB_PICTURE": "abed19f68bb152abfb9b3a14d7ef90d6", + "ALB_TITLE": "Be Kind", + "ALB_STATUS": "1", + "ART_ID": "7890702", + "ART_NAME": "Marshmello", + "DURATION": "172", + "EXPLICIT_LYRICS": "0", + "GENRE_ID": "0", + "MD5_ORIGIN": "4ace5fb78e43381c79d6a29feb6909c0", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033333333333333333333333333333333333333303333333333333333333333333333333333333333333333333333333303333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333303330333333333333333333330", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "SNG_ID": "944915112", + "SNG_TITLE": "Be Kind", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": true, + "FAV": true, + "COLLECTED": true, + "HOTNESS": 4, + "DATE_FAV": 1704187996, + "LAST_LISTEN": 1704187996 + } + }, + "target": "/track/944915112?mix=true#action=play", + "title": "Be Kind", + "subtitle": "Marshmello", + "pictures": [ + { "md5": "abed19f68bb152abfb9b3a14d7ef90d6", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=89824821,item_position=5", + "id": "89824821", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "9097101", + "ALB_PICTURE": "7c6e31ea38d417c54ed2330ea4a25864", + "ALB_TITLE": "Hold Back The River", + "ALB_STATUS": "1", + "ART_ID": "4732999", + "ART_NAME": "James Bay", + "DURATION": "239", + "EXPLICIT_LYRICS": "0", + "GENRE_ID": "37401", + "MD5_ORIGIN": "b6083a0e9239af469f7630c40eba9e99", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033333333333333333333333333333033333333303303333333333333033033333333333333333033333333333333333303333333333333333333333333333333333333333333333333303333333333333333333333330333333333333330333333333333333333333333333303330033333333333333303000", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 0 + }, + "SNG_ID": "89824821", + "SNG_TITLE": "Hold Back The River", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": false, + "FAV": true, + "COLLECTED": false, + "HOTNESS": 0, + "DATE_FAV": 1706134622, + "LAST_LISTEN": 1706134622 + } + }, + "target": "/track/89824821?mix=true#action=play", + "title": "Hold Back The River", + "subtitle": "James Bay", + "pictures": [ + { "md5": "7c6e31ea38d417c54ed2330ea4a25864", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=2320967405,item_position=6", + "id": "2320967405", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "451227105", + "ALB_PICTURE": "f4e69aac8431e0ba9ad86957cb92fa38", + "ALB_TITLE": "ARANCIATA", + "ALB_STATUS": "1", + "ART_ID": "57573792", + "ART_NAME": "Madame", + "DURATION": "194", + "EXPLICIT_LYRICS": "0", + "GENRE_ID": "0", + "MD5_ORIGIN": "bfaff1114e2518a437dfbcced25465fd", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033333333333333333333333333303333333333303333333333333333333333333333333333333333333333333333333303333333333333333333333333333333333333333333333333333333333333333333333333333333333330333333333333333333333333333333333303330333333333333333333330", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 0 + }, + "SNG_ID": "2320967405", + "SNG_TITLE": "ARANCIATA", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": true, + "FAV": true, + "COLLECTED": true, + "HOTNESS": 4, + "DATE_FAV": 1707015181, + "LAST_LISTEN": 1707015181 + } + }, + "target": "/track/2320967405?mix=true#action=play", + "title": "ARANCIATA", + "subtitle": "Madame", + "pictures": [ + { "md5": "f4e69aac8431e0ba9ad86957cb92fa38", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=137728875,item_position=7", + "id": "137728875", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "14781371", + "ALB_PICTURE": "ae3d17f1057adaacfcb41c630a3ebb04", + "ALB_TITLE": "You Don't Know Me", + "ALB_STATUS": "1", + "ART_ID": "5462679", + "ART_NAME": "Jax Jones", + "DURATION": "213", + "EXPLICIT_LYRICS": "1", + "GENRE_ID": "0", + "MD5_ORIGIN": "5369a40cd0d8595ba4781a5aeb84fe5e", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033333033333333333333333333333333333333303333333333333333333333333333333333333033333333333333333303333333333333333333333333333333333333333333333333333333333333333033333333330333333333333333333333333333333333333333333303330333333333333333333330", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 1, + "EXPLICIT_COVER_STATUS": 0 + }, + "SNG_ID": "137728875", + "SNG_TITLE": "You Don't Know Me", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": false, + "FAV": true, + "COLLECTED": false, + "HOTNESS": 0, + "DATE_FAV": 1695489014, + "LAST_LISTEN": 1695489014 + } + }, + "target": "/track/137728875?mix=true#action=play", + "title": "You Don't Know Me", + "subtitle": "Jax Jones", + "pictures": [ + { "md5": "ae3d17f1057adaacfcb41c630a3ebb04", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "accessory_type": "explicit" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=14405185,item_position=8", + "id": "14405185", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "1321226", + "ALB_PICTURE": "2e830d5ee10ad8654e0d8ab70a18e54a", + "ALB_TITLE": "Who You Are (Platinum Edition)", + "ALB_STATUS": "1", + "ART_ID": "985109", + "ART_NAME": "Jessie J", + "DURATION": "223", + "EXPLICIT_LYRICS": "0", + "GENRE_ID": "7", + "MD5_ORIGIN": "af90812cba5390334175cfb7f629ec8b", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033333333333333333333333333333033333333303333333333333333333333333333333333333033333333333333333303333333033333333333333333333333333333333333333333333333333333333333333333330033333333333333333333333333333333333333333303330033333333333333333330", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 3 + }, + "SNG_ID": "14405185", + "SNG_TITLE": "Price Tag", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": false, + "FAV": true, + "COLLECTED": false, + "HOTNESS": 0, + "DATE_FAV": 1697399806, + "LAST_LISTEN": 1697399806 + } + }, + "target": "/track/14405185?mix=true#action=play", + "title": "Price Tag", + "subtitle": "Jessie J", + "pictures": [ + { "md5": "2e830d5ee10ad8654e0d8ab70a18e54a", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=70093876,item_position=9", + "id": "70093876", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "6874413", + "ALB_PICTURE": "e07b185becbe0b6ab014c36748efe0c3", + "ALB_TITLE": "Crises (Deluxe Edition)", + "ALB_STATUS": "1", + "ART_ID": "990", + "ART_NAME": "Mike Oldfield", + "DURATION": "218", + "EXPLICIT_LYRICS": "0", + "GENRE_ID": "7", + "MD5_ORIGIN": "5852c0049237c45bdedb18c8fb1c4c82", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033333333333333333333333333333333333333303333333333333333333333333333333333333333333333333333333303333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333303330333333333333333333330", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 0 + }, + "SNG_ID": "70093876", + "SNG_TITLE": "Moonlight Shadow", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": true, + "FAV": true, + "COLLECTED": true, + "HOTNESS": 4, + "DATE_FAV": 1707746643, + "LAST_LISTEN": 1707746643 + } + }, + "target": "/track/70093876?mix=true#action=play", + "title": "Moonlight Shadow", + "subtitle": "Mike Oldfield", + "pictures": [ + { "md5": "e07b185becbe0b6ab014c36748efe0c3", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=666286232,item_position=10", + "id": "666286232", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "93850092", + "ALB_PICTURE": "593cf4239df5504dced88a78f7e2e698", + "ALB_TITLE": "Cuz I Love You", + "ALB_STATUS": "1", + "ART_ID": "5200025", + "ART_NAME": "Lizzo", + "DURATION": "195", + "EXPLICIT_LYRICS": "1", + "GENRE_ID": "0", + "MD5_ORIGIN": "44743df72f078a09d37d4708c5a22881", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3333333033303333333333333333333333333333333333333303333333333333333333333333333333333333330333333333333333033333333333303333333333333333333333333330333333333333333333333333333333330333333333333333333333333333033333333333333333330333333303333333333333", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 1, + "EXPLICIT_COVER_STATUS": 2 + }, + "SNG_ID": "666286232", + "SNG_TITLE": "Juice", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": false, + "FAV": true, + "COLLECTED": false, + "HOTNESS": 0, + "DATE_FAV": 1706446466, + "LAST_LISTEN": 1706446466 + } + }, + "target": "/track/666286232?mix=true#action=play", + "title": "Juice", + "subtitle": "Lizzo", + "pictures": [ + { "md5": "593cf4239df5504dced88a78f7e2e698", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true, + "accessory_type": "explicit" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-list,section_position=2,module_id=8d10a320-f130-4dcb-a610-38baf0c57896,module_type=track,layout=track_layout_horizontal-list,content_source=track_content-source_user-tops,content_source_count=12,content_programming_count=0,section_content=track%3A610230262%3Btrack%3A65227240%3Btrack%3A70322141%3Btrack%3A1191651842%3Btrack%3A944915112%3Btrack%3A89824821%3Btrack%3A2320967405%3Btrack%3A137728875%3Btrack%3A14405185%3Btrack%3A70093876%3Btrack%3A666286232%3Btrack%3A74126483,item_type=track,item_id=74126483,item_position=11", + "id": "74126483", + "type": "track", + "alignment": "left", + "data": { + "ALB_ID": "7316575", + "ALB_PICTURE": "0cff7e81d7524c816fd7841abdf948cd", + "ALB_TITLE": "Am I Wrong", + "ALB_STATUS": "1", + "ART_ID": "5466281", + "ART_NAME": "Nico & Vinz", + "DURATION": "247", + "EXPLICIT_LYRICS": "0", + "GENRE_ID": "7", + "MD5_ORIGIN": "960ed38aac7da2279ffb73888ab2d873", + "RIGHTS": { + "STREAM_ADS_AVAILABLE": true, + "STREAM_ADS": "2000-01-01", + "STREAM_SUB_AVAILABLE": true, + "STREAM_SUB": "2000-01-01" + }, + "SNG_RIGHTS": "3303333030303333333333333333333303333303333303333303033333333333333333333333303333333333330303033333333333033333333303303333333033333333333330333330333330333333303333300333333333333030333333330333333333333033033333330333033033330333333303030333333333", + "EXPLICIT_TRACK_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 6, + "EXPLICIT_COVER_STATUS": 2 + }, + "SNG_ID": "74126483", + "SNG_TITLE": "Am I Wrong", + "STATUS": 1, + "__TYPE__": "song", + "__PAYLOAD__": { + "HOT": false, + "FAV": true, + "COLLECTED": false, + "HOTNESS": 0, + "DATE_FAV": 1704187320, + "LAST_LISTEN": 1704187320 + } + }, + "target": "/track/74126483?mix=true#action=play", + "title": "Am I Wrong", + "subtitle": "Nico & Vinz", + "pictures": [ + { "md5": "0cff7e81d7524c816fd7841abdf948cd", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "play_button": true + } + ], + "module_id": "8d10a320-f130-4dcb-a610-38baf0c57896", + "title": "Mixes inspired by...", + "alignment": "left", + "subtitle": "Discover new tracks similar to your favorites", + "hasMoreItems": false + }, + { + "layout": "horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=3,module_id=996a1738-7beb-42c9-a2a8-a604dc68a8e7,module_type=smarttracklist,layout=smarttracklist_layout_horizontal-grid,content_source=smarttracklist_content-source_recommendations,content_source_count=6,content_programming_count=0,section_content=smarttracklist%3Anew-releases%3Bsmarttracklist%3Ainspired-by-1%3Bsmarttracklist%3Ainspired-by-2%3Bsmarttracklist%3Ainspired-by-3%3Bsmarttracklist%3Ainspired-by-4%3Bsmarttracklist%3Adiscovery", + "group_id": "65d15a4b9f4d5", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=3,module_id=996a1738-7beb-42c9-a2a8-a604dc68a8e7,module_type=smarttracklist,layout=smarttracklist_layout_horizontal-grid,content_source=smarttracklist_content-source_recommendations,content_source_count=6,content_programming_count=0,section_content=smarttracklist%3Anew-releases%3Bsmarttracklist%3Ainspired-by-1%3Bsmarttracklist%3Ainspired-by-2%3Bsmarttracklist%3Ainspired-by-3%3Bsmarttracklist%3Ainspired-by-4%3Bsmarttracklist%3Adiscovery,item_type=smarttracklist,item_id=new-releases,item_position=0,cluster_number=0,preview_algo_version=default,card_name=newReleases,config_name=new-releases,config_version=weekday", + "id": "new-releases", + "type": "smarttracklist", + "alignment": "left", + "data": { + "SMARTTRACKLIST_ID": "new-releases", + "ID": "3844098602", + "METHOD": "newReleases", + "USER_ID": 3844098602, + "COUNTRY": "IT", + "TITLE": "new releases", + "SUBTITLE": "Featuring Robin Thicke, Martin Garrix, Marshmello, Dua Lipa", + "LABEL": "EVERY FRIDAY", + "DESCRIPTION": "Every week get your friday releases playlist based on the artists, albums and tracks you favorite.", + "COVER": { + "TYPE": "artist", + "MD5": "bbde1cf35e2d5e0c84556161ade657b6-bbde1cf35e2d5e0c84556161ade657b6-d77ec8321316aa8bfbf4b25581b7224d-c53b684dc60abbde2a50afe9a524c863" + }, + "PICTURES": [ + { "TYPE": "artist", "MD5": "d77ec8321316aa8bfbf4b25581b7224d" }, + { "TYPE": "artist", "MD5": "c53b684dc60abbde2a50afe9a524c863" }, + { "TYPE": "artist", "MD5": "cb09694ad2aa2876f9d617d98e88a731" }, + { "TYPE": "artist", "MD5": "7375742a46dbebb6efc0ae362e18eb24" } + ], + "CONTEXT": { + "CLUSTER_NUMBER": 0, + "PREVIEW_ALGO_VERSION": "default", + "CARD_NAME": "newReleases", + "CONFIG_NAME": "new-releases", + "CONFIG_VERSION": "weekday" + }, + "EXPIRATION_DATE": "2024-02-23T06:00:00+00:00", + "LAST_UPDATE_DATE": "2024-02-17T23:44:46+00:00", + "CONFIGURATION_ID": "new-releases" + }, + "target": "/smarttracklist/new-releases", + "title": "new releases", + "subtitle": "Featuring Robin Thicke, Martin Garrix, Marshmello, Dua Lipa", + "caption": "EVERY FRIDAY", + "pictures": [ + { "md5": "d77ec8321316aa8bfbf4b25581b7224d", "type": "artist" }, + { "md5": "c53b684dc60abbde2a50afe9a524c863", "type": "artist" }, + { "md5": "cb09694ad2aa2876f9d617d98e88a731", "type": "artist" }, + { "md5": "7375742a46dbebb6efc0ae362e18eb24", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "context": { + "cluster_number": 0, + "preview_algo_version": "default", + "card_name": "newReleases", + "config_name": "new-releases", + "config_version": "weekday" + }, + "cover_title": "NEW RELEASES", + "cover": { + "type": "artist", + "md5": "bbde1cf35e2d5e0c84556161ade657b6-bbde1cf35e2d5e0c84556161ade657b6-d77ec8321316aa8bfbf4b25581b7224d-c53b684dc60abbde2a50afe9a524c863" + } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=3,module_id=996a1738-7beb-42c9-a2a8-a604dc68a8e7,module_type=smarttracklist,layout=smarttracklist_layout_horizontal-grid,content_source=smarttracklist_content-source_recommendations,content_source_count=6,content_programming_count=0,section_content=smarttracklist%3Anew-releases%3Bsmarttracklist%3Ainspired-by-1%3Bsmarttracklist%3Ainspired-by-2%3Bsmarttracklist%3Ainspired-by-3%3Bsmarttracklist%3Ainspired-by-4%3Bsmarttracklist%3Adiscovery,item_type=smarttracklist,item_id=inspired-by-1,item_position=1,cluster_number=0,preview_algo_version=default,card_name=artistClusterTracks,creation_ts=1708041600,config_name=inspired-by-1,config_version=free_mobile", + "id": "inspired-by-1", + "type": "smarttracklist", + "alignment": "left", + "data": { + "SMARTTRACKLIST_ID": "inspired-by-1", + "ID": "3844098602.9916.1148.175.413", + "METHOD": "artistClusterTracks", + "USER_ID": 3844098602, + "COUNTRY": "IT", + "TITLE": "daily", + "SUBTITLE": "Featuring Eurythmics, Elton John, Annie Lennox, Dave Stewart", + "LABEL": "TODAY", + "DESCRIPTION": "Discover music similar to the artists you've been listening to lately.", + "COVER": { + "TYPE": "artist", + "MD5": "1278c9d111945e9f0d8fcd133ac2b766-1278c9d111945e9f0d8fcd133ac2b766-a2d2b68e832cd3c3d624ad7bd5c4eb82-b0fe7bfd530a33ada202a6d7c2d77d3e" + }, + "PICTURES": [ + { "TYPE": "artist", "MD5": "a2d2b68e832cd3c3d624ad7bd5c4eb82" }, + { "TYPE": "artist", "MD5": "b0fe7bfd530a33ada202a6d7c2d77d3e" }, + { "TYPE": "artist", "MD5": "9c4157b92606f41dd9513b049fa2375e" }, + { "TYPE": "artist", "MD5": "4d03bd2ac37d1a90d7fe9212e7f2d249" } + ], + "CONTEXT": { + "CLUSTER_NUMBER": 0, + "PREVIEW_ALGO_VERSION": "default", + "CARD_NAME": "artistClusterTracks", + "CREATION_TS": 1708041600, + "CONFIG_NAME": "inspired-by-1", + "CONFIG_VERSION": "free_mobile" + }, + "EXPIRATION_DATE": "2024-02-18T06:00:00+01:00", + "LAST_UPDATE_DATE": "2024-02-17T15:21:37+00:00", + "CONFIGURATION_ID": "inspired-by-1" + }, + "target": "/smarttracklist/inspired-by-1", + "title": "daily", + "subtitle": "Featuring Eurythmics, Elton John, Annie Lennox, Dave Stewart", + "caption": "TODAY", + "pictures": [ + { "md5": "a2d2b68e832cd3c3d624ad7bd5c4eb82", "type": "artist" }, + { "md5": "b0fe7bfd530a33ada202a6d7c2d77d3e", "type": "artist" }, + { "md5": "9c4157b92606f41dd9513b049fa2375e", "type": "artist" }, + { "md5": "4d03bd2ac37d1a90d7fe9212e7f2d249", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "context": { + "cluster_number": 0, + "preview_algo_version": "default", + "card_name": "artistClusterTracks", + "creation_ts": 1708041600, + "config_name": "inspired-by-1", + "config_version": "free_mobile" + }, + "cover_title": "DAILY", + "cover": { + "type": "artist", + "md5": "1278c9d111945e9f0d8fcd133ac2b766-1278c9d111945e9f0d8fcd133ac2b766-a2d2b68e832cd3c3d624ad7bd5c4eb82-b0fe7bfd530a33ada202a6d7c2d77d3e" + } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=3,module_id=996a1738-7beb-42c9-a2a8-a604dc68a8e7,module_type=smarttracklist,layout=smarttracklist_layout_horizontal-grid,content_source=smarttracklist_content-source_recommendations,content_source_count=6,content_programming_count=0,section_content=smarttracklist%3Anew-releases%3Bsmarttracklist%3Ainspired-by-1%3Bsmarttracklist%3Ainspired-by-2%3Bsmarttracklist%3Ainspired-by-3%3Bsmarttracklist%3Ainspired-by-4%3Bsmarttracklist%3Adiscovery,item_type=smarttracklist,item_id=inspired-by-2,item_position=2,cluster_number=1,preview_algo_version=default,card_name=artistClusterTracks,creation_ts=1708041600,config_name=inspired-by-2,config_version=free_mobile", + "id": "inspired-by-2", + "type": "smarttracklist", + "alignment": "left", + "data": { + "SMARTTRACKLIST_ID": "inspired-by-2", + "ID": "3844098602.4512147.1596266.1581786.793825", + "METHOD": "artistClusterTracks", + "USER_ID": 3844098602, + "COUNTRY": "IT", + "TITLE": "daily", + "SUBTITLE": "Featuring The Lumineers, Of Monsters And Men, The Strumbellas, Milky Chance", + "LABEL": "TODAY", + "DESCRIPTION": "Discover music similar to the artists you've been listening to lately.", + "COVER": { + "TYPE": "artist", + "MD5": "1278c9d111945e9f0d8fcd133ac2b766-1278c9d111945e9f0d8fcd133ac2b766-8f52ad4d2b2a9b4e53227ce41e36c3f5-ae0de3dd0d95c954e2194631d6228d54" + }, + "PICTURES": [ + { "TYPE": "artist", "MD5": "8f52ad4d2b2a9b4e53227ce41e36c3f5" }, + { "TYPE": "artist", "MD5": "ae0de3dd0d95c954e2194631d6228d54" }, + { "TYPE": "artist", "MD5": "7e933a160ad17db7bfbfd0aaed5d24c4" }, + { "TYPE": "artist", "MD5": "c0d018101382a6b6d83007bd009a0ee0" } + ], + "CONTEXT": { + "CLUSTER_NUMBER": 1, + "PREVIEW_ALGO_VERSION": "default", + "CARD_NAME": "artistClusterTracks", + "CREATION_TS": 1708041600, + "CONFIG_NAME": "inspired-by-2", + "CONFIG_VERSION": "free_mobile" + }, + "EXPIRATION_DATE": "2024-02-18T06:00:00+01:00", + "LAST_UPDATE_DATE": "2024-02-17T15:21:37+00:00", + "CONFIGURATION_ID": "inspired-by-2" + }, + "target": "/smarttracklist/inspired-by-2", + "title": "daily", + "subtitle": "Featuring The Lumineers, Of Monsters And Men, The Strumbellas, Milky Chance", + "caption": "TODAY", + "pictures": [ + { "md5": "8f52ad4d2b2a9b4e53227ce41e36c3f5", "type": "artist" }, + { "md5": "ae0de3dd0d95c954e2194631d6228d54", "type": "artist" }, + { "md5": "7e933a160ad17db7bfbfd0aaed5d24c4", "type": "artist" }, + { "md5": "c0d018101382a6b6d83007bd009a0ee0", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "context": { + "cluster_number": 1, + "preview_algo_version": "default", + "card_name": "artistClusterTracks", + "creation_ts": 1708041600, + "config_name": "inspired-by-2", + "config_version": "free_mobile" + }, + "cover_title": "DAILY", + "cover": { + "type": "artist", + "md5": "1278c9d111945e9f0d8fcd133ac2b766-1278c9d111945e9f0d8fcd133ac2b766-8f52ad4d2b2a9b4e53227ce41e36c3f5-ae0de3dd0d95c954e2194631d6228d54" + } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=3,module_id=996a1738-7beb-42c9-a2a8-a604dc68a8e7,module_type=smarttracklist,layout=smarttracklist_layout_horizontal-grid,content_source=smarttracklist_content-source_recommendations,content_source_count=6,content_programming_count=0,section_content=smarttracklist%3Anew-releases%3Bsmarttracklist%3Ainspired-by-1%3Bsmarttracklist%3Ainspired-by-2%3Bsmarttracklist%3Ainspired-by-3%3Bsmarttracklist%3Ainspired-by-4%3Bsmarttracklist%3Adiscovery,item_type=smarttracklist,item_id=inspired-by-3,item_position=3,cluster_number=2,preview_algo_version=default,card_name=artistClusterTracks,creation_ts=1708041600,config_name=inspired-by-3,config_version=free_mobile", + "id": "inspired-by-3", + "type": "smarttracklist", + "alignment": "left", + "data": { + "SMARTTRACKLIST_ID": "inspired-by-3", + "ID": "3844098602.647650.404.402.52", + "METHOD": "artistClusterTracks", + "USER_ID": 3844098602, + "COUNTRY": "IT", + "TITLE": "daily", + "SUBTITLE": "Featuring Green Day, Panic! At the Disco, Fall Out Boy, Twenty One Pilots", + "LABEL": "TODAY", + "DESCRIPTION": "Discover music similar to the artists you've been listening to lately.", + "COVER": { + "TYPE": "artist", + "MD5": "1278c9d111945e9f0d8fcd133ac2b766-1278c9d111945e9f0d8fcd133ac2b766-690381cc69a21802b5d95b0460afb6a3-c601aa8551d9e0bc345d2d75934db733" + }, + "PICTURES": [ + { "TYPE": "artist", "MD5": "690381cc69a21802b5d95b0460afb6a3" }, + { "TYPE": "artist", "MD5": "c601aa8551d9e0bc345d2d75934db733" }, + { "TYPE": "artist", "MD5": "f53434390dd76ef724cdc26df7a0b64d" }, + { "TYPE": "artist", "MD5": "c259fffca57feb4274a932f90392521f" } + ], + "CONTEXT": { + "CLUSTER_NUMBER": 2, + "PREVIEW_ALGO_VERSION": "default", + "CARD_NAME": "artistClusterTracks", + "CREATION_TS": 1708041600, + "CONFIG_NAME": "inspired-by-3", + "CONFIG_VERSION": "free_mobile" + }, + "EXPIRATION_DATE": "2024-02-18T06:00:00+01:00", + "LAST_UPDATE_DATE": "2024-02-17T15:21:37+00:00", + "CONFIGURATION_ID": "inspired-by-3" + }, + "target": "/smarttracklist/inspired-by-3", + "title": "daily", + "subtitle": "Featuring Green Day, Panic! At the Disco, Fall Out Boy, Twenty One Pilots", + "caption": "TODAY", + "pictures": [ + { "md5": "690381cc69a21802b5d95b0460afb6a3", "type": "artist" }, + { "md5": "c601aa8551d9e0bc345d2d75934db733", "type": "artist" }, + { "md5": "f53434390dd76ef724cdc26df7a0b64d", "type": "artist" }, + { "md5": "c259fffca57feb4274a932f90392521f", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "context": { + "cluster_number": 2, + "preview_algo_version": "default", + "card_name": "artistClusterTracks", + "creation_ts": 1708041600, + "config_name": "inspired-by-3", + "config_version": "free_mobile" + }, + "cover_title": "DAILY", + "cover": { + "type": "artist", + "md5": "1278c9d111945e9f0d8fcd133ac2b766-1278c9d111945e9f0d8fcd133ac2b766-690381cc69a21802b5d95b0460afb6a3-c601aa8551d9e0bc345d2d75934db733" + } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=3,module_id=996a1738-7beb-42c9-a2a8-a604dc68a8e7,module_type=smarttracklist,layout=smarttracklist_layout_horizontal-grid,content_source=smarttracklist_content-source_recommendations,content_source_count=6,content_programming_count=0,section_content=smarttracklist%3Anew-releases%3Bsmarttracklist%3Ainspired-by-1%3Bsmarttracklist%3Ainspired-by-2%3Bsmarttracklist%3Ainspired-by-3%3Bsmarttracklist%3Ainspired-by-4%3Bsmarttracklist%3Adiscovery,item_type=smarttracklist,item_id=inspired-by-4,item_position=4,cluster_number=3,preview_algo_version=default,card_name=artistClusterTracks,creation_ts=0,config_name=inspired-by-4,config_version=free_mobile", + "id": "inspired-by-4", + "type": "smarttracklist", + "alignment": "left", + "data": { + "SMARTTRACKLIST_ID": "inspired-by-4", + "ID": "3844098602.1309.1583605.193760127.110813982", + "METHOD": "artistClusterTracks", + "USER_ID": 3844098602, + "COUNTRY": "IT", + "TITLE": "daily", + "SUBTITLE": "Featuring JAY Z, Monki, Jazz Bar New York, Byg Boy Jay", + "LABEL": "TODAY", + "DESCRIPTION": "Discover music similar to the artists you've been listening to lately.", + "COVER": { + "TYPE": "artist", + "MD5": "1278c9d111945e9f0d8fcd133ac2b766-1278c9d111945e9f0d8fcd133ac2b766-90fab088c4d091618e7386f688803673-defe85bfc0bb822a5b9ee1cc3f194e7c" + }, + "PICTURES": [ + { "TYPE": "artist", "MD5": "90fab088c4d091618e7386f688803673" }, + { "TYPE": "artist", "MD5": "defe85bfc0bb822a5b9ee1cc3f194e7c" }, + { "TYPE": "artist", "MD5": "92b9c3d7831b12fe1c0b91f78fe17aa6" }, + { "TYPE": "artist", "MD5": "a5302b5cbfb776ef0d6aa3eaec9889d1" } + ], + "CONTEXT": { + "CLUSTER_NUMBER": 3, + "PREVIEW_ALGO_VERSION": "default", + "CARD_NAME": "artistClusterTracks", + "CREATION_TS": 0, + "CONFIG_NAME": "inspired-by-4", + "CONFIG_VERSION": "free_mobile" + }, + "EXPIRATION_DATE": "2024-02-18T06:00:00+01:00", + "LAST_UPDATE_DATE": "2024-02-17T15:21:37+00:00", + "CONFIGURATION_ID": "inspired-by-4" + }, + "target": "/smarttracklist/inspired-by-4", + "title": "daily", + "subtitle": "Featuring JAY Z, Monki, Jazz Bar New York, Byg Boy Jay", + "caption": "TODAY", + "pictures": [ + { "md5": "90fab088c4d091618e7386f688803673", "type": "artist" }, + { "md5": "defe85bfc0bb822a5b9ee1cc3f194e7c", "type": "artist" }, + { "md5": "92b9c3d7831b12fe1c0b91f78fe17aa6", "type": "artist" }, + { "md5": "a5302b5cbfb776ef0d6aa3eaec9889d1", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "context": { + "cluster_number": 3, + "preview_algo_version": "default", + "card_name": "artistClusterTracks", + "creation_ts": 0, + "config_name": "inspired-by-4", + "config_version": "free_mobile" + }, + "cover_title": "DAILY", + "cover": { + "type": "artist", + "md5": "1278c9d111945e9f0d8fcd133ac2b766-1278c9d111945e9f0d8fcd133ac2b766-90fab088c4d091618e7386f688803673-defe85bfc0bb822a5b9ee1cc3f194e7c" + } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=3,module_id=996a1738-7beb-42c9-a2a8-a604dc68a8e7,module_type=smarttracklist,layout=smarttracklist_layout_horizontal-grid,content_source=smarttracklist_content-source_recommendations,content_source_count=6,content_programming_count=0,section_content=smarttracklist%3Anew-releases%3Bsmarttracklist%3Ainspired-by-1%3Bsmarttracklist%3Ainspired-by-2%3Bsmarttracklist%3Ainspired-by-3%3Bsmarttracklist%3Ainspired-by-4%3Bsmarttracklist%3Adiscovery,item_type=smarttracklist,item_id=discovery,item_position=5,cluster_number=0,preview_algo_version=default,card_name=discoveryTracks,config_name=discovery,config_version=free_mobile", + "id": "discovery", + "type": "smarttracklist", + "alignment": "left", + "data": { + "SMARTTRACKLIST_ID": "discovery", + "ID": "3844098602", + "METHOD": "discoveryTracks", + "USER_ID": 3844098602, + "COUNTRY": "IT", + "TITLE": "discovery", + "SUBTITLE": "Featuring Stevans, Irma, Kristian Bush, Boehm", + "LABEL": "EVERY MONDAY", + "DESCRIPTION": "Discover some brand new tracks and music that's just brand new to you.", + "COVER": { + "TYPE": "artist", + "MD5": "7c7c1f94853a419182e2a998729d4e89-7c7c1f94853a419182e2a998729d4e89-0027c2236b4bb84671bea0e6f57bbdda-87ea9f891ecc0ffd1920b1054144a1d2" + }, + "PICTURES": [ + { "TYPE": "artist", "MD5": "0027c2236b4bb84671bea0e6f57bbdda" }, + { "TYPE": "artist", "MD5": "87ea9f891ecc0ffd1920b1054144a1d2" }, + { "TYPE": "artist", "MD5": "5a244fbd59aed689587102d029afc32d" }, + { "TYPE": "artist", "MD5": "3f1d507c52b0b197e0b51e76448aa3d9" } + ], + "CONTEXT": { + "CLUSTER_NUMBER": 0, + "PREVIEW_ALGO_VERSION": "default", + "CARD_NAME": "discoveryTracks", + "CONFIG_NAME": "discovery", + "CONFIG_VERSION": "free_mobile" + }, + "EXPIRATION_DATE": "2024-02-19T06:00:00+00:00", + "LAST_UPDATE_DATE": "2024-02-17T15:21:37+00:00", + "CONFIGURATION_ID": "discovery" + }, + "target": "/smarttracklist/discovery", + "title": "discovery", + "subtitle": "Featuring Stevans, Irma, Kristian Bush, Boehm", + "caption": "EVERY MONDAY", + "pictures": [ + { "md5": "0027c2236b4bb84671bea0e6f57bbdda", "type": "artist" }, + { "md5": "87ea9f891ecc0ffd1920b1054144a1d2", "type": "artist" }, + { "md5": "5a244fbd59aed689587102d029afc32d", "type": "artist" }, + { "md5": "3f1d507c52b0b197e0b51e76448aa3d9", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } }, + "context": { + "cluster_number": 0, + "preview_algo_version": "default", + "card_name": "discoveryTracks", + "config_name": "discovery", + "config_version": "free_mobile" + }, + "cover_title": "DISCOVERY", + "cover": { + "type": "artist", + "md5": "7c7c1f94853a419182e2a998729d4e89-7c7c1f94853a419182e2a998729d4e89-0027c2236b4bb84671bea0e6f57bbdda-87ea9f891ecc0ffd1920b1054144a1d2" + } + } + ], + "module_id": "996a1738-7beb-42c9-a2a8-a604dc68a8e7", + "title": "Discover", + "alignment": "left", + "hasMoreItems": false + }, + { + "layout": "message", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=message,section_position=5,module_id=592f4e5c-47b5-4447-9ac9-0df973f9acd8,module_type=message", + "group_id": "65d15a4b9f52d", + "items": [], + "module_id": "592f4e5c-47b5-4447-9ac9-0df973f9acd8" + }, + { + "layout": "ads", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=ads,section_position=6,module_id=18ae2db9-f18c-41d3-9c01-900c9c3229df,module_type=ad,section_content=native%3A65d15a4b49d2f", + "group_id": "65d15a4b9f535", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=ads,section_position=6,module_id=18ae2db9-f18c-41d3-9c01-900c9c3229df,module_type=ad,section_content=native%3A65d15a4b49d2f,item_type=native,item_id=65d15a4b49d2f,item_position=0", + "id": "65d15a4b49d2f", + "type": "native", + "alignment": "left", + "data": null, + "advertising_data": { + "page_id_iphone": "585500", + "page_id_ipad": "585499", + "page_id_android": "585497", + "page_id_android_tablet": "585498", + "page_id_web": "114873" + } + } + ], + "module_id": "18ae2db9-f18c-41d3-9c01-900c9c3229df", + "advertising_data": { + "page_id_iphone": "585500", + "page_id_ipad": "585499", + "page_id_android": "585497", + "page_id_android_tablet": "585498", + "page_id_web": "114873" + } + }, + { + "layout": "horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=7,module_id=5394dfc4-179e-4a97-beef-d759dd9eafd7,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_targeted-module,content_source_count=6,content_programming_count=0,section_content=channel%3A4561f98d-72bc-4973-8345-28cf75ac4b76%3Bchannel%3A%3Bchannel%3A96e8fae2-055f-439a-b304-acbfa33ea296%3Bchannel%3A%3Bchannel%3A5f1eb5c3-f36d-4cc9-a071-dd0c98e2f038", + "group_id": "65d15a4b9f546", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=7,module_id=5394dfc4-179e-4a97-beef-d759dd9eafd7,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_targeted-module,content_source_count=6,content_programming_count=0,section_content=channel%3A4561f98d-72bc-4973-8345-28cf75ac4b76%3Bchannel%3A%3Bchannel%3A96e8fae2-055f-439a-b304-acbfa33ea296%3Bchannel%3A%3Bchannel%3A5f1eb5c3-f36d-4cc9-a071-dd0c98e2f038,item_type=channel,item_id=4561f98d-72bc-4973-8345-28cf75ac4b76,item_position=0", + "id": "4561f98d-72bc-4973-8345-28cf75ac4b76", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "4561f98d-72bc-4973-8345-28cf75ac4b76", + "name": "Music quizzes", + "title": "Music quizzes", + "logo": null, + "description": null, + "slug": "games", + "background_color": "#202122", + "pictures": [ + { "md5": "5abf08690a3ba423b6ae29ffedae01d6", "type": "misc" } + ], + "__TYPE__": "channel" + }, + "target": "/channels/games", + "title": "Music quizzes", + "pictures": [ + { "md5": "5abf08690a3ba423b6ae29ffedae01d6", "type": "misc" } + ], + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#202122" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=7,module_id=5394dfc4-179e-4a97-beef-d759dd9eafd7,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_targeted-module,content_source_count=6,content_programming_count=0,section_content=channel%3A4561f98d-72bc-4973-8345-28cf75ac4b76%3Bchannel%3A%3Bchannel%3A96e8fae2-055f-439a-b304-acbfa33ea296%3Bchannel%3A%3Bchannel%3A5f1eb5c3-f36d-4cc9-a071-dd0c98e2f038,item_type=channel,item_id=,item_position=1", + "id": null, + "type": "channel", + "alignment": "left", + "data": { + "pictures": [ + { "md5": "a48f6dd2a2283e64315050797164d72a", "type": "misc" } + ], + "target": "/concerts", + "title": "Concerts" + }, + "target": "/concerts", + "title": "Concerts", + "pictures": [ + { "md5": "a48f6dd2a2283e64315050797164d72a", "type": "misc" } + ] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=7,module_id=5394dfc4-179e-4a97-beef-d759dd9eafd7,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_targeted-module,content_source_count=6,content_programming_count=0,section_content=channel%3A4561f98d-72bc-4973-8345-28cf75ac4b76%3Bchannel%3A%3Bchannel%3A96e8fae2-055f-439a-b304-acbfa33ea296%3Bchannel%3A%3Bchannel%3A5f1eb5c3-f36d-4cc9-a071-dd0c98e2f038,item_type=channel,item_id=96e8fae2-055f-439a-b304-acbfa33ea296,item_position=2", + "id": "96e8fae2-055f-439a-b304-acbfa33ea296", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "96e8fae2-055f-439a-b304-acbfa33ea296", + "name": "Podcasts", + "title": "Podcasts", + "logo": null, + "description": null, + "slug": "podcasts", + "background_color": "#202122", + "pictures": [ + { "md5": "55dd289c7de652a42ca9d27aad53464b", "type": "misc" } + ], + "__TYPE__": "channel" + }, + "target": "/channels/podcasts", + "title": "Podcasts", + "pictures": [ + { "md5": "55dd289c7de652a42ca9d27aad53464b", "type": "misc" } + ], + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#202122" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=7,module_id=5394dfc4-179e-4a97-beef-d759dd9eafd7,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_targeted-module,content_source_count=6,content_programming_count=0,section_content=channel%3A4561f98d-72bc-4973-8345-28cf75ac4b76%3Bchannel%3A%3Bchannel%3A96e8fae2-055f-439a-b304-acbfa33ea296%3Bchannel%3A%3Bchannel%3A5f1eb5c3-f36d-4cc9-a071-dd0c98e2f038,item_type=channel,item_id=,item_position=3", + "id": null, + "type": "channel", + "alignment": "left", + "data": { + "pictures": [ + { "md5": "637994433bfe61551692442d7c3e4d4e", "type": "misc" } + ], + "target": "/channels/mydeezeryear", + "title": "My Deezer Year" + }, + "target": "/channels/mydeezeryear", + "title": "My Deezer Year", + "pictures": [ + { "md5": "637994433bfe61551692442d7c3e4d4e", "type": "misc" } + ] + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=7,module_id=5394dfc4-179e-4a97-beef-d759dd9eafd7,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_targeted-module,content_source_count=6,content_programming_count=0,section_content=channel%3A4561f98d-72bc-4973-8345-28cf75ac4b76%3Bchannel%3A%3Bchannel%3A96e8fae2-055f-439a-b304-acbfa33ea296%3Bchannel%3A%3Bchannel%3A5f1eb5c3-f36d-4cc9-a071-dd0c98e2f038,item_type=channel,item_id=5f1eb5c3-f36d-4cc9-a071-dd0c98e2f038,item_position=4", + "id": "5f1eb5c3-f36d-4cc9-a071-dd0c98e2f038", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "5f1eb5c3-f36d-4cc9-a071-dd0c98e2f038", + "name": "Deezer Originals", + "title": "Deezer Originals", + "logo": null, + "description": null, + "slug": "deezerexclusives", + "background_color": "#191919", + "pictures": [ + { "md5": "064ad0fcfc366f5e1c7f190ac1da8030", "type": "misc" } + ], + "__TYPE__": "channel" + }, + "target": "/channels/deezerexclusives", + "title": "Deezer Originals", + "pictures": [ + { "md5": "064ad0fcfc366f5e1c7f190ac1da8030", "type": "misc" } + ], + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#191919" + } + ], + "module_id": "5394dfc4-179e-4a97-beef-d759dd9eafd7", + "title": "Go beyond streaming", + "alignment": "left", + "hasMoreItems": false + }, + { + "layout": "long-card-horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=long-card-horizontal-grid,section_position=8,module_id=2a7e897f-9bcf-4563-8e11-b93a601766e1,module_type=playlists,layout=playlists_layout_long-card-horizontal-grid,content_source=playlists_content-source_user-suggested,content_source_version=default,content_source_count=6,content_programming_count=0,section_content=playlist%3A8282573142%3Bplaylist%3A8873748882%3Bplaylist%3A8074581462%3Bplaylist%3A8326097522%3Bplaylist%3A1282523285%3Bplaylist%3A1964028802", + "group_id": "65d15a4b9f58c", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=long-card-horizontal-grid,section_position=8,module_id=2a7e897f-9bcf-4563-8e11-b93a601766e1,module_type=playlists,layout=playlists_layout_long-card-horizontal-grid,content_source=playlists_content-source_user-suggested,content_source_version=default,content_source_count=6,content_programming_count=0,section_content=playlist%3A8282573142%3Bplaylist%3A8873748882%3Bplaylist%3A8074581462%3Bplaylist%3A8326097522%3Bplaylist%3A1282523285%3Bplaylist%3A1964028802,item_type=playlist,item_id=8282573142,item_position=0", + "id": "8282573142", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 122440, + "NB_SONG": 50, + "PARENT_USER_ID": "753546365", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "8282573142", + "PLAYLIST_PICTURE": "b99174216c4c1819523b32876871d947", + "STATUS": 0, + "TITLE": "2010s Pop", + "TYPE": "0", + "DATE_MOD": "2023-11-07 18:37:19", + "DATE_ADD": "2021-11-12 12:35:11", + "DESCRIPTION": "Album drops and meat dresses, go back to the best of 2010s pop.", + "__TYPE__": "playlist", + "__PAYLOAD__": { "ORIGIN": "knn_from_svd_emb" } + }, + "target": "/playlist/8282573142", + "title": "2010s Pop", + "subtitle": "50 tracks - 122 440 fans", + "description": "Album drops and meat dresses, go back to the best of 2010s pop.", + "pictures": [ + { "md5": "b99174216c4c1819523b32876871d947", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=long-card-horizontal-grid,section_position=8,module_id=2a7e897f-9bcf-4563-8e11-b93a601766e1,module_type=playlists,layout=playlists_layout_long-card-horizontal-grid,content_source=playlists_content-source_user-suggested,content_source_version=default,content_source_count=6,content_programming_count=0,section_content=playlist%3A8282573142%3Bplaylist%3A8873748882%3Bplaylist%3A8074581462%3Bplaylist%3A8326097522%3Bplaylist%3A1282523285%3Bplaylist%3A1964028802,item_type=playlist,item_id=8873748882,item_position=1", + "id": "8873748882", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 64776, + "NB_SONG": 50, + "PARENT_USER_ID": "846571671", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "8873748882", + "PLAYLIST_PICTURE": "0db9695c978613bc19ff1c430ed9c53e", + "STATUS": 0, + "TITLE": "00s Happy Hits", + "TYPE": "0", + "DATE_MOD": "2023-11-07 18:38:16", + "DATE_ADD": "2022-12-08 14:35:29", + "DESCRIPTION": "The greatest feel good songs of the 00s are here!", + "__TYPE__": "playlist", + "__PAYLOAD__": { "ORIGIN": "knn_from_svd_emb" } + }, + "target": "/playlist/8873748882", + "title": "00s Happy Hits", + "subtitle": "50 tracks - 64 776 fans", + "description": "The greatest feel good songs of the 00s are here!", + "pictures": [ + { "md5": "0db9695c978613bc19ff1c430ed9c53e", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=long-card-horizontal-grid,section_position=8,module_id=2a7e897f-9bcf-4563-8e11-b93a601766e1,module_type=playlists,layout=playlists_layout_long-card-horizontal-grid,content_source=playlists_content-source_user-suggested,content_source_version=default,content_source_count=6,content_programming_count=0,section_content=playlist%3A8282573142%3Bplaylist%3A8873748882%3Bplaylist%3A8074581462%3Bplaylist%3A8326097522%3Bplaylist%3A1282523285%3Bplaylist%3A1964028802,item_type=playlist,item_id=8074581462,item_position=2", + "id": "8074581462", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 84179, + "NB_SONG": 50, + "PARENT_USER_ID": "753566875", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "8074581462", + "PLAYLIST_PICTURE": "d41cc8b542a367bf1ca520cc5f4f4025", + "STATUS": 0, + "TITLE": "2010s Pop Rock", + "TYPE": "0", + "DATE_MOD": "2023-11-07 18:37:15", + "DATE_ADD": "2023-07-11 19:30:18", + "DESCRIPTION": "Turn off your radio, all the 2010s pop rock hits you need are here!", + "__TYPE__": "playlist", + "__PAYLOAD__": { "ORIGIN": "knn_from_svd_emb" } + }, + "target": "/playlist/8074581462", + "title": "2010s Pop Rock", + "subtitle": "50 tracks - 84 179 fans", + "description": "Turn off your radio, all the 2010s pop rock hits you need are here!", + "pictures": [ + { "md5": "d41cc8b542a367bf1ca520cc5f4f4025", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=long-card-horizontal-grid,section_position=8,module_id=2a7e897f-9bcf-4563-8e11-b93a601766e1,module_type=playlists,layout=playlists_layout_long-card-horizontal-grid,content_source=playlists_content-source_user-suggested,content_source_version=default,content_source_count=6,content_programming_count=0,section_content=playlist%3A8282573142%3Bplaylist%3A8873748882%3Bplaylist%3A8074581462%3Bplaylist%3A8326097522%3Bplaylist%3A1282523285%3Bplaylist%3A1964028802,item_type=playlist,item_id=8326097522,item_position=3", + "id": "8326097522", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 130446, + "NB_SONG": 50, + "PARENT_USER_ID": "753546365", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "8326097522", + "PLAYLIST_PICTURE": "23b3afb39b03aadda4874ae0342a6fb1", + "STATUS": 0, + "TITLE": "2000s Pop", + "TYPE": "0", + "DATE_MOD": "2024-02-02 00:26:03", + "DATE_ADD": "2024-02-01 16:37:20", + "DESCRIPTION": "Time travel to the era of reality TV and MP3 players with these pop songs.", + "__TYPE__": "playlist", + "__PAYLOAD__": { "ORIGIN": "knn_from_svd_emb" } + }, + "target": "/playlist/8326097522", + "title": "2000s Pop", + "subtitle": "50 tracks - 130 446 fans", + "description": "Time travel to the era of reality TV and MP3 players with these pop songs.", + "pictures": [ + { "md5": "23b3afb39b03aadda4874ae0342a6fb1", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=long-card-horizontal-grid,section_position=8,module_id=2a7e897f-9bcf-4563-8e11-b93a601766e1,module_type=playlists,layout=playlists_layout_long-card-horizontal-grid,content_source=playlists_content-source_user-suggested,content_source_version=default,content_source_count=6,content_programming_count=0,section_content=playlist%3A8282573142%3Bplaylist%3A8873748882%3Bplaylist%3A8074581462%3Bplaylist%3A8326097522%3Bplaylist%3A1282523285%3Bplaylist%3A1964028802,item_type=playlist,item_id=1282523285,item_position=4", + "id": "1282523285", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 216599, + "NB_SONG": 50, + "PARENT_USER_ID": "753546365", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "1282523285", + "PLAYLIST_PICTURE": "cf0d4876c54ce0db023dc1269b853f85", + "STATUS": 0, + "TITLE": "Soft Pop", + "TYPE": "0", + "DATE_MOD": "2023-11-07 18:37:13", + "DATE_ADD": "2023-06-23 06:00:02", + "DESCRIPTION": "A collection of classic pop songs you didn't know you needed.", + "__TYPE__": "playlist", + "__PAYLOAD__": { "ORIGIN": "knn_from_svd_emb" } + }, + "target": "/playlist/1282523285", + "title": "Soft Pop", + "subtitle": "50 tracks - 216 599 fans", + "description": "A collection of classic pop songs you didn't know you needed.", + "pictures": [ + { "md5": "cf0d4876c54ce0db023dc1269b853f85", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=long-card-horizontal-grid,section_position=8,module_id=2a7e897f-9bcf-4563-8e11-b93a601766e1,module_type=playlists,layout=playlists_layout_long-card-horizontal-grid,content_source=playlists_content-source_user-suggested,content_source_version=default,content_source_count=6,content_programming_count=0,section_content=playlist%3A8282573142%3Bplaylist%3A8873748882%3Bplaylist%3A8074581462%3Bplaylist%3A8326097522%3Bplaylist%3A1282523285%3Bplaylist%3A1964028802,item_type=playlist,item_id=1964028802,item_position=5", + "id": "1964028802", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 274361, + "NB_SONG": 50, + "PARENT_USER_ID": "753546365", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "1964028802", + "PLAYLIST_PICTURE": "e5bd97a7a5b5203a42810d8e09adf7d6", + "STATUS": 0, + "TITLE": "Throwback Pop", + "TYPE": "0", + "DATE_MOD": "2023-11-07 18:32:41", + "DATE_ADD": "2023-10-27 06:00:01", + "DESCRIPTION": "Who needs a Thursday to throwback to the best old pop songs?", + "__TYPE__": "playlist", + "__PAYLOAD__": { "ORIGIN": "knn_from_svd_emb" } + }, + "target": "/playlist/1964028802", + "title": "Throwback Pop", + "subtitle": "50 tracks - 274 361 fans", + "description": "Who needs a Thursday to throwback to the best old pop songs?", + "pictures": [ + { "md5": "e5bd97a7a5b5203a42810d8e09adf7d6", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + } + ], + "module_id": "2a7e897f-9bcf-4563-8e11-b93a601766e1", + "title": "Playlists you'll love", + "alignment": "left", + "target": "/channels/module/2a7e897f-9bcf-4563-8e11-b93a601766e1", + "related": { + "target": "/channels/module/2a7e897f-9bcf-4563-8e11-b93a601766e1", + "label": "View all", + "mandatory": false + }, + "hasMoreItems": false + }, + { + "layout": "horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4", + "group_id": "65d15a4b9f5ab", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=fcd6d4bb-2288-4733-bc15-6aa0c198a7c4,item_position=0", + "id": "fcd6d4bb-2288-4733-bc15-6aa0c198a7c4", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "fcd6d4bb-2288-4733-bc15-6aa0c198a7c4", + "name": "Pop", + "title": "Pop", + "logo": null, + "description": null, + "slug": "pop", + "background_color": "#3448FC", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/pop", + "title": "Pop", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#3448FC" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=7dc42495-d8c3-409b-9a55-9831362a5524,item_position=1", + "id": "7dc42495-d8c3-409b-9a55-9831362a5524", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "7dc42495-d8c3-409b-9a55-9831362a5524", + "name": "French music", + "title": "French music", + "logo": null, + "description": null, + "slug": "french", + "background_color": "#175E71", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/french", + "title": "French music", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#175E71" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=2ab8d537-a74c-4def-8e71-f6ce6d341415,item_position=2", + "id": "2ab8d537-a74c-4def-8e71-f6ce6d341415", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "2ab8d537-a74c-4def-8e71-f6ce6d341415", + "name": "Dance & EDM", + "title": "Dance & EDM", + "logo": null, + "description": null, + "slug": "dance", + "background_color": "#C01FC3", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/dance", + "title": "Dance & EDM", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#C01FC3" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=cee82e63-e51e-4c81-9330-de6e47ab1ac8,item_position=3", + "id": "cee82e63-e51e-4c81-9330-de6e47ab1ac8", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "cee82e63-e51e-4c81-9330-de6e47ab1ac8", + "name": "Indie & Alternative", + "title": "Indie & Alternative", + "logo": null, + "description": null, + "slug": "alternative", + "background_color": "#4D4F05", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/alternative", + "title": "Indie & Alternative", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#4D4F05" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=8f035074-398a-4dc6-b072-62d66e226851,item_position=4", + "id": "8f035074-398a-4dc6-b072-62d66e226851", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "8f035074-398a-4dc6-b072-62d66e226851", + "name": "Folk & singer-songwriter", + "title": "Folk & singer-songwriter", + "logo": null, + "description": null, + "slug": "folk", + "background_color": "#0A1578", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/folk", + "title": "Folk & singer-songwriter", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#0A1578" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=25c78c12-561b-4a05-a89c-72ffc1ae00ab,item_position=5", + "id": "25c78c12-561b-4a05-a89c-72ffc1ae00ab", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "25c78c12-561b-4a05-a89c-72ffc1ae00ab", + "name": "Rock", + "title": "Rock", + "logo": null, + "description": null, + "slug": "rock", + "background_color": "#FF3D3D", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/rock", + "title": "Rock", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#FF3D3D" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=4be4811a-852e-426d-bc23-4f2a11bdabf6,item_position=6", + "id": "4be4811a-852e-426d-bc23-4f2a11bdabf6", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "4be4811a-852e-426d-bc23-4f2a11bdabf6", + "name": "Movies & Series", + "title": "Movies & Series", + "logo": null, + "description": null, + "slug": "soundtracks", + "background_color": "#3448FC", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/soundtracks", + "title": "Movies & Series", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#3448FC" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=960e53e9-899f-4e15-8088-9cae057cea26,item_position=7", + "id": "960e53e9-899f-4e15-8088-9cae057cea26", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "960e53e9-899f-4e15-8088-9cae057cea26", + "name": "Rap", + "title": "Rap", + "logo": null, + "description": null, + "slug": "rap", + "background_color": "#4E0193", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/rap", + "title": "Rap", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#4E0193" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=b1ad7fcf-d7d8-4271-970b-75818e593ca5,item_position=8", + "id": "b1ad7fcf-d7d8-4271-970b-75818e593ca5", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "b1ad7fcf-d7d8-4271-970b-75818e593ca5", + "name": "R&B", + "title": "R&B", + "logo": null, + "description": null, + "slug": "rnb", + "background_color": "#C01FC3", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/rnb", + "title": "R&B", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#C01FC3" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=7ff8d5d6-807c-4207-80c1-21a07ca2f457,item_position=9", + "id": "7ff8d5d6-807c-4207-80c1-21a07ca2f457", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "7ff8d5d6-807c-4207-80c1-21a07ca2f457", + "name": "Electronic", + "title": "Electronic", + "logo": null, + "description": null, + "slug": "electronic", + "background_color": "#FF673D", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/electronic", + "title": "Electronic", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#FF673D" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=b0df4b40-e107-4553-a009-59ad373ff68c,item_position=10", + "id": "b0df4b40-e107-4553-a009-59ad373ff68c", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "b0df4b40-e107-4553-a009-59ad373ff68c", + "name": "Latin music", + "title": "Latin music", + "logo": null, + "description": null, + "slug": "latin", + "background_color": "#FF673D", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/latin", + "title": "Latin music", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#FF673D" + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=9,module_id=868606eb-4afc-4e1a-b4e4-75b30da34ac8,module_type=channel,layout=channel_layout_horizontal-grid,content_source=channel_content-source_recommendations,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=channel%3Afcd6d4bb-2288-4733-bc15-6aa0c198a7c4%3Bchannel%3A7dc42495-d8c3-409b-9a55-9831362a5524%3Bchannel%3A2ab8d537-a74c-4def-8e71-f6ce6d341415%3Bchannel%3Acee82e63-e51e-4c81-9330-de6e47ab1ac8%3Bchannel%3A8f035074-398a-4dc6-b072-62d66e226851%3Bchannel%3A25c78c12-561b-4a05-a89c-72ffc1ae00ab%3Bchannel%3A4be4811a-852e-426d-bc23-4f2a11bdabf6%3Bchannel%3A960e53e9-899f-4e15-8088-9cae057cea26%3Bchannel%3Ab1ad7fcf-d7d8-4271-970b-75818e593ca5%3Bchannel%3A7ff8d5d6-807c-4207-80c1-21a07ca2f457%3Bchannel%3Ab0df4b40-e107-4553-a009-59ad373ff68c%3Bchannel%3A973baebc-01f1-41d4-bb9e-214b3032aea4,item_type=channel,item_id=973baebc-01f1-41d4-bb9e-214b3032aea4,item_position=11", + "id": "973baebc-01f1-41d4-bb9e-214b3032aea4", + "type": "channel", + "alignment": "left", + "data": { + "type": "channel", + "id": "973baebc-01f1-41d4-bb9e-214b3032aea4", + "name": "Reggaeton", + "title": "Reggaeton", + "logo": null, + "description": null, + "slug": "reggaeton", + "background_color": "#90931E", + "pictures": [], + "__TYPE__": "channel" + }, + "target": "/channels/reggaeton", + "title": "Reggaeton", + "layout_parameters": { + "cta": { "type": "browse", "label": "BROWSE" } + }, + "background_color": "#90931E" + } + ], + "module_id": "868606eb-4afc-4e1a-b4e4-75b30da34ac8", + "title": "Your top genres", + "alignment": "left", + "target": "/channels/explore", + "related": { + "target": "/channels/explore", + "label": "View all", + "mandatory": true + }, + "hasMoreItems": true + }, + { + "layout": "horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482", + "group_id": "65d15a4b9f5f4", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=547520122,item_position=0", + "id": "547520122", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "547520122", + "ALB_PICTURE": "d2d717350a1f2fcc7ef9fb01eb84163f", + "ALB_TITLE": "Training Season", + "ART_ID": "8706544", + "ART_NAME": "Dua Lipa", + "ORIGINAL_RELEASE_DATE": "2024-02-15", + "DIGITAL_RELEASE_DATE": "2024-02-15", + "PHYSICAL_RELEASE_DATE": "2024-02-15", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "unmissable", + "distance": 0 + } + }, + "target": "/album/547520122", + "title": "Training Season", + "subtitle": "by Dua Lipa", + "description": "Dua Lipa", + "pictures": [ + { "md5": "d2d717350a1f2fcc7ef9fb01eb84163f", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=545084472,item_position=1", + "id": "545084472", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "545084472", + "ALB_PICTURE": "52167dae6ea221830c803822d9f96999", + "ALB_TITLE": "Triumphant", + "ART_ID": "7890702", + "ART_NAME": "Marshmello", + "ORIGINAL_RELEASE_DATE": "2024-02-16", + "DIGITAL_RELEASE_DATE": "2024-02-16", + "PHYSICAL_RELEASE_DATE": "2024-02-16", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "unmissable", + "distance": 0 + } + }, + "target": "/album/545084472", + "title": "Triumphant", + "subtitle": "by Marshmello", + "description": "Marshmello", + "pictures": [ + { "md5": "52167dae6ea221830c803822d9f96999", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=542277232,item_position=2", + "id": "542277232", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "542277232", + "ALB_PICTURE": "5a361d7aab28875eb0db2e921b3783c7", + "ALB_TITLE": "EL MERENGUE (8D)", + "ART_ID": "147406", + "ART_NAME": "The Harmony Group", + "ORIGINAL_RELEASE_DATE": "2024-02-12", + "DIGITAL_RELEASE_DATE": "2024-02-12", + "PHYSICAL_RELEASE_DATE": "2024-02-12", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.7657214999198914 + } + }, + "target": "/album/542277232", + "title": "EL MERENGUE (8D)", + "subtitle": "by The Harmony Group", + "description": "The Harmony Group", + "pictures": [ + { "md5": "5a361d7aab28875eb0db2e921b3783c7", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=545629772,item_position=3", + "id": "545629772", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "545629772", + "ALB_PICTURE": "ed4b33c2c91d94dc9183aa0676aedd52", + "ALB_TITLE": "Memorabilia / A Man Could Get Lost E.P.", + "ART_ID": "1668", + "ART_NAME": "Soft Cell", + "ORIGINAL_RELEASE_DATE": "2024-02-16", + "DIGITAL_RELEASE_DATE": "2024-02-16", + "PHYSICAL_RELEASE_DATE": "2024-02-16", + "TYPE": "1", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 0 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.719167947769165 + } + }, + "target": "/album/545629772", + "title": "Memorabilia / A Man Could Get Lost E.P.", + "subtitle": "by Soft Cell", + "description": "Soft Cell", + "pictures": [ + { "md5": "ed4b33c2c91d94dc9183aa0676aedd52", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=542121352,item_position=4", + "id": "542121352", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "542121352", + "ALB_PICTURE": "fa838e7d870c64c600f048f2457ce024", + "ALB_TITLE": "Proud Mary (Acapella)", + "ART_ID": "1454", + "ART_NAME": "Tina Turner", + "DIGITAL_RELEASE_DATE": "2024-02-14", + "PHYSICAL_RELEASE_DATE": "2024-02-14", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.7041401267051697 + } + }, + "target": "/album/542121352", + "title": "Proud Mary (Acapella)", + "subtitle": "by Tina Turner", + "description": "Tina Turner", + "pictures": [ + { "md5": "fa838e7d870c64c600f048f2457ce024", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=547367352,item_position=5", + "id": "547367352", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "547367352", + "ALB_PICTURE": "56e37f07c793c99db225030dd44d6383", + "ALB_TITLE": "Ceux qu'on \u00e9tait", + "ART_ID": "213526617", + "ART_NAME": "Gang of Moms", + "ORIGINAL_RELEASE_DATE": "2024-02-13", + "DIGITAL_RELEASE_DATE": "2024-02-13", + "PHYSICAL_RELEASE_DATE": "2024-02-13", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.671085774898529 + } + }, + "target": "/album/547367352", + "title": "Ceux qu'on \u00e9tait", + "subtitle": "by Gang of Moms", + "description": "Gang of Moms", + "pictures": [ + { "md5": "56e37f07c793c99db225030dd44d6383", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=544015112,item_position=6", + "id": "544015112", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "544015112", + "ALB_PICTURE": "594067b281108889963c2b75d6577f4c", + "ALB_TITLE": "Dans cette immensit\u00e9", + "ART_ID": "220959605", + "ART_NAME": "Adrien Susini", + "ORIGINAL_RELEASE_DATE": "2024-02-14", + "DIGITAL_RELEASE_DATE": "2024-02-14", + "PHYSICAL_RELEASE_DATE": "2024-02-14", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.6617125272750854 + } + }, + "target": "/album/544015112", + "title": "Dans cette immensit\u00e9", + "subtitle": "by Adrien Susini", + "description": "Adrien Susini", + "pictures": [ + { "md5": "594067b281108889963c2b75d6577f4c", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=506702781,item_position=7", + "id": "506702781", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "506702781", + "ALB_PICTURE": "fb32f9fb3ddf31dcd566664650f4c752", + "ALB_TITLE": "Ten songs for you", + "ART_ID": "3128", + "ART_NAME": "Supertramp", + "ORIGINAL_RELEASE_DATE": "2024-02-16", + "DIGITAL_RELEASE_DATE": "2024-02-16", + "PHYSICAL_RELEASE_DATE": "2024-02-16", + "TYPE": "1", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 4, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.6559032201766968 + } + }, + "target": "/album/506702781", + "title": "Ten songs for you", + "subtitle": "by Supertramp", + "description": "Supertramp", + "pictures": [ + { "md5": "fb32f9fb3ddf31dcd566664650f4c752", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=546635462,item_position=8", + "id": "546635462", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "546635462", + "ALB_PICTURE": "b7850b986247d0557a42888ed419d674", + "ALB_TITLE": "WAS HAST DU MIT MIR GEMACHT", + "ART_ID": "6487359", + "ART_NAME": "Ardy", + "ORIGINAL_RELEASE_DATE": "2024-02-16", + "DIGITAL_RELEASE_DATE": "2024-02-16", + "PHYSICAL_RELEASE_DATE": "2024-02-16", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.6456817388534546 + } + }, + "target": "/album/546635462", + "title": "WAS HAST DU MIT MIR GEMACHT", + "subtitle": "by Ardy", + "description": "Ardy", + "pictures": [ + { "md5": "b7850b986247d0557a42888ed419d674", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=545300542,item_position=9", + "id": "545300542", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "545300542", + "ALB_PICTURE": "36b1a394c729bb9871dc4092ead67639", + "ALB_TITLE": "River Flow In You", + "ART_ID": "506337", + "ART_NAME": "Francesco Digilio", + "ORIGINAL_RELEASE_DATE": "2024-02-14", + "DIGITAL_RELEASE_DATE": "2024-02-14", + "PHYSICAL_RELEASE_DATE": "2024-02-14", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.6368747353553772 + } + }, + "target": "/album/545300542", + "title": "River Flow In You", + "subtitle": "by Francesco Digilio", + "description": "Francesco Digilio", + "pictures": [ + { "md5": "36b1a394c729bb9871dc4092ead67639", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=536090512,item_position=10", + "id": "536090512", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "536090512", + "ALB_PICTURE": "f6807e9469c6eecc231258c63da7c25a", + "ALB_TITLE": "Al\u00e9m", + "ART_ID": "192435", + "ART_NAME": "Dante", + "ORIGINAL_RELEASE_DATE": "2024-02-16", + "DIGITAL_RELEASE_DATE": "2024-02-16", + "PHYSICAL_RELEASE_DATE": "2024-02-16", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 2, + "EXPLICIT_COVER_STATUS": 2 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.6319188475608826 + } + }, + "target": "/album/536090512", + "title": "Al\u00e9m", + "subtitle": "by Dante", + "description": "Dante", + "pictures": [ + { "md5": "f6807e9469c6eecc231258c63da7c25a", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=10,module_id=7a65f4ed-71e1-4b6e-97ba-4de792e4af62,module_type=album,layout=album_layout_horizontal-grid,content_source=album_content-source_unmissables-new-releases,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=album%3A547520122%3Balbum%3A545084472%3Balbum%3A542277232%3Balbum%3A545629772%3Balbum%3A542121352%3Balbum%3A547367352%3Balbum%3A544015112%3Balbum%3A506702781%3Balbum%3A546635462%3Balbum%3A545300542%3Balbum%3A536090512%3Balbum%3A547512482,item_type=album,item_id=547512482,item_position=11", + "id": "547512482", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "547512482", + "ALB_PICTURE": "e47e67e1adae7516ff230355f40efa91", + "ALB_TITLE": "Late Night Willie Nelson", + "ART_ID": "2947", + "ART_NAME": "Willie Nelson", + "ORIGINAL_RELEASE_DATE": "2024-02-14", + "DIGITAL_RELEASE_DATE": "2024-02-14", + "PHYSICAL_RELEASE_DATE": "2024-02-14", + "TYPE": "1", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 0 + }, + "__TYPE__": "album", + "__PAYLOAD__": { + "is_verified": 1, + "source_reco": "avgembedding_rds_svd", + "distance": 0.6267985105514526 + } + }, + "target": "/album/547512482", + "title": "Late Night Willie Nelson", + "subtitle": "by Willie Nelson", + "description": "Willie Nelson", + "pictures": [ + { "md5": "e47e67e1adae7516ff230355f40efa91", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + } + ], + "module_id": "7a65f4ed-71e1-4b6e-97ba-4de792e4af62", + "title": "New releases for you", + "alignment": "left", + "target": "/channels/new", + "related": { + "target": "/channels/new", + "label": "View all", + "mandatory": true + }, + "hasMoreItems": true + }, + { + "layout": "horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188", + "group_id": "65d15a4b9f626", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=8058039,item_position=0", + "id": "8058039", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "8058039", + "ART_NAME": "Joel Corry", + "URL_REWRITING": "joel-corry", + "ART_PICTURE": "056432d17ad7e383510047c562c2d6ab", + "NB_FAN": 87158, + "SMARTRADIO": 1, + "LOCALES": { "lang_en": { "name": "Joel Corry" } }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/8058039", + "title": "Joel Corry", + "subtitle": "87 158 fans", + "pictures": [ + { "md5": "056432d17ad7e383510047c562c2d6ab", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=4023815,item_position=1", + "id": "4023815", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "4023815", + "ART_NAME": "Olly Alexander (Years & Years)", + "URL_REWRITING": "years-years", + "ART_PICTURE": "ac7e3baf0cf1db33d96234530f2e4a52", + "NB_FAN": 932124, + "SMARTRADIO": 1, + "LOCALES": [], + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/4023815", + "title": "Olly Alexander (Years & Years)", + "subtitle": "932 124 fans", + "pictures": [ + { "md5": "ac7e3baf0cf1db33d96234530f2e4a52", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=5068032,item_position=2", + "id": "5068032", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "5068032", + "ART_NAME": "Felix Jaehn", + "URL_REWRITING": "felix-jaehn", + "ART_PICTURE": "a6c22df36a4d1e59f4cd9d1cc23fcad4", + "NB_FAN": 730913, + "SMARTRADIO": 1, + "LOCALES": { + "lang_en": { "name": "Felix Jaehn" }, + "lang_ja-hrkt": { + "name": "\u30d5\u30a7\u30ea\u30c3\u30af\u30b9\u30fb\u30b8\u30a7\u30fc\u30f3" + }, + "lang_ja-jpan": { + "name": "\u30d5\u30a7\u30ea\u30c3\u30af\u30b9\u30fb\u30b8\u30a7\u30fc\u30f3" + }, + "lang_ja-kana": { + "name": "\u30d5\u30a7\u30ea\u30c3\u30af\u30b9\u30b8\u30a7\u30fc\u30f3" + } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/5068032", + "title": "Felix Jaehn", + "subtitle": "730 913 fans", + "pictures": [ + { "md5": "a6c22df36a4d1e59f4cd9d1cc23fcad4", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=293585,item_position=3", + "id": "293585", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "293585", + "ART_NAME": "Avicii", + "URL_REWRITING": "avicii", + "ART_PICTURE": "82e214b0cb39316f4a12a082fded54f6", + "NB_FAN": 7932665, + "SMARTRADIO": 1, + "LOCALES": { + "lang_en": { "name": "Avicii" }, + "lang_ja-hrkt": { "name": "\u30a2\u30d3\u30fc\u30c1\u30fc" }, + "lang_ja-jpan": { + "name": "\u30a2\u30f4\u30a3\u30fc\u30c1\u30fc" + }, + "lang_ja-kana": { + "name": "\u30a2\u30f4\u30a3\u30fc\u30c1\u30fc" + }, + "lang_ar": { "name": "\u0623\u0641\u064a\u062a\u0634\u064a" } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/293585", + "title": "Avicii", + "subtitle": "7 932 665 fans", + "pictures": [ + { "md5": "82e214b0cb39316f4a12a082fded54f6", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=2699221,item_position=4", + "id": "2699221", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "2699221", + "ART_NAME": "Becky Hill", + "URL_REWRITING": "becky-hill", + "ART_PICTURE": "eeeb3ca2782a7f53edfaa9c787770c3d", + "NB_FAN": 215581, + "SMARTRADIO": 1, + "LOCALES": { + "lang_en": { "name": "Becky Hill" }, + "lang_ja-hrkt": { + "name": "\u30d9\u30c3\u30ad\u30fc\u30d2\u30eb" + }, + "lang_ja-jpan": { + "name": "\u30d9\u30c3\u30ad\u30fc\u30fb\u30d2\u30eb" + }, + "lang_ja-kana": { + "name": "\u30d9\u30c3\u30ad\u30fc\u3000\u30d2\u30eb" + } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/2699221", + "title": "Becky Hill", + "subtitle": "215 581 fans", + "pictures": [ + { "md5": "eeeb3ca2782a7f53edfaa9c787770c3d", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=434,item_position=5", + "id": "434", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "434", + "ART_NAME": "Ti\u00ebsto", + "URL_REWRITING": "tiesto", + "ART_PICTURE": "37106f80dfd596909845fe017e204b71", + "NB_FAN": 3834294, + "SMARTRADIO": 1, + "LOCALES": { + "lang_en": { "name": "Ti\u00ebsto" }, + "lang_ja-hrkt": { "name": "\u30c6\u30a3\u30a8\u30b9\u30c8" }, + "lang_ja-jpan": { "name": "\u30c6\u30a3\u30a8\u30b9\u30c8" }, + "lang_zh-hans": { "name": "\u63d0\u96c5\u65af\u591a" }, + "lang_zh-hant": { "name": "\u63d0\u96c5\u65af\u591a" }, + "lang_ja": { "name": "Tiesto" }, + "lang_ja-kana": { "name": "\u30c6\u30a3\u30a8\u30b9\u30c8" }, + "lang_ar": { "name": "\u062a\u064a\u0633\u062a\u0648" } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/434", + "title": "Ti\u00ebsto", + "subtitle": "3 834 294 fans", + "pictures": [ + { "md5": "37106f80dfd596909845fe017e204b71", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=7295534,item_position=6", + "id": "7295534", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "7295534", + "ART_NAME": "Gryffin", + "URL_REWRITING": "gryffin", + "ART_PICTURE": "2a0f8fa1417c610e7b6da8f8e1f8ac1d", + "NB_FAN": 51091, + "SMARTRADIO": 1, + "LOCALES": { + "lang_en": { "name": "Gryffin" }, + "lang_ja-hrkt": { "name": "\u30b0\u30ea\u30d5\u30a3\u30f3" }, + "lang_ja-jpan": { "name": "\u30b0\u30ea\u30d5\u30a3\u30f3" }, + "lang_ko-kr": { "name": "\uadf8\ub9ac\ud540" } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/7295534", + "title": "Gryffin", + "subtitle": "51 091 fans", + "pictures": [ + { "md5": "2a0f8fa1417c610e7b6da8f8e1f8ac1d", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=1678249,item_position=7", + "id": "1678249", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "1678249", + "ART_NAME": "Rita Ora", + "URL_REWRITING": "rita-ora", + "ART_PICTURE": "6e2fa914a99f8f2dab60900371998435", + "NB_FAN": 2705027, + "SMARTRADIO": 1, + "LOCALES": { + "lang_ja-jpan": { "name": "Rita Ora" }, + "lang_ja-kana": { "name": "\u30ea\u30bf\u30aa\u30e9" }, + "lang_en": { "name": "Rita Ora" }, + "lang_ja-hrkt": { "name": "\u30ea\u30bf\u30aa\u30e9" }, + "lang_ja": { "name": "Rita Ora" } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/1678249", + "title": "Rita Ora", + "subtitle": "2 705 027 fans", + "pictures": [ + { "md5": "6e2fa914a99f8f2dab60900371998435", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=3968561,item_position=8", + "id": "3968561", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "3968561", + "ART_NAME": "Martin Garrix", + "URL_REWRITING": "martin-garrix", + "ART_PICTURE": "c53b684dc60abbde2a50afe9a524c863", + "NB_FAN": 7344374, + "SMARTRADIO": 1, + "LOCALES": { + "lang_en": { "name": "Martin Garrix" }, + "lang_ja-hrkt": { + "name": "\u30de\u30fc\u30c6\u30a3\u30f3\u30ae\u30e3\u30ea\u30c3\u30af\u30b9" + }, + "lang_ja-jpan": { + "name": "\u30de\u30fc\u30c6\u30a3\u30f3\u30fb\u30ae\u30e3\u30ea\u30c3\u30af\u30b9" + }, + "lang_ja-kana": { + "name": "\u30de\u30fc\u30c6\u30a3\u30f3\u30ae\u30e3\u30ea\u30c3\u30af\u30b9" + }, + "lang_ja": { "name": "MARTIN GARRIX" }, + "lang_ar": { + "name": "\u0645\u0627\u0631\u062a\u0646 \u062c\u0627\u0631\u064a\u0643\u0633" + } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/3968561", + "title": "Martin Garrix", + "subtitle": "7 344 374 fans", + "pictures": [ + { "md5": "c53b684dc60abbde2a50afe9a524c863", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=175997,item_position=9", + "id": "175997", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "175997", + "ART_NAME": "Sebastian Ingrosso", + "URL_REWRITING": "sebastian-ingrosso", + "ART_PICTURE": "f683735ed7058ec809a9fbb04389845f", + "NB_FAN": 535829, + "SMARTRADIO": 1, + "LOCALES": { + "lang_en": { "name": "Sebastian Ingrosso" }, + "lang_ja-hrkt": { + "name": "\u30bb\u30d0\u30b9\u30c1\u30e3\u30f3\u30a4\u30f3\u30b0\u30ed\u30c3\u30bd" + }, + "lang_ja-jpan": { + "name": "\u30bb\u30d0\u30b9\u30c1\u30e3\u30f3\u30fb\u30a4\u30f3\u30b0\u30ed\u30c3\u30bd" + }, + "lang_ar": { + "name": "\u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646 \u0625\u0646\u062c\u0631\u0648\u0633\u0648" + }, + "lang_ja-kana": { + "name": "\u30bb\u30d0\u30b9\u30c1\u30e3\u30f3\u3000\u30a4\u30f3\u30b0\u30ed\u30c3\u30bd" + }, + "lang_ja": { "name": "SEBASTIAN INGROSSO" }, + "lang_fr": { "name": "Sebastian Ingrosso" } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/175997", + "title": "Sebastian Ingrosso", + "subtitle": "535 829 fans", + "pictures": [ + { "md5": "f683735ed7058ec809a9fbb04389845f", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=5203250,item_position=10", + "id": "5203250", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "5203250", + "ART_NAME": "Sigala", + "URL_REWRITING": "sigala", + "ART_PICTURE": "bc10c50fe81d7a4cd6492650b57724df", + "NB_FAN": 265581, + "SMARTRADIO": 1, + "LOCALES": { + "lang_ja-kana": { "name": "\u30b7\u30ac\u30fc\u30e9" }, + "lang_en": { "name": "Sigala" }, + "lang_ja-hrkt": { "name": "\u30b7\u30ac\u30e9" }, + "lang_ja-jpan": { "name": "\u30b7\u30ac\u30e9" } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/5203250", + "title": "Sigala", + "subtitle": "265 581 fans", + "pictures": [ + { "md5": "bc10c50fe81d7a4cd6492650b57724df", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=11,module_id=25f9200f-1ce0-45eb-abdc-02aecf7604b2,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_similar-from-user-top,content_source_version=default,content_source_count=12,content_programming_count=0,section_content=artist%3A8058039%3Bartist%3A4023815%3Bartist%3A5068032%3Bartist%3A293585%3Bartist%3A2699221%3Bartist%3A434%3Bartist%3A7295534%3Bartist%3A1678249%3Bartist%3A3968561%3Bartist%3A175997%3Bartist%3A5203250%3Bartist%3A407188,item_type=artist,item_id=407188,item_position=11", + "id": "407188", + "type": "artist", + "alignment": "left", + "data": { + "ART_ID": "407188", + "ART_NAME": "Swedish House Mafia", + "URL_REWRITING": "swedish-house-mafia", + "ART_PICTURE": "bae3a6abb59c25a18a2a84d1700527bf", + "NB_FAN": 2088137, + "SMARTRADIO": 1, + "LOCALES": { + "lang_en": { "name": "Swedish House Mafia" }, + "lang_ja-hrkt": { + "name": "\u30b9\u30a6\u30a7\u30c7\u30a3\u30c3\u30b7\u30e5\u30cf\u30a6\u30b9\u30de\u30d5\u30a3\u30a2" + }, + "lang_ja-jpan": { + "name": "\u30b9\u30a6\u30a7\u30c7\u30a3\u30c3\u30b7\u30e5\u30fb\u30cf\u30a6\u30b9\u30fb\u30de\u30d5\u30a3\u30a2" + }, + "lang_ar": { + "name": "\u0633\u0648\u064a\u062f\u0634 \u0647\u0627\u0648\u0633 \u0645\u0627\u0641\u064a\u0627" + } + }, + "__TYPE__": "artist", + "__PAYLOAD__": { "SCORE": 0 } + }, + "target": "/artist/407188", + "title": "Swedish House Mafia", + "subtitle": "2 088 137 fans", + "pictures": [ + { "md5": "bae3a6abb59c25a18a2a84d1700527bf", "type": "artist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + } + ], + "module_id": "25f9200f-1ce0-45eb-abdc-02aecf7604b2", + "title": "Since you like Galantis", + "alignment": "left", + "hasMoreItems": false + }, + { + "layout": "horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=12,module_id=a7e24bb1-7cb2-4aae-afa2-112d842b6fbf,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_hundred-percent,content_source_version=free,content_source_count=4,content_programming_count=0,section_content=playlist%3A7615940982%3Bplaylist%3A4880867664%3Bplaylist%3A6981777764%3Bplaylist%3A7615944662", + "group_id": "65d15a4b9f650", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=12,module_id=a7e24bb1-7cb2-4aae-afa2-112d842b6fbf,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_hundred-percent,content_source_version=free,content_source_count=4,content_programming_count=0,section_content=playlist%3A7615940982%3Bplaylist%3A4880867664%3Bplaylist%3A6981777764%3Bplaylist%3A7615944662,item_type=playlist,item_id=7615940982,item_position=0", + "id": "7615940982", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 4073, + "NB_SONG": 50, + "PARENT_USER_ID": "1990304482", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "7615940982", + "PLAYLIST_PICTURE": "a499622fa83fd843ce0185070579ffb3", + "STATUS": 0, + "TITLE": "100% Eurythmics", + "TYPE": "0", + "DATE_MOD": "2023-12-11 20:29:00", + "DATE_ADD": "2023-11-06 20:23:53", + "DESCRIPTION": "The essential tracks in one playlist.", + "__TYPE__": "playlist", + "__PAYLOAD__": {} + }, + "target": "/playlist/7615940982", + "title": "100% Eurythmics", + "subtitle": "50 tracks - 4 073 fans", + "description": "The essential tracks in one playlist.", + "pictures": [ + { "md5": "a499622fa83fd843ce0185070579ffb3", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=12,module_id=a7e24bb1-7cb2-4aae-afa2-112d842b6fbf,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_hundred-percent,content_source_version=free,content_source_count=4,content_programming_count=0,section_content=playlist%3A7615940982%3Bplaylist%3A4880867664%3Bplaylist%3A6981777764%3Bplaylist%3A7615944662,item_type=playlist,item_id=4880867664,item_position=1", + "id": "4880867664", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 112589, + "NB_SONG": 40, + "PARENT_USER_ID": "1990304482", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "4880867664", + "PLAYLIST_PICTURE": "bb8d265d24cf1bd2e61bbcccf432cfd1", + "STATUS": 0, + "TITLE": "100% Dua Lipa", + "TYPE": "0", + "DATE_MOD": "2024-02-16 00:00:01", + "DATE_ADD": "2024-02-16 00:00:01", + "DESCRIPTION": "All hail the Queen of Pop. This is the Dua Lipa collection.", + "__TYPE__": "playlist", + "__PAYLOAD__": {} + }, + "target": "/playlist/4880867664", + "title": "100% Dua Lipa", + "subtitle": "40 tracks - 112 589 fans", + "description": "All hail the Queen of Pop. This is the Dua Lipa collection.", + "pictures": [ + { "md5": "bb8d265d24cf1bd2e61bbcccf432cfd1", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=12,module_id=a7e24bb1-7cb2-4aae-afa2-112d842b6fbf,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_hundred-percent,content_source_version=free,content_source_count=4,content_programming_count=0,section_content=playlist%3A7615940982%3Bplaylist%3A4880867664%3Bplaylist%3A6981777764%3Bplaylist%3A7615944662,item_type=playlist,item_id=6981777764,item_position=2", + "id": "6981777764", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 35026, + "NB_SONG": 50, + "PARENT_USER_ID": "1990304482", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "6981777764", + "PLAYLIST_PICTURE": "7e0107f876c9684baf6f7f891cfa7db5", + "STATUS": 0, + "TITLE": "100% Black Eyed Peas", + "TYPE": "0", + "DATE_MOD": "2023-11-07 18:54:05", + "DATE_ADD": "2023-07-27 16:24:50", + "DESCRIPTION": "The finest Black Eyed Peas tracks in one playlist.", + "__TYPE__": "playlist", + "__PAYLOAD__": {} + }, + "target": "/playlist/6981777764", + "title": "100% Black Eyed Peas", + "subtitle": "50 tracks - 35 026 fans", + "description": "The finest Black Eyed Peas tracks in one playlist.", + "pictures": [ + { "md5": "7e0107f876c9684baf6f7f891cfa7db5", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=12,module_id=a7e24bb1-7cb2-4aae-afa2-112d842b6fbf,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_hundred-percent,content_source_version=free,content_source_count=4,content_programming_count=0,section_content=playlist%3A7615940982%3Bplaylist%3A4880867664%3Bplaylist%3A6981777764%3Bplaylist%3A7615944662,item_type=playlist,item_id=7615944662,item_position=3", + "id": "7615944662", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 21660, + "NB_SONG": 30, + "PARENT_USER_ID": "1990304482", + "PICTURE_TYPE": "playlist", + "PLAYLIST_ID": "7615944662", + "PLAYLIST_PICTURE": "de993cb0fd9a817af0283a578bf2060b", + "STATUS": 0, + "TITLE": "100% Marshmello", + "TYPE": "0", + "DATE_MOD": "2024-02-09 00:15:01", + "DATE_ADD": "2024-02-09 00:15:01", + "DESCRIPTION": "", + "__TYPE__": "playlist", + "__PAYLOAD__": {} + }, + "target": "/playlist/7615944662", + "title": "100% Marshmello", + "subtitle": "30 tracks - 21 660 fans", + "pictures": [ + { "md5": "de993cb0fd9a817af0283a578bf2060b", "type": "playlist" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + } + ], + "module_id": "a7e24bb1-7cb2-4aae-afa2-112d842b6fbf", + "title": "100% for you", + "alignment": "left", + "hasMoreItems": false + }, + { + "layout": "horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=13,module_id=b2e8249f-8541-479e-ab90-cf4cf5896cbc,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_user-never-streamed-favorites,content_source_count=2,content_programming_count=0,section_content=album%3A10236282%3Balbum%3A14880351", + "group_id": "65d15a4b9f660", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=13,module_id=b2e8249f-8541-479e-ab90-cf4cf5896cbc,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_user-never-streamed-favorites,content_source_count=2,content_programming_count=0,section_content=album%3A10236282%3Balbum%3A14880351,item_type=album,item_id=10236282,item_position=0", + "id": "10236282", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "10236282", + "ALB_PICTURE": "b15ff966b2556e7124b12491ebc4a027", + "ALB_TITLE": "Blurryface", + "ART_ID": "647650", + "ART_NAME": "Twenty One Pilots", + "ORIGINAL_RELEASE_DATE": "2015-05-15", + "DIGITAL_RELEASE_DATE": "2015-05-15", + "PHYSICAL_RELEASE_DATE": "2015-05-15", + "TYPE": "1", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 6, + "EXPLICIT_COVER_STATUS": 0 + }, + "__TYPE__": "album" + }, + "target": "/album/10236282", + "title": "Blurryface", + "subtitle": "by Twenty One Pilots", + "description": "Twenty One Pilots", + "pictures": [ + { "md5": "b15ff966b2556e7124b12491ebc4a027", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=13,module_id=b2e8249f-8541-479e-ab90-cf4cf5896cbc,module_type=artist,layout=artist_layout_horizontal-grid,content_source=artist_content-source_user-never-streamed-favorites,content_source_count=2,content_programming_count=0,section_content=album%3A10236282%3Balbum%3A14880351,item_type=album,item_id=14880351,item_position=1", + "id": "14880351", + "type": "album", + "alignment": "left", + "data": { + "ALB_ID": "14880351", + "ALB_PICTURE": "191f1abe65daeee84a0c84107cf7d61c", + "ALB_TITLE": "Water Under the Bridge", + "ART_ID": "75798", + "ART_NAME": "Adele", + "ORIGINAL_RELEASE_DATE": "2016-11-04", + "DIGITAL_RELEASE_DATE": "2016-11-04", + "PHYSICAL_RELEASE_DATE": "2016-11-04", + "TYPE": "0", + "SUBTYPES": { + "isStudio": false, + "isLive": false, + "isCompilation": false, + "isKaraoke": false + }, + "AVAILABLE": true, + "EXPLICIT_ALBUM_CONTENT": { + "EXPLICIT_LYRICS_STATUS": 0, + "EXPLICIT_COVER_STATUS": 0 + }, + "__TYPE__": "album" + }, + "target": "/album/14880351", + "title": "Water Under the Bridge", + "subtitle": "by Adele", + "description": "Adele", + "pictures": [ + { "md5": "191f1abe65daeee84a0c84107cf7d61c", "type": "cover" } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + } + ], + "module_id": "b2e8249f-8541-479e-ab90-cf4cf5896cbc", + "title": "Rediscover your favorites", + "alignment": "left", + "subtitle": "Selected by you", + "target": "/channels/module/b2e8249f-8541-479e-ab90-cf4cf5896cbc", + "related": { + "target": "/channels/module/b2e8249f-8541-479e-ab90-cf4cf5896cbc", + "label": "View all", + "mandatory": false + }, + "hasMoreItems": false + }, + { + "layout": "horizontal-grid", + "section_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=14,module_id=927121fd-ef7b-428e-8214-ae859435e51c,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_user-favorites,content_source_count=4,content_programming_count=0,section_content=playlist%3A10017555462%3Bplaylist%3A8060367722%3Bplaylist%3A9181794282%3Bplaylist%3A11571921984", + "group_id": "65d15a4b9f66f", + "items": [ + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=14,module_id=927121fd-ef7b-428e-8214-ae859435e51c,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_user-favorites,content_source_count=4,content_programming_count=0,section_content=playlist%3A10017555462%3Bplaylist%3A8060367722%3Bplaylist%3A9181794282%3Bplaylist%3A11571921984,item_type=playlist,item_id=10017555462,item_position=0", + "id": "10017555462", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 0, + "NB_SONG": 78, + "PARENT_USER_ID": "3844098602", + "PICTURE_TYPE": "cover", + "PLAYLIST_ID": "10017555462", + "PLAYLIST_PICTURE": "eaeadce7932a97533fe495881d2fcd7a-3ce985e6653c350c6e6fed077ab7d0d4-1a5f34fb1ce5ebad0557c06d90edba5c-90262c511b29bee49d50788ad64d0e32", + "STATUS": 1, + "TITLE": "nostalgia", + "TYPE": "0", + "DATE_MOD": "2023-11-15 20:44:11", + "DATE_ADD": "2022-07-17 04:20:37", + "DESCRIPTION": "", + "__TYPE__": "playlist" + }, + "target": "/playlist/10017555462", + "title": "nostalgia", + "subtitle": "78 tracks", + "pictures": [ + { + "md5": "eaeadce7932a97533fe495881d2fcd7a-3ce985e6653c350c6e6fed077ab7d0d4-1a5f34fb1ce5ebad0557c06d90edba5c-90262c511b29bee49d50788ad64d0e32", + "type": "cover" + } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=14,module_id=927121fd-ef7b-428e-8214-ae859435e51c,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_user-favorites,content_source_count=4,content_programming_count=0,section_content=playlist%3A10017555462%3Bplaylist%3A8060367722%3Bplaylist%3A9181794282%3Bplaylist%3A11571921984,item_type=playlist,item_id=8060367722,item_position=1", + "id": "8060367722", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 0, + "NB_SONG": 19, + "PARENT_USER_ID": "3844098602", + "PICTURE_TYPE": "cover", + "PLAYLIST_ID": "8060367722", + "PLAYLIST_PICTURE": "2d8b85531734e846d477f5f99f9430e1-2365e4c47ed24498b02d9d40c6e91b01-28d40bc883db4866c43f06fd82ab5153-238f1c36e8445fd162d1d53b8181ecb5", + "STATUS": 1, + "TITLE": "idk", + "TYPE": "0", + "DATE_MOD": "2023-11-07 00:07:06", + "DATE_ADD": "2020-08-27 20:58:07", + "DESCRIPTION": "", + "__TYPE__": "playlist" + }, + "target": "/playlist/8060367722", + "title": "idk", + "subtitle": "19 tracks", + "pictures": [ + { + "md5": "2d8b85531734e846d477f5f99f9430e1-2365e4c47ed24498b02d9d40c6e91b01-28d40bc883db4866c43f06fd82ab5153-238f1c36e8445fd162d1d53b8181ecb5", + "type": "cover" + } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=14,module_id=927121fd-ef7b-428e-8214-ae859435e51c,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_user-favorites,content_source_count=4,content_programming_count=0,section_content=playlist%3A10017555462%3Bplaylist%3A8060367722%3Bplaylist%3A9181794282%3Bplaylist%3A11571921984,item_type=playlist,item_id=9181794282,item_position=2", + "id": "9181794282", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 0, + "NB_SONG": 100, + "PARENT_USER_ID": "3844098602", + "PICTURE_TYPE": "cover", + "PLAYLIST_ID": "9181794282", + "PLAYLIST_PICTURE": "4c2c6143c3e83a01ea73517c57d1d138-e45246b90badf4bd3a9a994729433bf8-c0f4f022fa51f13e877aae2e758e241d-b68adb6788dfa09a314f594aec287850", + "STATUS": 1, + "TITLE": "Songs to listen to when you're in love.", + "TYPE": "0", + "DATE_MOD": "2021-06-16 18:23:20", + "DATE_ADD": "2021-06-16 18:07:17", + "DESCRIPTION": "\u2500 It's \ud835\udc18ou, it's \ud835\udc18ou, it's all for \ud835\udc18ou, Everything I do.", + "__TYPE__": "playlist" + }, + "target": "/playlist/9181794282", + "title": "Songs to listen to when you're in love.", + "subtitle": "100 tracks", + "description": "\u2500 It's \ud835\udc18ou, it's \ud835\udc18ou, it's all for \ud835\udc18ou, Everything I do.", + "pictures": [ + { + "md5": "4c2c6143c3e83a01ea73517c57d1d138-e45246b90badf4bd3a9a994729433bf8-c0f4f022fa51f13e877aae2e758e241d-b68adb6788dfa09a314f594aec287850", + "type": "cover" + } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + }, + { + "item_id": "page_id=home,render_id=018db9c8-b574-726a-a2ff-09eb7e0abf54,version=channels/home/home-desktop.1.0,section_id=horizontal-grid,section_position=14,module_id=927121fd-ef7b-428e-8214-ae859435e51c,module_type=playlists,layout=playlists_layout_horizontal-grid,content_source=playlists_content-source_user-favorites,content_source_count=4,content_programming_count=0,section_content=playlist%3A10017555462%3Bplaylist%3A8060367722%3Bplaylist%3A9181794282%3Bplaylist%3A11571921984,item_type=playlist,item_id=11571921984,item_position=3", + "id": "11571921984", + "type": "playlist", + "alignment": "left", + "data": { + "NB_FAN": 0, + "NB_SONG": 10, + "PARENT_USER_ID": "3844098602", + "PICTURE_TYPE": "cover", + "PLAYLIST_ID": "11571921984", + "PLAYLIST_PICTURE": "6c7ce1f62e2915bd02605dec9b28877e-ccf057fd82fa51e4bb6e90f360d66f88-51032c6e50ff8fd38c1813a0621086b2-1a8f399e9ddbb8ec2530232c0dfd953f", + "STATUS": 1, + "TITLE": "alice", + "TYPE": "0", + "DATE_MOD": "2024-02-16 00:47:39", + "DATE_ADD": "2024-02-16 00:47:39", + "DESCRIPTION": "", + "__TYPE__": "playlist" + }, + "target": "/playlist/11571921984", + "title": "alice", + "subtitle": "10 tracks", + "pictures": [ + { + "md5": "6c7ce1f62e2915bd02605dec9b28877e-ccf057fd82fa51e4bb6e90f360d66f88-51032c6e50ff8fd38c1813a0621086b2-1a8f399e9ddbb8ec2530232c0dfd953f", + "type": "cover" + } + ], + "layout_parameters": { "cta": { "type": "play", "label": "PLAY" } } + } + ], + "module_id": "927121fd-ef7b-428e-8214-ae859435e51c", + "title": "Playlists you love", + "alignment": "left", + "target": "/channels/module/927121fd-ef7b-428e-8214-ae859435e51c", + "related": { + "target": "/channels/module/927121fd-ef7b-428e-8214-ae859435e51c", + "label": "View all", + "mandatory": false + }, + "hasMoreItems": false + } + ], + "expire": 1708229813 + } +} diff --git a/pubspec.lock b/pubspec.lock index d3c6d93..bdd6c47 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -60,10 +60,9 @@ packages: audio_service_mpris: dependency: "direct main" description: - name: audio_service_mpris - sha256: a8d1583f9143d17b2facc994a99bd1ea257cec43adcb8d7349458555c62b570f - url: "https://pub.dev" - source: hosted + path: "../audio-service-mpris" + relative: true + source: path version: "0.1.3" audio_service_platform_interface: dependency: transitive diff --git a/pubspec.yaml b/pubspec.yaml index 77f0091..5ef193c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -84,17 +84,19 @@ dependencies: # Player just_audio: ^0.9.35 # Player plugin for Linux and Windows - just_audio_media_kit: - path: ../just_audio_media_kit + just_audio_media_kit: ^2.0.2 # Player libs for Linux and windows media_kit_libs_linux: any media_kit_libs_windows_audio: any + # Audio service plugin for Linux (MPRIS) + audio_service_mpris: + path: ../audio-service-mpris + rxdart: ^0.27.7 isar: ^3.1.0+1 isar_flutter_libs: ^3.1.0+1 flutter_background_service: ^5.0.1 - audio_service_mpris: ^0.1.0 dio: ^5.3.3 dio_cookie_manager: ^3.1.1 flutter_cache_manager_hive: @@ -105,10 +107,10 @@ dependencies: pointycastle: ^3.7.4 i18n_extension_importer: ^0.0.6 tray_manager: ^0.2.1 - window_manager: - ^0.3.8 + window_manager: ^0.3.8 get_it: ^7.6.7 - freezed_annotation: ^2.4.1 + freezed_annotation: + ^2.4.1 #deezcryptor: #path: deezcryptor/