[
  {
    "path": ".github/.github/FUNDING.yml",
    "content": "# These are supported funding model platforms\n\ngithub: adamint # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]\npatreon: # Replace with a single Patreon username\nopen_collective: # Replace with a single Open Collective username\nko_fi: adamratzman # Replace with a single Ko-fi username\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncommunity_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry\nliberapay: # Replace with a single Liberapay username\nissuehunt: # Replace with a single IssueHunt username\notechie: # Replace with a single Otechie username\ncustom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "# These are supported funding model platforms\n\ngithub: adamint # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]\npatreon: # Replace with a single Patreon username\nopen_collective: # Replace with a single Open Collective username\nko_fi: adamratzman # Replace with a single Ko-fi username\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncommunity_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry\nliberapay: # Replace with a single Liberapay username\nissuehunt: # Replace with a single IssueHunt username\notechie: # Replace with a single Otechie username\ncustom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\r\nname: Bug report\r\nabout: Create a report to help us improve\r\ntitle: ''\r\nlabels: ''\r\nassignees: ''\r\n\r\n---\r\n\r\n**Describe the bug**\r\nA clear and concise description of what the bug is.\r\n\r\n**To Reproduce**\r\nSteps to reproduce the behavior:\r\n1. Go to '...'\r\n2. Click on '....'\r\n3. Scroll down to '....'\r\n4. See error\r\n\r\n**Expected behavior**\r\nA clear and concise description of what you expected to happen.\r\n\r\n**Screenshots**\r\nIf applicable, add screenshots to help explain your problem.\r\n\r\n**Desktop (please complete the following information):**\r\n - OS: [e.g. iOS]\r\n - Browser [e.g. chrome, safari]\r\n - Version [e.g. 22]\r\n\r\n**Smartphone (please complete the following information):**\r\n - Device: [e.g. iPhone6]\r\n - OS: [e.g. iOS8.1]\r\n - Browser [e.g. stock browser, safari]\r\n - Version [e.g. 22]\r\n\r\n**Additional context**\r\nAdd any other context about the problem here.\r\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\r\nname: Feature request\r\nabout: Suggest an idea for this project\r\ntitle: ''\r\nlabels: ''\r\nassignees: ''\r\n\r\n---\r\n\r\n**Is your feature request related to a problem? Please describe.**\r\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\r\n\r\n**Describe the solution you'd like**\r\nA clear and concise description of what you want to happen.\r\n\r\n**Describe alternatives you've considered**\r\nA clear and concise description of any alternative solutions or features you've considered.\r\n\r\n**Additional context**\r\nAdd any other context or screenshots about the feature request here.\r\n"
  },
  {
    "path": ".github/workflows/ci-client.yml",
    "content": "name: CI Client Test Workflow\non:\n  workflow_dispatch:\n    inputs:\n      spotify_test_client_token:\n        description: 'Spotify client redirect token (for client tests before release)'\n        required: true\n      spotify_test_redirect_uri:\n        description: 'Spotify redirect uri'\n        required: true\nenv:\n  SPOTIFY_CLIENT_ID: ${{ secrets.SPOTIFY_CLIENT_ID }}\n  SPOTIFY_CLIENT_SECRET: ${{ secrets.SPOTIFY_CLIENT_SECRET }}\n  SPOTIFY_TOKEN_STRING: ${{ github.event.inputs.spotify_test_client_token }}\n  SPOTIFY_REDIRECT_URI: ${{ github.event.inputs.spotify_test_redirect_uri }}\njobs:\n  verify_client_android_jvm_linux_js:\n    runs-on: ubuntu-latest\n    environment: release\n    steps:\n      - name: Check out repo\n        uses: actions/checkout@v2\n      - name: Install java 11\n        uses: actions/setup-java@v2\n        with:\n          distribution: 'adopt'\n          java-version: '17'\n      - name: Install curl\n        run: sudo apt-get install -y curl libcurl4-openssl-dev\n      - name: Verify Android\n        run: ./gradlew testDebugUnitTest\n      - name: Verify JVM/JS\n        run: ./gradlew jvmTest\n      - name: Archive test results\n        uses: actions/upload-artifact@v2\n        with:\n          name: code-coverage-report\n          path: build/reports\n        if: always()"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: CI Test Workflow\n\non:\n  push:\n    branches: [ main, dev, dev/** ]\n  pull_request:\n    branches: [ main, dev, dev/** ]\n\njobs:\n  test_android_jvm_linux_trusted:\n    runs-on: ubuntu-latest\n    environment: testing\n    env:\n      SPOTIFY_CLIENT_ID: ${{ secrets.SPOTIFY_CLIENT_ID }}\n      SPOTIFY_CLIENT_SECRET: ${{ secrets.SPOTIFY_CLIENT_SECRET }}\n    steps:\n    - name: Check out repo\n      uses: actions/checkout@v2\n    - name: Install java 11\n      uses: actions/setup-java@v2\n      with:\n        distribution: 'adopt'\n        java-version: '17'\n    - name: Install curl\n      run: sudo apt-get install -y curl libcurl4-openssl-dev\n    - name: Test android\n      run: ./gradlew testDebugUnitTest\n    - name: Test jvm\n      run: ./gradlew jvmTest\n    - name: Archive test results\n      uses: actions/upload-artifact@v2\n      if: always()\n      with:\n        name: code-coverage-report\n        path: build/reports\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: Deployment workflow\non:\n  workflow_dispatch:\n    inputs:\n      release_version:\n        description: 'Semantic version number to release'\n        required: true\n      spotify_test_client_token:\n        description: 'Spotify client redirect token (for client tests before release)'\n        required: true\n      spotify_test_redirect_uri:\n        description: 'Spotify redirect uri'\n        required: true\nenv:\n  SPOTIFY_CLIENT_ID: ${{ secrets.SPOTIFY_CLIENT_ID }}\n  SPOTIFY_CLIENT_SECRET: ${{ secrets.SPOTIFY_CLIENT_SECRET }}\n  # TODO temporarily deactivating client tests due to flaky (from spotify responses) tests\n  #SPOTIFY_TOKEN_STRING: ${{ github.event.inputs.spotify_test_client_token }}\n  SPOTIFY_REDIRECT_URI: ${{ github.event.inputs.spotify_test_redirect_uri }}\n  NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}\n  NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}\n  ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.SIGNING_KEY }}\n  ORG_GRADLE_PROJECT_SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}\n  SPOTIFY_API_PUBLISH_VERSION: ${{ github.event.inputs.release_version }}\njobs:\n  release_android_jvm_linux_js:\n    runs-on: ubuntu-latest\n    environment: release\n    steps:\n      - name: Check out repo\n        uses: actions/checkout@v2\n      - name: Install java 11\n        uses: actions/setup-java@v2\n        with:\n          distribution: 'adopt'\n          java-version: '17'\n      - name: Install curl\n        run: sudo apt-get install -y curl libcurl4-openssl-dev\n      - name: Verify Android\n        run: ./gradlew testDebugUnitTest\n      - name: Verify JVM/JS\n        run: ./gradlew jvmTest\n      - name: Publish JVM/Linux/Android\n        run: ./gradlew publishKotlinMultiplatformPublicationToNexusRepository publishJvmPublicationToNexusRepository publishAndroidPublicationToNexusRepository publishLinuxX64PublicationToNexusRepository publishJsPublicationToNexusRepository\n      - name: Archive test results\n        uses: actions/upload-artifact@v2\n        with:\n          name: code-coverage-report\n          path: build/reports\n        if: always()\n  release_mac:\n    runs-on: macos-latest\n    environment: release\n    needs: release_android_jvm_linux_js\n    steps:\n      - name: Check out repo\n        uses: actions/checkout@v2\n      - name: Install java 11\n        uses: actions/setup-java@v2\n        with:\n          distribution: 'adopt'\n          java-version: '17'\n      - name: Publish macOS/iOS\n        run: ./gradlew publishMacosX64PublicationToNexusRepository publishIosX64PublicationToNexusRepository publishIosArm64PublicationToNexusRepository\n  release_windows:\n    runs-on: windows-latest\n    environment: release\n    needs: release_android_jvm_linux_js\n    steps:\n      - name: Check out repo\n        uses: actions/checkout@v2\n      - name: Install java 11\n        uses: actions/setup-java@v2\n        with:\n          distribution: 'adopt'\n          java-version: '17'\n      - run: choco install curl\n      - name: Publish windows\n        run: ./gradlew publishMingwX64PublicationToNexusRepository\n  release_docs:\n    runs-on: ubuntu-latest\n    environment: release\n    steps:\n      - name: Check out repo\n        uses: actions/checkout@v2\n      - name: Install java 11\n        uses: actions/setup-java@v2\n        with:\n          distribution: 'adopt'\n          java-version: '17'\n      - name: Build docs\n        run: ./gradlew dokkaHtml\n      - name: Push docs to docs repo\n        uses: cpina/github-action-push-to-another-repository@main\n        env:\n          API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}\n        with:\n          source-directory: 'docs'\n          destination-github-username: 'adamint'\n          destination-repository-name: 'spotify-web-api-kotlin-docs'\n          user-email: adam@adamratzman.com\n          target-branch: main\n"
  },
  {
    "path": ".gitignore",
    "content": "\r\n.DS_STORE\r\n# Created by https://www.toptal.com/developers/gitignore/api/gradle,kotlin,android,intellij+all,node\r\n# Edit at https://www.toptal.com/developers/gitignore?templates=gradle,kotlin,android,intellij+all,node\r\n\r\n### Android ###\r\n# Built application files\r\n*.apk\r\n*.aar\r\n*.ap_\r\n*.aab\r\n\r\n# Files for the ART/Dalvik VM\r\n*.dex\r\n\r\n# Java class files\r\n*.class\r\n\r\n# Generated files\r\nbin/\r\ngen/\r\nout/\r\n#  Uncomment the following line in case you need and you don't have the release build type files in your app\r\n# release/\r\n\r\n# Gradle files\r\n.gradle/\r\nbuild/\r\n\r\n# Local configuration file (sdk path, etc)\r\nlocal.properties\r\n\r\n# Proguard folder generated by Eclipse\r\nproguard/\r\n\r\n# Log Files\r\n*.log\r\n\r\n# Android Studio Navigation editor temp files\r\n.navigation/\r\n\r\n# Android Studio captures folder\r\ncaptures/\r\n\r\n# IntelliJ\r\n*.iml\r\n.idea/workspace.xml\r\n.idea/tasks.xml\r\n.idea/gradle.xml\r\n.idea/assetWizardSettings.xml\r\n.idea/dictionaries\r\n.idea/libraries\r\n# Android Studio 3 in .gitignore file.\r\n.idea/caches\r\n.idea/modules.xml\r\n# Comment next line if keeping position of elements in Navigation Editor is relevant for you\r\n.idea/navEditor.xml\r\n\r\n# Keystore files\r\n# Uncomment the following lines if you do not want to check your keystore files in.\r\n#*.jks\r\n#*.keystore\r\n\r\n# External native build folder generated in Android Studio 2.2 and later\r\n.externalNativeBuild\r\n.cxx/\r\n\r\n# Google Services (e.g. APIs or Firebase)\r\n# google-services.json\r\n\r\n# Freeline\r\nfreeline.py\r\nfreeline/\r\nfreeline_project_description.json\r\n\r\n# fastlane\r\nfastlane/report.xml\r\nfastlane/Preview.html\r\nfastlane/screenshots\r\nfastlane/test_output\r\nfastlane/readme.md\r\n\r\n# Version control\r\nvcs.xml\r\n\r\n# lint\r\nlint/intermediates/\r\nlint/generated/\r\nlint/outputs/\r\nlint/tmp/\r\n# lint/reports/\r\n\r\n### Android Patch ###\r\ngen-external-apklibs\r\noutput.json\r\n\r\n# Replacement of .externalNativeBuild directories introduced\r\n# with Android Studio 3.5.\r\n\r\n### Intellij+all ###\r\n# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider\r\n# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839\r\n\r\n# User-specific stuff\r\n.idea/**/workspace.xml\r\n.idea/**/tasks.xml\r\n.idea/**/usage.statistics.xml\r\n.idea/**/dictionaries\r\n.idea/**/shelf\r\n\r\n# Generated files\r\n.idea/**/contentModel.xml\r\n\r\n# Sensitive or high-churn files\r\n.idea/**/dataSources/\r\n.idea/**/dataSources.ids\r\n.idea/**/dataSources.local.xml\r\n.idea/**/sqlDataSources.xml\r\n.idea/**/dynamic.xml\r\n.idea/**/uiDesigner.xml\r\n.idea/**/dbnavigator.xml\r\n\r\n# Gradle\r\n.idea/**/gradle.xml\r\n.idea/**/libraries\r\n\r\n# Gradle and Maven with auto-import\r\n# When using Gradle or Maven with auto-import, you should exclude module files,\r\n# since they will be recreated, and may cause churn.  Uncomment if using\r\n# auto-import.\r\n# .idea/artifacts\r\n# .idea/compiler.xml\r\n# .idea/jarRepositories.xml\r\n# .idea/modules.xml\r\n# .idea/*.iml\r\n# .idea/modules\r\n# *.iml\r\n# *.ipr\r\n\r\n# CMake\r\ncmake-build-*/\r\n\r\n# Mongo Explorer plugin\r\n.idea/**/mongoSettings.xml\r\n\r\n# File-based project format\r\n*.iws\r\n\r\n# IntelliJ\r\n\r\n# mpeltonen/sbt-idea plugin\r\n.idea_modules/\r\n\r\n# JIRA plugin\r\natlassian-ide-plugin.xml\r\n\r\n# Cursive Clojure plugin\r\n.idea/replstate.xml\r\n\r\n# Crashlytics plugin (for Android Studio and IntelliJ)\r\ncom_crashlytics_export_strings.xml\r\ncrashlytics.properties\r\ncrashlytics-build.properties\r\nfabric.properties\r\n\r\n# Editor-based Rest Client\r\n.idea/httpRequests\r\n\r\n# Android studio 3.1+ serialized cache file\r\n.idea/caches/build_file_checksums.ser\r\n\r\n### Intellij+all Patch ###\r\n# Ignores the whole .idea folder and all .iml files\r\n# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360\r\n\r\n.idea/\r\n\r\n# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023\r\n\r\nmodules.xml\r\n.idea/misc.xml\r\n*.ipr\r\n\r\n# Sonarlint plugin\r\n.idea/sonarlint\r\n\r\n### Kotlin ###\r\n# Compiled class file\r\n\r\n# Log file\r\n\r\n# BlueJ files\r\n*.ctxt\r\n\r\n# Mobile Tools for Java (J2ME)\r\n.mtj.tmp/\r\n\r\n# Package Files #\r\n*.jar\r\n*.war\r\n*.nar\r\n*.ear\r\n*.zip\r\n*.tar.gz\r\n*.rar\r\n\r\n# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml\r\nhs_err_pid*\r\n\r\n### Node ###\r\n# Logs\r\nlogs\r\nnpm-debug.log*\r\nyarn-debug.log*\r\nyarn-error.log*\r\nlerna-debug.log*\r\n\r\n# Diagnostic reports (https://nodejs.org/api/report.html)\r\nreport.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json\r\n\r\n# Runtime data\r\npids\r\n*.pid\r\n*.seed\r\n*.pid.lock\r\n\r\n# Directory for instrumented libs generated by jscoverage/JSCover\r\nlib-cov\r\n\r\n# Coverage directory used by tools like istanbul\r\ncoverage\r\n*.lcov\r\n\r\n# nyc test coverage\r\n.nyc_output\r\n\r\n# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)\r\n.grunt\r\n\r\n# Bower dependency directory (https://bower.io/)\r\nbower_components\r\n\r\n# node-waf configuration\r\n.lock-wscript\r\n\r\n# Compiled binary addons (https://nodejs.org/api/addons.html)\r\nbuild/Release\r\n\r\n# Dependency directories\r\nnode_modules/\r\njspm_packages/\r\n\r\n# TypeScript v1 declaration files\r\ntypings/\r\n\r\n# TypeScript cache\r\n*.tsbuildinfo\r\n\r\n# Optional npm cache directory\r\n.npm\r\n\r\n# Optional eslint cache\r\n.eslintcache\r\n\r\n# Microbundle cache\r\n.rpt2_cache/\r\n.rts2_cache_cjs/\r\n.rts2_cache_es/\r\n.rts2_cache_umd/\r\n\r\n# Optional REPL history\r\n.node_repl_history\r\n\r\n# Output of 'npm pack'\r\n*.tgz\r\n\r\n# Yarn Integrity file\r\n.yarn-integrity\r\n\r\n# dotenv environment variables file\r\n.env\r\n.env.test\r\n\r\n# parcel-bundler cache (https://parceljs.org/)\r\n.cache\r\n\r\n# Next.js build output\r\n.next\r\n\r\n# Nuxt.js build / generate output\r\n.nuxt\r\ndist\r\n\r\n# Gatsby files\r\n.cache/\r\n# Comment in the public line in if your project uses Gatsby and not Next.js\r\n# https://nextjs.org/blog/next-9-1#public-directory-support\r\n# public\r\n\r\n# vuepress build output\r\n.vuepress/dist\r\n\r\n# Serverless directories\r\n.serverless/\r\n\r\n# FuseBox cache\r\n.fusebox/\r\n\r\n# DynamoDB Local files\r\n.dynamodb/\r\n\r\n# TernJS port file\r\n.tern-port\r\n\r\n# Stores VSCode versions used for testing VSCode extensions\r\n.vscode-test\r\n\r\n### Gradle ###\r\n.gradle\r\n\r\n# Ignore Gradle GUI config\r\ngradle-app.setting\r\n\r\n# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)\r\n!gradle-wrapper.jar\r\n\r\n# Cache of project\r\n.gradletasknamecache\r\n\r\n# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898\r\n# gradle/wrapper/gradle-wrapper.properties\r\n\r\n### Gradle Patch ###\r\n**/build/\r\n\r\n# End of https://www.toptal.com/developers/gitignore/api/gradle,kotlin,android,intellij+all,node\r\ndocs/"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\r\n\r\nWhen contributing to this repository, feel free to first discuss the change you wish to make via issue,\r\nemail, or any other method with the owners of this repository before making a change.\r\n\r\nHowever, any library additions are always welcome. I am especially looking for the addition of new Kotlin/Native \r\ntargets.\r\n\r\n## Testing\r\nPlease see [testing.md](TESTING.md) for full testing instructions. Your contributions should be able to pass every test."
  },
  {
    "path": "LICENSE",
    "content": "MIT License\r\n\r\nCopyright (c) 2017 Adam Ratzman\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n"
  },
  {
    "path": "README.md",
    "content": "# Kotlin Spotify Web API \nA [Kotlin](https://kotlinlang.org/) implementation of the [Spotify Web API](https://developer.spotify.com/web-api/),\nsupporting Kotlin/JS, Kotlin/Android, Kotlin/JVM, and Kotlin/Native\n(macOS, Windows, Linux).\n\nThis library has first-class support for Java and is a viable alternative for Java development. \nPlease see [the Java section](#java) for more details.\n\n**Use this library in Kotlin, Java, JavaScript, Swift, or native code!** Because this library targets both iOS and Android, it can also be used in KMM ([Kotlin Multiplatform Mobile](https://kotlinlang.org/lp/mobile/)) applications as a shared source.\n\n[![Maven CEntral](https://maven-badges.herokuapp.com/maven-central/com.adamratzman/spotify-api-kotlin-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.adamratzman/spotify-api-kotlin-core)\n[![](https://img.shields.io/badge/Documentation-latest-orange.svg)](https://adamint.github.io/spotify-web-api-kotlin-docs/)\n![](https://img.shields.io/badge/License-MIT-blue.svg)\n[![codebeat badge](https://codebeat.co/badges/0ab613b0-31d7-4848-aebc-4ed1e51f069c)](https://codebeat.co/projects/github-com-adamint-spotify-web-api-kotlin-master)\n\n## Table of Contents\n* [Oerview and how to install](#overview-and-how-to-install)\n    + [JVM, Android, JS, Native](#jvm-android-js-native-apple)\n    + [Android information](#android)\n      * [Android sample app](#android-sample-application)\n* [Documentation](#documentation)\n* [Need help, have a question, or want to contribute?](#have-a-question)\n* [Creating a new api instance](#creating-a-new-api-instance)\n    + [SpotifyAppApi](#spotifyappapi)\n    + [SpotifyClientApi](#spotifyclientapi)\n        * [PKCE](#pkce)\n        * [Non-PKCE](#non-pkce-backend-applications-requires-client-secret)\n    + [SpotifyImplicitGrantApi](#spotifyimplicitgrantapi)\n    + [SpotifyApiBuilder block & setting API options](#spotifyapibuilder-block--setting-api-options)\n        * [API options](#api-options)\n    + [Using the API](#using-the-api)\n* [Platform-specific wrappers and information](#platform-specific-wrappers-and-information)\n    + [Java](#java)\n    + [Android authentication](#android-authentication)\n    + [JavaScript: Spotify Web Playback SDK wrapper](#js-spotify-web-playback-sdk-wrapper)\n* [Tips](#tips)\n    + [Building the API](#building-the-api)\n* [Notes](#notes)\n    + [LinkedResults, PagingObjects, and Cursor-based Paging Objects](#the-benefits-of-linkedresults-pagingobjects-and-cursor-based-paging-objects)\n    + [Generic Requests](#generic-request)\n    + [Track Relinking](#track-relinking)\n* [Contributing](#contributing)\n\n## Overview and how to install\nCurrent version:\n\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.adamratzman/spotify-api-kotlin-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.adamratzman/spotify-api-kotlin-core)\n\n### JVM, Android, JS, Native, Apple\n```\nrepositories {\n    mavenCentral()\n}\n\nimplementation(\"com.adamratzman:spotify-api-kotlin-core:VERSION\")\n```\n\n\n### JS\nPlease see the [JS Spotify Web Playback SDK wrapper](#js-spotify-web-playback-sdk-wrapper) to learn how to use Spotify's web playback SDK in a browser application.\n\n### Android\n**Note**: For information on how to integrate implicit/PKCE authentication, Spotify app remote, and Spotify broadcast notifications into \nyour application, please see the [Android README](README_ANDROID.md).\n\n\n*If you declare any release types not named debug or release, you may see \"Could not resolve com.adamratzman:spotify-api-kotlin-android:VERSION\". You need to do the following for each release type not named debug or release:*\n```\nandroid {\n    buildTypes {\n        yourReleaseType1 {\n            // ...\n            matchingFallbacks = ['release', 'debug'] \n        }\n        yourReleaseType2 {\n            // ...\n            matchingFallbacks = ['release', 'debug'] \n        }\n\t...\n    }\n}\n```\n\n\nTo successfully build, you might need to exclude kotlin_module files from the packaging. To do this, inside the android/buildTypes/release closure, you would put:\n```\npackagingOptions {\n\texclude 'META-INF/*.kotlin_module'\n}\n```\n\n#### Android sample application\nYou can find a simple sample application demonstrating how to use spotify-web-api-kotlin in a modern Android app, as well as how to integrate with the Spotify app, [here](https://github.com/Nielssg/Spotify-Api-Test-App).\n\n## Documentation\nThe `spotify-web-api-kotlin` JavaDocs are hosted [here](https://adamint.github.io/spotify-web-api-kotlin-docs/).\n\n## Have a question?\nIf you have a question, you can:\n\n1. Create an [issue](https://github.com/adamint/spotify-web-api-kotlin/issues)\n2. Join our [Discord server](https://discord.gg/G6vqP3S)\n3. Contact me using **Adam#9261** on [Discord](https://discordapp.com)\n\n## Unsupported features on each platform:\n| Feature                     | JVM                | Android            | JS                 | Native (Mac/Windows/Linux) |\n|-----------------------------|--------------------|--------------------|--------------------|----------------------------|\n| Edit client playlist        | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Unsupported                |\n| Remove playlist tracks      | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | Unsupported                |\n\nPlease feel free to open an issue/discussion on GitHub or Discord if you need access to one of these features \nor have an interest in implementing one, as direction can be provided.\n\n## Creating a new api instance\nTo decide which api you need (SpotifyAppApi, SpotifyClientApi, SpotifyImplicitGrantApi), you can refer \nto the sections below or the [Spotify authorization guide](https://developer.spotify.com/documentation/general/guides/authorization-guide/). In general:\n- If you don't need client resources, use SpotifyAppApi\n- If you're using the api in a backend application, use SpotifyClientApi (with or without PKCE)\n- If you're using the api in Kotlin/JS browser, use SpotifyImplicitGrantApi\n- If you need access to client resources in an Android or other application, use SpotifyClientApi with PKCE\n\n**Note**: You can use the online [Spotify OAuth Token Generator](https://adamratzman.com/projects/spotify/generate-token) tool to generate a client token for local testing.\n\n### SpotifyAppApi\nThis provides access only to public Spotify endpoints.\nUse this when you have a server-side application. Note that implicit grant authorization \nprovides a higher api ratelimit, so consider using implicit grant if your application has \nsignificant usage.\n\nBy default, the SpotifyApi `Token` automatically regenerates when needed. \nThis can be changed by overriding the `automaticRefresh` builder setting.\n\nThere are four exposed builders, depending on the level of control you need over api creation. \nPlease see the [spotifyAppApi builder docs](https://adamint.github.io/spotify-web-api-kotlin-docs/spotify-web-api-kotlin/com.adamratzman.spotify/-spotify-app-api/index.html) for a full list of available builders.\n\nYou will need:\n- Spotify application client id\n- Spotify application client secret\n\nExample creation (default settings)\n\n```kotlin\nval api = spotifyAppApi(\"clientId\", \"clientSecret\").build() // create and build api\nprintln(api.browse.getNewReleases()) // use it\n```\n\nExample creation, using an existing Token and setting automatic token refresh to false\n```kotlin\nval token = spotifyAppApi(spotifyClientId, spotifyClientSecret).build().token\nval api = spotifyAppApi(\n  \"clientId\",\n  \"clientSecret\",\n  token\n) { \n  automaticRefresh = false \n}.build()\n\nprintln(api.browse.getNewReleases()) // use it\n```\n\n### SpotifyClientApi\nThe `SpotifyClientApi` is a superset of `SpotifyApi`; thus, nothing changes if you want to \naccess public data.\nThis library does not provide a method to retrieve the code from your  callback url; instead,\nyou must implement that with a web server. \nAutomatic Token refresh is available *only* when building with an authorization code or a \n`Token` object. Otherwise, it will expire `Token.expiresIn` seconds after creation.\n\nMake sure your application has requested the proper [Scopes](https://developer.spotify.com/web-api/using-spotifyScopes/) in order to \nensure proper function of this library. The api option `requiredScopes` allows you to verify \nthat a client has actually authorized with the scopes you are expecting.\n\nYou will need:\n- Spotify application client id\n- Spotify application client secret (if not using PKCE)\n- Spotify application redirect uri\n- To choose which client authorization method (PKCE or non-PKCE) to use\n\n#### PKCE\nUse the PKCE builders and helper methods if you are using the Spotify client authorization PKCE flow.\nBuilding via PKCE returns a `SpotifyClientApi` which has modified refresh logic.\n\nUse cases:\n1. You are using this library in an application (likely Android), or do not want to expose the client secret.\n\nTo learn more about the PKCE flow, please read the [Spotify authorization guide](https://developer.spotify.com/documentation/general/guides/authorization-guide/#implicit-grant-flow).\nSome highlights about the flow are:\n- It is refreshable, but each refresh token can only be used once. This library handles token refresh automatically by default\n- It does not require a client secret; instead, a set redirect uri and a random code verifier \nare used to verify the authenticity of the authorization.\n- A code verifier is required. The code verifier is \"*a cryptographically random string between 43 and 128 characters in length. \nIt can contain letters, digits, underscores, periods, hyphens, or tildes.*\"\n- A code challenge is required. \"*In order to generate the code challenge, your app should \nhash the code verifier using the SHA256 algorithm. Then, base64url encode the hash that you generated.*\"\n- When creating a pkce api instance, the code verifier is passed in by you and compared to \nthe code challenge used to authorize the user.\n\nThis library contains helpful methods that can be used to simplify the PKCE authorization process.\nThis includes `getSpotifyPkceCodeChallenge`, which SHA256 hashes and base64url encodes the code \nchallenge, and `getSpotifyPkceAuthorizationUrl`, which allows you to generate an easy authorization url for PKCE flow.\n\nPlease see the [spotifyClientPkceApi builder docs](https://adamint.github.io/spotify-web-api-kotlin-docs/spotify-web-api-kotlin/com.adamratzman.spotify/spotify-client-pkce-api.html) for a full list of available builders.\n \n**Takeaway**: Use PKCE authorization flow in applications where you cannot secure the client secret.\n\nTo get a PKCE authorization url, to which you can redirect a user, you can use the `getSpotifyPkceAuthorizationUrl`\ntop-level method. An example is shown below, requesting 4 different scopes.\n```kotlin\nval codeVerifier = \"thisisaveryrandomalphanumericcodeverifierandisgreaterthan43characters\"\nval codeChallenge = getSpotifyPkceCodeChallenge(codeVerifier) // helper method\nval url: String = getSpotifyPkceAuthorizationUrl(\n    SpotifyScope.PLAYLIST_READ_PRIVATE,\n    SpotifyScope.PLAYLIST_MODIFY_PRIVATE,\n    SpotifyScope.USER_FOLLOW_READ,\n    SpotifyScope.USER_LIBRARY_MODIFY,\n    clientId = \"clientId\",\n    redirectUri = \"your-redirect-uri\",\n    codeChallenge = codeChallenge\n)\n```\n\nThere is also an optional parameter `state`, which helps you verify the authorization.\n\n**Note**: If you want automatic token refresh, you need to pass in your application client id and redirect uri \nwhen using the `spotifyClientPkceApi`.\n\n##### Example: A user has authorized your application. You now have the authorization code obtained after the user was redirected back to your application. You want to create a new `SpotifyClientApi`.\n```kotlin\nval codeVerifier = \"thisisaveryrandomalphanumericcodeverifierandisgreaterthan43characters\"\nval code: String = ...\nval api = spotifyClientPkceApi(\n    \"clientId\", // optional. include for token refresh\n    \"your-redirect-uri\", // optional. include for token refresh\n    code,\n    codeVerifier // the same code verifier you used to generate the code challenge\n) {\n  retryWhenRateLimited = false\n}.build()\n\nprintln(api.library.getSavedTracks().take(10).filterNotNull().map { it.track.name })\n```\n\n#### Non-PKCE (backend applications, requires client secret)\nTo get a non-PKCE authorization url, to which you can redirect a user, you can use the `getSpotifyAuthorizationUrl`\ntop-level method. An example is shown below, requesting 4 different scopes.\n```kotlin\nval url: String = getSpotifyAuthorizationUrl(\n    SpotifyScope.PLAYLIST_READ_PRIVATE,\n    SpotifyScope.PLAYLIST_MODIFY_PRIVATE,\n    SpotifyScope.USER_FOLLOW_READ,\n    SpotifyScope.USER_LIBRARY_MODIFY,\n    clientId = \"clientId\",\n    redirectUri = \"your-redirect-uri\",\n    state = \"your-special-state\" // optional\n)\n```\nThere are also several optional parameters, allowing you to set whether the authorization url is meant \nfor implicit grant flow, the state, and whether a re-authorization dialog should be shown to users.\n\nThere are several exposed builders, depending on the level of control you need over api creation. \nPlease see the [spotifyClientApi builder docs](https://adamint.github.io/spotify-web-api-kotlin-docs/spotify-web-api-kotlin/com.adamratzman.spotify/spotify-client-api.html) for a full list of available builders.\n\n##### Example: You've redirected the user back to your web server and have an authorization code (code).\nIn this example, automatic token refresh is turned on by default.\n```kotlin\nval authCode = \"\"\nval api = spotifyClientApi(\n    \"clientId\",\n    \"clientSecret\",\n    \"your-redirect-uri\",\n    authCode\n).build() // create and build api\nprintln(api.personalization.getTopTracks(limit = 5).items.map { it.name }) // print user top tracks\n```\n\n##### Example: You've saved a user's token from previous authorization and need to create an api instance.\nIn this case, if you provide a client id to the builder, automatic token refresh will also be turned on.\n```kotlin\nval token: Token = ... // your existing token\nval api = spotifyClientApi(\n    \"clientId\",\n    \"clientSecret\",\n    \"your-redirect-uri\",\n    token\n) {\n  onTokenRefresh = {\n    println(\"Token refreshed at ${System.currentTimeMillis()}\")\n  }\n}.build()\nprintln(api.personalization.getTopTracks(limit = 5).items.map { it.name })\n```\n\n\n### SpotifyImplicitGrantApi\nUse the `SpotifyImplicitGrantApi` if you are using the Spotify implicit grant flow.\n`SpotifyImplicitGrantApi` is a superset of `SpotifyClientApi`.\nUnlike the other builders, the `spotifyImplicitGrantApi` builder method directly returns \na `SpotifyImplicitGrantApi` instead of an api builder.\n\nUse cases:\n1. You are using the **Kotlin/JS** target for this library.\n2. Your frontend Javascript passes the token received through the implicit grant flow to your \nbackend, where it is then used to create an api instance.\n\nTo learn more about the implicit grant flow, please read the [Spotify authorization guide](https://developer.spotify.com/documentation/general/guides/authorization-guide/#implicit-grant-flow).\nSome highlights about the flow are:\n- It is non-refreshable\n- It is client-side\n- It does not require a client secret\n\nPlease see the [spotifyImplicitGrantApi builder docs](https://adamint.github.io/spotify-web-api-kotlin-docs/spotify-web-api-kotlin/com.adamratzman.spotify/spotify-implicit-grant-api.html) for a full list of available builders.\n \nThe Kotlin/JS target contains the `parseSpotifyCallbackHashToToken` method, which will parse the hash \nfor the current url into a Token object, with which you can then instantiate the api.\n\n**Takeaway**: There are two ways to use implicit grant flow, browser-side only and browser and \nserver. This library provides easy access for both.\n\n##### Example\n```kotlin\nval token: Token = ...\nval api = spotifyImplicitGrantApi(\n    null,\n    null,\n    token\n) // create api. there is no need to build it \nprintln(api.personalization.getTopArtists(limit = 1)[0].name) // use it\n```\n\n### SpotifyApiBuilder Block & setting API options \nThere are three pluggable blocks in each api's corresponding builder\n\n1. `credentials` lets you set the client id, client secret, and redirect uri\n2. `authorization` lets you set the type of api authorization you are using. \nAcceptable types include: an authorization code, a `Token` object, a Token's access code string, and an optional refresh token string\n3. `options` lets you configure API options to your own specific needs\n\n#### API options\nThis library does not attempt to be prescriptivist. \nAll API options are located in `SpotifyApiOptions` and their default values can be overridden; however, use caution in doing so, as \nmost of the default values either allow for significant performance or feature enhancements to the API instance.\n\n- `useCache`: Set whether to cache requests. Default: true\n- `cacheLimit`: The maximum amount of cached requests allowed at one time. Null means no limit. Default: 200\n- `automaticRefresh`: Enable or disable automatic refresh of the Spotify access token when it expires. Default: true\n- `retryWhenRateLimited`: Set whether to block the current thread and wait until the API can retry the request. Default: true\n- `enableLogger`: Set whether to enable to the exception logger. Default: true\n- `testTokenValidity`: After API creation, test whether the token is valid by performing a lightweight request. Default: false\n- `defaultLimit`: The default amount of objects to retrieve in one request. Default: 50\n- `json`: The Json serializer/deserializer instance.\n- `allowBulkRequests`: Allow splitting too-large requests into smaller, allowable api requests. Default: true \n- `requestTimeoutMillis`: The maximum time, in milliseconds, before terminating an http request. Default: 100000ms\n- `refreshTokenProducer`: Provide if you want to use your own logic when refreshing a Spotify token.\n- `requiredScopes`: Scopes that your application requires to function (only applicable to `SpotifyClientApi` and `SpotifyImplicitGrantApi`).\nThis verifies that the token your user authorized with actually contains the scopes your \napplication needs to function.\n\nNotes:\n- Unless you have a good reason otherwise, `useCache` should be true\n- `cacheLimit` is per Endpoint, not per API. Don't be surprised if you end up with over 200 items in your cache with the default settings.\n- `automaticRefresh` is disabled when client secret is not provided, or if tokenString is provided in SpotifyClientApi\n- `allowBulkRequests` for example, lets you query 80 artists in one wrapper call by splitting it into 50 artists + 30 artists\n- `refreshTokenProducer` is useful when you want to re-authorize with the Spotify Auth SDK or elsewhere\n\n### Using the API\nAPIs available in all `SpotifyApi` instances, including `SpotifyClientApi` and `SpotifyImplicitGrantApi`:\n- `SearchApi` (searching items)\n- `AlbumApi` (get information about albums)\n- `BrowseApi` (browse new releases, featured playlists, categories, and recommendations)\n- `ArtistApi` (get information about artists)\n- `PlaylistApi` (get information about playlists)\n- `UserApi` (get public information about users on Spotify)\n- `TrackApi` (get information about tracks)\n- `FollowingApi` (check whether users follow playlists)\n\nAPIs available only in `SpotifyClientApi` and `SpotifyImplicitGrantApi` instances:\n- `ClientSearchApi` (all the methods in `SearchApi`, and searching shows and episodes)\n- `EpisodeApi` (get information about episodes)\n- `ShowApi` (get information about shows)\n- `ClientPlaylistApi` (all the methods in `PlaylistApi`, and get and manage user playlists)\n- `ClientProfileApi` (all the methods in `UserApi`, and get the user profile, depending on scopes)\n- `ClientFollowingApi` (all the methods in `FollowingApi`, and get and manage following of playlists, artists, and users)\n- `ClientPersonalizationApi` (get user top tracks and artists)\n- `ClientLibraryApi` (get and manage saved tracks and albums)\n- `ClientPlayerApi` (view and control Spotify playback)\n\n## Platform-specific wrappers and information\n\n### Java\nThis library has first-class support for Java! You have two choices when using this library: async-only with Kotlin\nsuspend functions (using SpotifyContinuation).\n\n\n#### Integrating with Kotlin suspend functions via Java `Continuation`s\nUnfortunately, coroutines don't play very nicely with Java code. Fortunately, however, we provide a wrapper around Kotlin's \n`Continuation` class that allows you to directly implement `onSuccess` and `onFailure` handlers on API methods.\n\nPlease see below for an example:\n\n```java\nimport com.adamratzman.spotify.SpotifyApiBuilderKt;\nimport com.adamratzman.spotify.SpotifyAppApi;\nimport com.adamratzman.spotify.javainterop.SpotifyContinuation;\nimport com.adamratzman.spotify.models.Album;\nimport org.jetbrains.annotations.NotNull;\n\nimport java.util.concurrent.ExecutionException;\n\npublic class SpotifyTestApp {\n    static SpotifyAppApi api;\n\n    public static void main(String[] args) throws ExecutionException, InterruptedException {\n        var id = \"spotify-client-id\";\n        var secret = \"spotify-client-secret\";\n        SpotifyApiBuilderKt.spotifyAppApi(id, secret).build(true, new SpotifyContinuation<>() {\n            @Override\n            public void onSuccess(SpotifyAppApi spotifyAppApi) {\n                api = spotifyAppApi;\n                runAlbumSearch();\n            }\n\n            @Override\n            public void onFailure(@NotNull Throwable throwable) {\n                throwable.printStackTrace();\n            }\n        });\n\n        Thread.sleep(1000000);\n    }\n\n    public static void runAlbumSearch() {\n        api.getAlbums().getAlbum(\"spotify:album:0b23AHutIA1BOW0u1dZ6wM\", null, new SpotifyContinuation<>() {\n            @Override\n            public void onSuccess(Album album) {\n                System.out.println(\"Album name is: \" + album.getName() + \". Exiting now..\");\n\n                System.exit(0);\n            }\n\n            @Override\n            public void onFailure(@NotNull Throwable throwable) {\n                throwable.printStackTrace();\n            }\n        });\n    }\n}\n```\n\n### Android authentication\nFor information on how to integrate implicit/PKCE authentication, Spotify app remote, and Spotify broadcast notifications into \nyour application, please see the [Android README](README_ANDROID.md).\n\n### JS Spotify Web Playback SDK wrapper\n`spotify-web-api-kotlin` provides a wrapper around Spotify's [Web Playback SDK](https://developer.spotify.com/documentation/web-playback-sdk/reference/) \nfor playing music via Spotify in the browser on your own site.\n\nTo do this, you need to create a `Player` instance and then use the associated methods to register listeners, play, \nand get current context.\n\nPlease see an example of how to do this [here](https://github.com/adamint/spotify-web-api-browser-example/blob/95df60810611ddb961a7a2cb0c874a76d4471aa7/src/main/kotlin/com/adamratzman/layouts/HomePageComponent.kt#L38). \nAn example project, [spotify-web-api-browser-example](https://github.com/adamint/spotify-web-api-browser-example), \ndemonstrates how to create a frontend JS Kotlin application with Spotify integration and \nthat will play music in the browser.\n\n**Notes**:\n1. You must include the Spotify player JS script by including `<script src=\"https://sdk.scdn.co/spotify-player.js\"></script>`\n2. You must define a `window.onSpotifyWebPlaybackSDKReady` function immediately afterwards - this should load your main application bundle.\n    Otherwise, you will get errors. An example is below:\n   \n```html\n<html>\n<head>\n    ...\n    <script src=\"https://code.jquery.com/jquery-3.5.1.min.js\" integrity=\"sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=\" crossorigin=\"anonymous\"></script>\n\n    <script>\n        jQuery.loadScript = function (url, callback) {\n            jQuery.ajax({\n                url: url,\n                dataType: 'script',\n                success: callback,\n                async: true\n            });\n        }\n    </script>\n\n    <script src=\"https://sdk.scdn.co/spotify-player.js\"></script>\n    <script>\n        window.onSpotifyWebPlaybackSDKReady = () => {\n            $.loadScript(\"main.bundle.js\")\n        }\n    </script>\n</head>\n<body>\n....\n</body>\n</html>\n```\n\n## Tips\n\n### Building the API\nThe easiest way to build the API is using .build() after a builder\n```kotlin\nrunBlocking {\n    val api = spotifyAppApi(clientId, clientSecret).build()\n}\n```\n\n## Notes\n### Re-authentication\nIf you are using an authorization flow or token that does not support automatic token refresh, `SpotifyException.ReAuthenticationNeededException` \nwill be thrown. You should put your requests, if creating an application, behind a try/catch block to re-authenticate users if this \nexception is thrown.\n\n### LinkedResults, PagingObjects, and Cursor-based Paging Objects\nSpotify provides these three object models in order to simplify our lives as developers. So let's see what we\ncan do with them!\n\n#### PagingObjects\nPagingObjects are a container for the requested objects (`items`), but also include \nimportant information useful in future calls. It contains the request's `limit` and `offset`, along with \n(sometimes) a link to the next and last page of items and the total number of items returned.\n\nIf a link to the next or previous page is provided, we can use the `getNext` and `getPrevious` methods to retrieve \nthe respective PagingObjects \n\n#### Cursor-Based Paging Objects\nA cursor-based paging object is a PagingObject with a cursor added on that can be used as a key to find the next \npage of items. The value in the cursor, `after`, describes after what object to begin the query.\n\nJust like with PagingObjects, you can get the next page of items with `getNext`. *However*, there is no \nprovided implementation of `after` in this library. You will need to do it yourself, if necessary.\n\n#### LinkedResults\nSome endpoints, like `PlaylistAPI.getPlaylistTracks`, return a LinkedResult, which is a simple wrapper around the \nlist of objects. With this, we have access to its Spotify API url (with `href`), and we provide simple methods to parse \nthat url.\n\n### Generic Request\nFor obvious reasons, in most cases, making asynchronous requests via `queue` or `queueAfter` is preferred. However, \nthe synchronous format is also shown.\n\n```kotlin\nval api = spotifyAppApi(\n        System.getenv(\"SPOTIFY_CLIENT_ID\"),\n        System.getenv(\"SPOTIFY_CLIENT_SECRET\")\n).build()\n\n// print out the names of the twenty most similar songs to the search\nprintln(api.search.searchTrack(\"Début de la Suite\").joinToString { it.name })\n\n// simple, right? what about if we want to print out the featured playlists message from the \"Overview\" tab?\nprintln(api.browse.getFeaturedPlaylists().message)\n\n// easy! let's try something a little harder\n// let's find out Bénabar's Spotify ID, find his top tracks, and print them out\nval benabarId = api.search.searchArtist(\"Bénabar\")[0].id\n// this works; a redundant way would be: api.artists.getArtist(\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\").id\nprintln(api.artists.getArtistTopTracks(benabarId).joinToString { it.name })\n```\n\n### Track Relinking\nSpotify keeps many instances of most tracks on their servers, available in different markets. As such, if we use endpoints \nthat return tracks, we do not know if these tracks are playable in our market. That's where track relinking comes in.\n\nTo relink in a specified market, we must supply a `market` parameter for endpoints where available. \nIn both Track and SimpleTrack objects in an endpoint response, there is a nullable field called `linked_from`. \nIf the track is unable to be played in the specified market and there is an alternative that *is* playable, this \nwill be populated with the href, uri, and, most importantly, the id of the track.\n\nYou can then use this track in `SpotifyClientApi` endpoints such as playing or saving the track, knowing that it will be playable \nin your market!\n\n## Contributing\nSee [CONTRIBUTING.md](CONTRIBUTING.md)\n"
  },
  {
    "path": "README_ANDROID.md",
    "content": "# spotify-web-api-kotlin Android target extended features\n\nPlease also read the Android section of the spotify-web-api-kotlin readme, as it contains details about how to support\nnon-debug/release release types.\n\nspotify-web-api-kotlin contains wrappers around Spotify's `android-auth` and `android-sdk` (Spotify remote) libraries\nthat make it easier to implement authentication and playback features, while only needing to learn how to use one\nlibrary.\n\n## Table of Contents\n\n* [Sample application](#sample-application)\n* [Authentication](#authentication)\n    + [Credential store](#spotify-credential-store)\n    + [Authentication prerequisites](#authentication-prerequisites)\n    + [PKCE auth (refreshable client authentication)](#pkce-auth)\n    + [spotify-auth integration (implicit auth)](#implicit-auth)\n    + [Using SpotifyApi in your application](#using-spotifyapi-in-your-application)\n* [spotify-remote integration (WIP)](#spotify-remote-integration)\n* [Broadcast Notifications](#broadcast-notifications)\n    + [JVM, Android, JS, Native](#jvm-android-js)\n    + [Android information](#android)\n\n## Sample application\n\nThere is a sample application demonstrating authentication, remote integration, and broadcast notifications. You may\nfind it useful to scaffold parts of your application, or just to learn more about the Android features in this library.\nSee https://github.com/Nielssg/Spotify-Api-Test-App\n\n## Authentication\n\nspotify-web-api-kotlin comes with two built-in authorization schemes. The library includes a full implementation of the\nPKCE authorization scheme, which allows you to refresh the token you obtain indefinitely*, as well as wrapping around\nthe `spotify-auth` to provide a simple way to perform implicit grant authorization (non-refreshable tokens).\n\n\\* PKCE tokens are refreshable unless they are revoked. If they are revoked, requests will fail with error 400, and you\nshould begin authorization flow again.\n\n### Spotify Credential Store\n\nBy default, credentials are stored in the `SpotifyDefaultCredentialStore`, which under-the-hood creates and updates\nan `EncryptedSharedPreferences` instance.\n\n#### Creating an instance of the credential store\n\n```kotlin\n val credentialStore by lazy {\n    SpotifyDefaultCredentialStore(\n        clientId = \"YOUR_SPOTIFY_CLIENT_ID\",\n        redirectUri = \"YOUR_SPOTIFY_REDIRECT_URI\",\n        applicationContext = YOUR_APPLICATION.context\n    )\n}\n```\n\nIt is recommended to maintain only one instance of the credential store.\n\n#### Setting credentials\n\nYou can set credentials in several different ways. The first two are recommended, for simplicity.\n\n1. You can pass an instance of `SpotifyApi` using `SpotifyDefaultCredentialStore.setSpotifyApi(api: GenericSpotifyApi)`.\n   This will directly set the `token` property.\n2. You can set the `token` property using `SpotifyDefaultCredentialStore.token = YOUR_TOKEN`. This will set all three\n   saved properties, mentioned below.\n3. You can set the `spotifyTokenExpiresAt`, `spotifyAccessToken`, and `spotifyRefreshToken` properties. Please note that\n   all of them are used to create a `Token`, so failing to update any single property may result in unintended\n   consequences.\n\nExample:\n\n```kotlin\nval credentialStore = (application as MyApplication).model.credentialStore\ncredentialStore.setSpotifyApi(spotifyApi)\n```\n\n#### Getting an instance of SpotifyApi from the credential store\n\nBased on the type of authorization you used to authenticate the user, you will either call `getSpotifyImplicitGrantApi`\nor `getSpotifyClientPkceApi`. Both methods allow you to optionally pass parameters to configure the returned\n`SpotifyApi`.\n\n#### Saving credentials somewhere other than the credential store (TBD)\n\nUnfortunately, you are only able to store credentials in the credential store at this time if you decide to use the\nauthentication features of this library. PRs are welcome to address this limitation.\n\n### Authentication prerequisites\n\n1. You\n   must [register your application](https://developer.spotify.com/documentation/general/guides/app-settings/#register-your-app)\n   on Spotify. You must specify at least one application redirect uri (such as myapp://myauthcallback) - you will need\n   this later.\n2. Though this is not required, for security reasons you should follow the **Register Your App** part of the Spotify\n   Android guide listed\n   [here](https://developer.spotify.com/documentation/android/quick-start/) to generate a fingerprint for your app.\n\n**Note**: Ensure that you are not using the same redirect uri for both PKCE/implicit authorization. If you need to use\nboth, please register two distinct redirect uris.\n\n### PKCE Auth\n\nPKCE authorization lets you obtain a refreshable Spotify token. This means that you do not need to keep prompting your\nusers to re-authenticate (or force them to wait a second for automatic login). Please read the \"PKCE\" section of\nthe [README](README.md) if you'd like to learn more.\n\n#### 1. Create a class implementing AbstractSpotifyPkceLoginActivity\n\nYou first need to create a class that extends AbstractSpotifyPkceLoginActivity that will be used for the actual user\nauthorization.\n\nExample:\n\n```kotlin\ninternal var pkceClassBackTo: Class<out Activity>? = null\n\nclass SpotifyPkceLoginActivityImpl : AbstractSpotifyPkceLoginActivity() {\n    override val clientId = BuildConfig.SPOTIFY_CLIENT_ID\n    override val redirectUri = BuildConfig.SPOTIFY_REDIRECT_URI_PKCE\n    override val scopes = SpotifyScope.values().toList()\n\n    override fun onSuccess(api: SpotifyClientApi) {\n        val model = (application as SpotifyPlaygroundApplication).model\n        model.credentialStore.setSpotifyApi(api)\n        val classBackTo = pkceClassBackTo ?: ActionHomeActivity::class.java\n        pkceClassBackTo = null\n        toast(\"Authentication via PKCE has completed. Launching ${classBackTo.simpleName}..\")\n        startActivity(Intent(this, classBackTo))\n    }\n\n    override fun onFailure(exception: Exception) {\n        exception.printStackTrace()\n        pkceClassBackTo = null\n        toast(\"Auth failed: ${exception.message}\")\n    }\n}\n```\n\n#### 2. Add the following activity to your Android Manifest\nNote: the protocol of your redirect uri corresponds to the Android scheme, and the path corresponds to the \nhost. Ex: for the redirect uri `myapp://authcallback`, the scheme is `myapp` and the host is `authcallback`.\n\n```xml\n\n<application>\n    ...\n    <activity android:name=\"YOUR_CLASS_IMPLEMENTING_AbstractSpotifyPkceLoginActivity\"\n              android:launchMode=\"singleTop\">\n        <intent-filter>\n            <action android:name=\"android.intent.action.VIEW\"/>\n\n            <category android:name=\"android.intent.category.DEFAULT\"/>\n            <category android:name=\"android.intent.category.BROWSABLE\"/>\n\n            <data android:scheme=\"YOUR_REDIRECT_SCHEME\" android:host=\"YOUR_REDIRECT_HOST\"/>\n        </intent-filter>\n    </activity>\n</application>\n```\n\n#### 3. Begin Spotify authorization flow with Activity.startSpotifyClientPkceLoginActivity\nNow, you just need to begin the authorization flow by calling `Activity.startSpotifyClientPkceLoginActivity` in any \nactivity in your application.\n\nExample:\n```kotlin\npkceClassBackTo = classBackTo // from the previous code sample, return to an activity after auth success\nstartSpotifyClientPkceLoginActivity(YOUR_CLASS_IMPLEMENTING_PKCE_LOGIN_ACTIVITY::class.java)\n```\n\n#### 4. ???\n\n#### 5. Profit (more accurately, your onSuccess or onFailure methods will be called)\n\n### Implicit auth\nImplicit grant authorization, provided by wrapping the `spotify-auth` library, returns a temporary, non-refreshable \naccess token. Implementing this authorization method is very similar to PKCE authorization, as both follow the \nsame general format.\n\n#### 1. Create a class implementing AbstractSpotifyAppLoginActivity or AbstractSpotifyAppCompatImplicitLoginActivity.\nYou first need to create a class that extends `AbstractSpotifyAppLoginActivity` or `AbstractSpotifyAppCompatImplicitLoginActivity` \nthat will be used for the actual user authorization. The only difference between these two classes is that \n`AbstractSpotifyAppLoginActivity` extends from `Activity`, while `AbstractSpotifyAppCompatImplicitLoginActivity` extends \nfrom `AppCompatActivity`.\n\nExample:\n\n```kotlin\nclass SpotifyImplicitLoginActivityImpl : AbstractSpotifyAppImplicitLoginActivity() {\n    override val state: Int = 1337\n    override val clientId: String = BuildConfig.SPOTIFY_CLIENT_ID\n    override val redirectUri: String = BuildConfig.SPOTIFY_REDIRECT_URI_AUTH\n    override val useDefaultRedirectHandler: Boolean = false\n    override fun getRequestingScopes(): List<SpotifyScope> = SpotifyScope.values().toList()\n\n    override fun onSuccess(spotifyApi: SpotifyImplicitGrantApi) {\n        val model = (application as SpotifyPlaygroundApplication).model\n        model.credentialStore.setSpotifyApi(spotifyApi)\n        toast(\"Authentication via spotify-auth has completed. Launching TrackViewActivity..\")\n        startActivity(Intent(this, ActionHomeActivity::class.java))\n    }\n\n    override fun onFailure(errorMessage: String) {\n        toast(\"Auth failed: $errorMessage\")\n    }\n}\n```\n\n#### 2. Add the following activity to your Android Manifest\nNote: the protocol of your redirect uri corresponds to the Android scheme, and the path corresponds to the\nhost. Ex: for the redirect uri `myapp://authcallback`, the scheme is `myapp` and the host is `authcallback`.\n\n```xml\n\n<application>\n    ...\n    <activity\n            android:name=\"YOUR_CLASS_IMPLEMENTING_AbstractSpotifyAppImplicitLoginActivity\"\n            android:theme=\"@android:style/Theme.Translucent.NoTitleBar\">\n        <intent-filter>\n            <action android:name=\"android.intent.action.VIEW\"/>\n            <category android:name=\"android.intent.category.DEFAULT\"/>\n            <category android:name=\"android.intent.category.BROWSABLE\"/>\n            <data android:scheme=\"YOUR_REDIRECT_SCHEME\" android:host=\"YOUR_REDIRECT_HOST\"/>\n        </intent-filter>\n    </activity>\n\n    <activity\n            android:name=\"com.spotify.sdk.android.auth.LoginActivity\"\n            android:theme=\"@android:style/Theme.Translucent.NoTitleBar\">\n\n        <intent-filter>\n            <data android:scheme=\"YOUR_REDIRECT_SCHEME\" android:host=\"YOUR_REDIRECT_HOST\"/>\n        </intent-filter>\n    </activity>\n</application>\n```\n\n#### 3. Begin Spotify authorization flow with Activity.startSpotifyImplicitLoginActivity\nNow, you just need to begin the authorization flow by calling `Activity.startSpotifyImplicitLoginActivity(spotifyLoginImplementationClass: Class<T>)` in any\nactivity in your application.\n\nExample:\n```kotlin\nSpotifyDefaultCredentialStore.activityBackOnImplicitAuth = classBackTo // use if you're using guardValidSpotifyImplicitApi, though this is not recommended\nstartSpotifyImplicitLoginActivity(SpotifyImplicitLoginActivityImpl::class.java)\n```\n\n#### 4. ???\n\n#### 5. Profit (more accurately, your onSuccess or onFailure methods will be called)\n\n\n### Using SpotifyApi in your application\nBased on the type of authorization you used to authenticate the user, you will either call `SpotifyDefaultCredentialStore.getSpotifyImplicitGrantApi`\nor `SpotifyDefaultCredentialStore.getSpotifyClientPkceApi`. Both methods allow you to optionally pass parameters to configure the returned\n`SpotifyApi`.\n\nYou will want to write a guard to handle what happens when `SpotifyException.ReAuthenticationNeededException` is thrown. \n\nA basic guard is `Activity.guardValidImplicitSpotifyApi`, which will launch the provided \nactivity after a user authenticates successfully, if the implicit token has expired.\n\nA more complex guard can be found in the [sample application](https://github.com/Nielssg/Spotify-Api-Test-App/blob/main/app/src/main/java/com/adamratzman/spotifyandroidexample/auth/VerifyLoggedInUtils.kt).\n\n## Spotify Remote integration\nSpotify remote integration is still a WIP.\n\n## Broadcast Notifications\nYou can easily add support for handling Spotify app broadcast notifications by implementing \nthe `AbstractSpotifyBroadcastReceiver` class and registering the receiver in a Fragment or \nActivity. \n\nSupported broadcast types: queue changes, playback state changes, and metadata changes.\n\nNote that \"Device Broadcast Status\" must be enabled in the Spotify app and the active Spotify device must be the Android \ndevice that your app is on to receive notifications.\n\nThis library provides a `registerSpotifyBroadcastReceiver` method that you can use to \neasily register your created broadcast receiver.\n\nAn example implementation of `AbstractSpotifyBroadcastReceiver` and use of `registerSpotifyBroadcastReceiver` \nare provided below. Please see the sample app for a complete implementation.\n\n```kotlin\nclass SpotifyBroadcastReceiver(val activity: ViewBroadcastsActivity) : AbstractSpotifyBroadcastReceiver() {\n    override fun onMetadataChanged(data: SpotifyMetadataChangedData) {\n        activity.broadcasts += data\n        println(\"broadcast: ${data}\")\n    }\n\n    override fun onPlaybackStateChanged(data: SpotifyPlaybackStateChangedData) {\n        activity.broadcasts += data\n        println(\"broadcast: $data\")\n    }\n\n    override fun onQueueChanged(data: SpotifyQueueChangedData) {\n        activity.broadcasts += data\n        println(\"broadcast: $data\")\n    }\n}\n\nclass ViewBroadcastsActivity : BaseActivity() {\n    lateinit var spotifyBroadcastReceiver: SpotifyBroadcastReceiver\n    val broadcasts: MutableList<SpotifyBroadcastEventData> = mutableStateListOf()\n\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n        spotifyBroadcastReceiver = SpotifyBroadcastReceiver(this)\n\n        ...\n\n        registerSpotifyBroadcastReceiver(spotifyBroadcastReceiver, *SpotifyBroadcastType.values())\n    }\n}\n\n```\n\n## Compatibility below Android API26\n\nOlder versions of Android do not include some of the required Java8 APIs. To target these older APIs, you must enable [Java8 API Desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring) in your app.\n"
  },
  {
    "path": "TESTING.md",
    "content": "# Testing\r\n\r\nWe use the multiplatform kotlin.test framework to run tests.\r\n\r\nYou must create a Spotify application [here](https://developer.spotify.com/dashboard/applications) to get credentials.\r\n\r\nTo run **only** public endpoint tests, you only need `SPOTIFY_CLIENT_ID` and `SPOTIFY_CLIENT_SECRET` as environment variables.\r\n\r\nTo additionally run **all** private (client) endpoint tests, you need a valid Spotify application, redirect uri, and token string. \r\nThe additional environment variables you will need to add are `SPOTIFY_REDIRECT_URI` and `SPOTIFY_TOKEN_STRING`.\r\n\r\nTo specifically run player tests, you must include the `SPOTIFY_ENABLE_PLAYER_TESTS`=true environment variable.\r\n\r\nSome tests may fail if you do not allow access to all required scopes. To mitigate this, you can individually grant\r\neach scope or use the following code snippet to print out the Spotify token string (given a generated authorization code). \r\nHowever, you can painlessly generate a valid token by using this site: https://adamratzman.com/projects/spotify/generate-token\r\n\r\nTo run tests, run `gradle jvmTest`, `gradle macosX64Test`, `gradle testDebugUnitTest`, or any other target.\r\n\r\nTo output all http requests to the console, set the `SPOTIFY_LOG_HTTP`=true environment variable.\r\n\r\nTo build the maven artifact locally, you will need to follow these steps:\r\n- Create `gradle.properties` if it doesn't exist already.\r\n- Follow [this guide](https://gist.github.com/phit/bd3c6d156a2fa5f3b1bc15fa94b3256c). Instead of `.gpg` extension, use `.kbx` for your secring.\r\n- Run `gradle publishToMavenLocal`\r\n\r\nYou can use this artifact to test locally by adding the `mavenLocal()` repository in any local gradle project.\r\n\r\nTo build docs, run `gradle dokka`. They will be located under the docs directory in the repostiory root, and \r\nare ignored. This is how we generate release docs."
  },
  {
    "path": "build.gradle.kts",
    "content": "@file:Suppress(\"UnstableApiUsage\")\n\nimport com.fasterxml.jackson.databind.json.JsonMapper\nimport org.jetbrains.dokka.gradle.DokkaTask\nimport org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi\nimport org.jetbrains.kotlin.gradle.plugin.KotlinJsCompilerType\nimport org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget\nimport org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpackOutput.Target\n\nplugins {\n    kotlin(\"multiplatform\")\n    `maven-publish`\n    signing\n    id(\"com.android.library\")\n    kotlin(\"plugin.serialization\")\n    id(\"com.diffplug.spotless\") version \"6.21.0\"\n    id(\"com.moowork.node\") version \"1.3.1\"\n    id(\"org.jetbrains.dokka\") version \"1.9.0\"\n}\n\nrepositories {\n    google()\n    mavenCentral()\n}\n\nbuildscript {\n    repositories {\n        google()\n        mavenCentral()\n    }\n    dependencies {\n        classpath(\"com.android.tools.build:gradle:\") // resolved in settings.gradle.kts\n        classpath(\"org.jetbrains.kotlin:kotlin-gradle-plugin:\") // resolved in settings.gradle.kts\n    }\n}\n\n// --- spotify-web-api-kotlin info ---\nval libraryVersion: String = System.getenv(\"SPOTIFY_API_PUBLISH_VERSION\") ?: \"0.0.0.SNAPSHOT\"\n\n// Publishing credentials (environment variable)\nval nexusUsername: String? = System.getenv(\"NEXUS_USERNAME\")\nval nexusPassword: String? = System.getenv(\"NEXUS_PASSWORD\")\n\ngroup = \"com.adamratzman\"\nversion = libraryVersion\n\n\nandroid {\n    namespace = \"com.adamratzman.spotify\"\n    compileSdk = 31\n    compileOptions {\n        sourceCompatibility = JavaVersion.VERSION_17\n        targetCompatibility = JavaVersion.VERSION_17\n    }\n    packaging {\n        resources.excludes.add(\"META-INF/*.md\") // needed to prevent android compilation errors\n    }\n    defaultConfig {\n        minSdk = 23\n        setCompileSdkVersion(31)\n        testInstrumentationRunner = \"android.support.test.runner.AndroidJUnitRunner\"\n    }\n\n    buildTypes {\n        getByName(\"release\") {\n            isMinifyEnabled = false\n        }\n    }\n    testOptions {\n        this.unitTests.isReturnDefaultValues = true\n    }\n    sourceSets[\"main\"].setRoot(\"src/androidMain\")\n    sourceSets[\"test\"].setRoot(\"src/androidUnitTest\")\n}\n\n// invoked in kotlin closure, needs to be registered before\nval dokkaJar: TaskProvider<Jar> by tasks.registering(Jar::class) {\n    group = JavaBasePlugin.DOCUMENTATION_GROUP\n    description = \"spotify-web-api-kotlin generated documentation\"\n    from(tasks.dokkaHtml)\n    archiveClassifier.set(\"javadoc\")\n}\n\nkotlin {\n    @OptIn(ExperimentalKotlinGradlePluginApi::class)\n    compilerOptions { \n        freeCompilerArgs.add(\"-Xexpect-actual-classes\")\n    }\n    explicitApiWarning()\n    jvmToolchain(17)\n\n    androidTarget {\n        compilations.all { kotlinOptions.jvmTarget = \"17\" }\n\n        mavenPublication { setupPom(artifactId) }\n\n        publishLibraryVariants(\"debug\", \"release\")\n\n        publishLibraryVariantsGroupedByFlavor = true\n    }\n\n    jvm {\n        compilations.all {\n            kotlinOptions.jvmTarget = \"1.8\"\n        }\n        testRuns[\"test\"].executionTask.configure {\n            useJUnit()\n        }\n\n        mavenPublication { setupPom(artifactId) }\n    }\n\n    js(KotlinJsCompilerType.IR) {\n        mavenPublication { setupPom(artifactId) }\n\n        browser {\n            webpackTask {\n                output.globalObject = \"this\"\n                output.libraryTarget = Target.UMD\n            }\n\n            testTask {\n                useKarma {\n                    useChromeHeadless()\n                    webpackConfig.cssSupport { isEnabled = true }\n                }\n            }\n        }\n\n        binaries.executable()\n    }\n\n    macosX64 {\n        mavenPublication { setupPom(artifactId) }\n    }\n\n    linuxX64 {\n        mavenPublication { setupPom(artifactId) }\n    }\n\n    mingwX64 {\n        mavenPublication { setupPom(artifactId) }\n    }\n\n    iosX64 {\n        binaries { framework { baseName = \"spotify\" } }\n        mavenPublication { setupPom(artifactId) }\n    }\n\n    iosArm64 {\n        binaries { framework { baseName = \"spotify\" } }\n        mavenPublication { setupPom(artifactId) }\n    }\n\n    iosSimulatorArm64 {\n        binaries { framework { baseName = \"spotify\" } }\n        mavenPublication { setupPom(artifactId) }\n    }\n\n    // !! unable to include currently due to korlibs not being available !!\n    /*\n    tvos {\n        binaries { framework { baseName = \"spotify\" } }\n\n        mavenPublication { setupPom(artifactId) }\n    }\n\n    watchos {\n        binaries { framework { baseName = \"spotify\" } }\n\n        mavenPublication { setupPom(artifactId) }\n    }*/\n\n    applyDefaultHierarchyTemplate()\n\n    sourceSets {\n        val kotlinxDatetimeVersion: String by project\n        val kotlinxSerializationVersion: String by project\n        val kotlinxCoroutinesVersion: String by project\n        val ktorVersion: String by project\n\n        val sparkVersion: String by project\n        val korlibsVersion: String by project\n\n        commonMain {\n            dependencies {\n                implementation(\"org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinxSerializationVersion\")\n                implementation(\"io.ktor:ktor-client-core:$ktorVersion\")\n                implementation(\"com.soywiz.korlibs.krypto:krypto:$korlibsVersion\")\n                implementation(\"com.soywiz.korlibs.korim:korim:$korlibsVersion\")\n                implementation(\"org.jetbrains.kotlinx:kotlinx-datetime:$kotlinxDatetimeVersion\")\n                implementation(\"org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinxCoroutinesVersion\")\n            }\n        }\n\n        commonTest {\n            dependencies {\n                implementation(\"org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinxCoroutinesVersion\")\n                implementation(kotlin(\"test-common\"))\n                implementation(kotlin(\"test-annotations-common\"))\n            }\n        }\n\n        val commonJvmLikeMain by creating {\n            dependsOn(commonMain.get())\n\n            dependencies {\n                implementation(\"net.sourceforge.streamsupport:android-retrofuture:1.7.3\")\n            }\n        }\n\n        val commonJvmLikeTest by creating {\n            dependencies {\n                implementation(kotlin(\"test-junit\"))\n                implementation(\"com.sparkjava:spark-core:$sparkVersion\")\n                runtimeOnly(kotlin(\"reflect\"))\n            }\n        }\n\n        val commonNonJvmTargetsTest by creating {\n            dependsOn(commonTest.get())\n        }\n\n        jvmMain {\n            dependsOn(commonJvmLikeMain)\n\n            repositories {\n                mavenCentral()\n            }\n\n            dependencies {\n                implementation(\"io.ktor:ktor-client-cio:$ktorVersion\")\n            }\n        }\n\n        jvmTest.get().dependsOn(commonJvmLikeTest)\n\n        jsMain {\n            dependencies {\n                implementation(\"io.ktor:ktor-client-js:$ktorVersion\")\n                implementation(kotlin(\"stdlib-js\"))\n            }\n        }\n\n        jsTest {\n            dependsOn(commonNonJvmTargetsTest)\n\n            dependencies {\n                implementation(kotlin(\"test-js\"))\n            }\n        }\n\n        androidMain {\n            dependsOn(commonJvmLikeMain)\n\n            repositories {\n                mavenCentral()\n            }\n\n            dependencies {\n                val androidSpotifyAuthVersion: String by project\n                val androidCryptoVersion: String by project\n                val androidxCompatVersion: String by project\n\n                api(\"com.spotify.android:auth:$androidSpotifyAuthVersion\")\n                implementation(\"io.ktor:ktor-client-okhttp:$ktorVersion\")\n                implementation(\"androidx.security:security-crypto:$androidCryptoVersion\")\n                implementation(\"androidx.appcompat:appcompat:$androidxCompatVersion\")\n            }\n        }\n\n        val androidUnitTest by getting {\n            dependsOn(commonJvmLikeTest)\n        }\n\n        // desktop targets\n        // as kotlin/native, they require special ktor versions\n        val desktopMain by creating {\n            dependsOn(commonMain.get())\n\n            dependencies {\n                implementation(\"io.ktor:ktor-client-curl:$ktorVersion\")\n            }\n        }\n\n        linuxMain.get().dependsOn(desktopMain)\n        mingwMain.get().dependsOn(desktopMain)\n        macosMain.get().dependsOn(desktopMain)\n\n        val desktopTest by creating { dependsOn(commonNonJvmTargetsTest) }\n        linuxTest.get().dependsOn(desktopTest)\n        mingwTest.get().dependsOn(desktopTest)\n        macosTest.get().dependsOn(desktopTest)\n\n        // darwin targets\n\n        val nativeDarwinMain by creating {\n            dependsOn(commonMain.get())\n\n            dependencies {\n                implementation(\"io.ktor:ktor-client-ios:$ktorVersion\")\n            }\n        }\n\n        val nativeDarwinTest by creating { dependsOn(commonNonJvmTargetsTest) }\n\n        iosMain.get().dependsOn(nativeDarwinMain)\n        iosTest.get().dependsOn(nativeDarwinTest)\n\n        all {\n            languageSettings.optIn(\"kotlin.RequiresOptIn\")\n            languageSettings.optIn(\"kotlinx.serialization.ExperimentalSerializationApi\")\n        }\n    }\n\n    publishing {\n        registerPublishing()\n    }\n}\n\ntasks {\n    dokkaHtml {\n        outputDirectory.set(projectDir.resolve(\"docs\"))\n\n        dokkaSourceSets {\n            configureEach {\n                skipDeprecated.set(true)\n\n                sourceLink {\n                    localDirectory.set(file(\"src\"))\n                    remoteUrl.set(uri(\"https://github.com/adamint/spotify-web-api-kotlin/tree/master/src\").toURL())\n                    remoteLineSuffix.set(\"#L\")\n                }\n            }\n        }\n    }\n\n    spotless {\n        kotlin {\n            target(\"**/*.kt\")\n            licenseHeader(\"/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2023; Original author: Adam Ratzman */\")\n            ktlint()\n        }\n    }\n\n\n    val publishAllPublicationsToNexusRepositoryWithTests by registering(Task::class) {\n        dependsOn.add(check)\n        dependsOn.add(\"publishAllPublicationsToNexusRepository\")\n        dependsOn.add(dokkaHtml)\n    }\n\n    withType<Test> {\n        testLogging {\n            showStandardStreams = true\n        }\n    }\n\n    val packForXcode by creating(Sync::class) {\n        group = \"build\"\n        val mode = System.getenv(\"CONFIGURATION\") ?: \"DEBUG\"\n        val sdkName = System.getenv(\"SDK_NAME\") ?: \"iphonesimulator\"\n        val targetName = \"ios\" + if (sdkName.startsWith(\"iphoneos\")) \"Arm64\" else \"X64\"\n        val framework = kotlin.targets.getByName<KotlinNativeTarget>(targetName).binaries.getFramework(mode)\n        inputs.property(\"mode\", mode)\n        dependsOn(framework.linkTask)\n        val targetDir = File(layout.buildDirectory.asFile.get(), \"xcode-frameworks\")\n        from({ framework.outputDirectory })\n        into(targetDir)\n    }\n    getByName(\"build\").dependsOn(packForXcode)\n}\n\nval signingTasks = tasks.withType<Sign>()\ntasks.withType<AbstractPublishToMaven>().configureEach {\n    dependsOn(signingTasks)\n}\n\n\nfun MavenPublication.setupPom(publicationName: String) {\n    artifactId = artifactId.replace(\"-web\", \"\")\n    artifact(dokkaJar.get()) // add javadocs to publication\n\n    pom {\n        name.set(publicationName)\n        description.set(\"A Kotlin wrapper for the Spotify Web API.\")\n        url.set(\"https://github.com/adamint/spotify-web-api-kotlin\")\n        inceptionYear.set(\"2018\")\n\n        scm {\n            url.set(\"https://github.com/adamint/spotify-web-api-kotlin\")\n            connection.set(\"scm:https://github.com/adamint/spotify-web-api-kotlin.git\")\n            developerConnection.set(\"scm:git://github.com/adamint/spotify-web-api-kotlin.git\")\n        }\n\n        licenses {\n            license {\n                name.set(\"MIT License\")\n                url.set(\"https://github.com/adamint/spotify-web-api-kotlin/blob/master/LICENSE\")\n                distribution.set(\"repo\")\n            }\n        }\n        developers {\n            developer {\n                id.set(\"adamratzman\")\n                name.set(\"Adam Ratzman\")\n                email.set(\"adam@adamratzman.com\")\n            }\n        }\n    }\n}\n\n\n// --- Publishing ---\n\nfun PublishingExtension.registerPublishing() {\n    publications {\n        val kotlinMultiplatform by getting(MavenPublication::class) {\n            artifactId = \"spotify-api-kotlin-core\"\n            setupPom(artifactId)\n        }\n    }\n\n    repositories {\n        maven {\n            name = \"nexus\"\n\n            // Publishing locations\n            val releasesRepoUrl = \"https://oss.sonatype.org/service/local/staging/deploy/maven2/\"\n            val snapshotsRepoUrl = \"https://oss.sonatype.org/content/repositories/snapshots/\"\n\n            url = uri(if (version.toString().endsWith(\"SNAPSHOT\")) snapshotsRepoUrl else releasesRepoUrl)\n\n            credentials {\n                username = nexusUsername\n                password = nexusPassword\n            }\n        }\n    }\n}\n\n// --- Signing ---\nval signingKey = project.findProperty(\"SIGNING_KEY\") as? String\nval signingPassword = project.findProperty(\"SIGNING_PASSWORD\") as? String\n\nsigning {\n    if (signingKey != null && signingPassword != null) {\n        useInMemoryPgpKeys(\n            project.findProperty(\"SIGNING_KEY\") as? String,\n            project.findProperty(\"SIGNING_PASSWORD\") as? String\n        )\n        sign(publishing.publications)\n    }\n}\n\n// Test tasks\ntasks.register(\"updateNonJvmTestFakes\") {\n    if (System.getenv(\"SPOTIFY_TOKEN_STRING\") == null\n        || System.getenv(\"SHOULD_RECACHE_RESPONSES\")?.toBoolean() != true\n    ) {\n        return@register\n    }\n\n    dependsOn(\"jvmTest\")\n    val responseCacheDir =\n        System.getenv(\"RESPONSE_CACHE_DIR\")?.let { File(it) }\n            ?: throw IllegalArgumentException(\"No response cache directory provided\")\n    val commonTestResourcesSource = projectDir.resolve(\"src/commonTest/resources\")\n    if (!commonTestResourcesSource.exists()) commonTestResourcesSource.mkdir()\n\n    val commonTestResourceFileToSet = commonTestResourcesSource.resolve(\"cached_responses.json\")\n\n    if (commonTestResourceFileToSet.exists()) commonTestResourceFileToSet.delete()\n    commonTestResourceFileToSet.createNewFile()\n\n    val testToOrderedResponseMap: Map<String, List<String>> = responseCacheDir.walk()\n        .filter { it.isFile && it.name.matches(\"http_request_\\\\d+.txt\".toRegex()) }\n        .groupBy { \"${it.parentFile.parentFile.name}.${it.parentFile.name}\" }\n        .map { (key, group) -> key to group.sorted().map { it.readText() } }\n        .toMap()\n\n    val jsonLiteral = JsonMapper().writeValueAsString(testToOrderedResponseMap)\n    commonTestResourceFileToSet.writeText(jsonLiteral)\n    println(commonTestResourceFileToSet.absolutePath)\n}"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "content": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-8.5-bin.zip\nnetworkTimeout=10000\nvalidateDistributionUrl=true\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\n"
  },
  {
    "path": "gradle.properties",
    "content": "systemProp.org.gradle.internal.publish.checksums.insecure=true\n\norg.gradle.daemon=true\norg.gradle.jvmargs=-Xmx8000m\norg.gradle.caching=true\n\n# android target settings\nandroid.useAndroidX=true\nandroid.enableJetifier=true\n\n# language dependencies\nkotlinVersion=1.9.22\n\n# library dependencies\nkotlinxDatetimeVersion=0.5.0\nkotlinxSerializationVersion=1.6.2\nktorVersion=2.3.8\nkorlibsVersion=3.4.0\nkotlinxCoroutinesVersion=1.7.3\n\nandroidBuildToolsVersion=8.2.2\nandroidSpotifyAuthVersion=2.1.1\nandroidCryptoVersion=1.1.0-alpha06\nandroidxCompatVersion=1.7.0-alpha03\n\nsparkVersion=2.9.4"
  },
  {
    "path": "gradlew",
    "content": "#!/bin/sh\n\n#\n# Copyright © 2015-2021 the original authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#      https://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\n##############################################################################\n#\n#   Gradle start up script for POSIX generated by Gradle.\n#\n#   Important for running:\n#\n#   (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is\n#       noncompliant, but you have some other compliant shell such as ksh or\n#       bash, then to run this script, type that shell name before the whole\n#       command line, like:\n#\n#           ksh Gradle\n#\n#       Busybox and similar reduced shells will NOT work, because this script\n#       requires all of these POSIX shell features:\n#         * functions;\n#         * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,\n#           «${var#prefix}», «${var%suffix}», and «$( cmd )»;\n#         * compound commands having a testable exit status, especially «case»;\n#         * various built-in commands including «command», «set», and «ulimit».\n#\n#   Important for patching:\n#\n#   (2) This script targets any POSIX shell, so it avoids extensions provided\n#       by Bash, Ksh, etc; in particular arrays are avoided.\n#\n#       The \"traditional\" practice of packing multiple parameters into a\n#       space-separated string is a well documented source of bugs and security\n#       problems, so this is (mostly) avoided, by progressively accumulating\n#       options in \"$@\", and eventually passing that to Java.\n#\n#       Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,\n#       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;\n#       see the in-line comments for details.\n#\n#       There are tweaks for specific operating systems such as AIX, CygWin,\n#       Darwin, MinGW, and NonStop.\n#\n#   (3) This script is generated from the Groovy template\n#       https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt\n#       within the Gradle project.\n#\n#       You can find Gradle at https://github.com/gradle/gradle/.\n#\n##############################################################################\n\n# Attempt to set APP_HOME\n\n# Resolve links: $0 may be a link\napp_path=$0\n\n# Need this for daisy-chained symlinks.\nwhile\n    APP_HOME=${app_path%\"${app_path##*/}\"}  # leaves a trailing /; empty if no leading path\n    [ -h \"$app_path\" ]\ndo\n    ls=$( ls -ld \"$app_path\" )\n    link=${ls#*' -> '}\n    case $link in             #(\n      /*)   app_path=$link ;; #(\n      *)    app_path=$APP_HOME$link ;;\n    esac\ndone\n\n# This is normally unused\n# shellcheck disable=SC2034\nAPP_BASE_NAME=${0##*/}\n# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)\nAPP_HOME=$( cd \"${APP_HOME:-./}\" > /dev/null && pwd -P ) || exit\n\n# Use the maximum available, or set MAX_FD != -1 to use that value.\nMAX_FD=maximum\n\nwarn () {\n    echo \"$*\"\n} >&2\n\ndie () {\n    echo\n    echo \"$*\"\n    echo\n    exit 1\n} >&2\n\n# OS specific support (must be 'true' or 'false').\ncygwin=false\nmsys=false\ndarwin=false\nnonstop=false\ncase \"$( uname )\" in                #(\n  CYGWIN* )         cygwin=true  ;; #(\n  Darwin* )         darwin=true  ;; #(\n  MSYS* | MINGW* )  msys=true    ;; #(\n  NONSTOP* )        nonstop=true ;;\nesac\n\nCLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar\n\n\n# Determine the Java command to use to start the JVM.\nif [ -n \"$JAVA_HOME\" ] ; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n        # IBM's JDK on AIX uses strange locations for the executables\n        JAVACMD=$JAVA_HOME/jre/sh/java\n    else\n        JAVACMD=$JAVA_HOME/bin/java\n    fi\n    if [ ! -x \"$JAVACMD\" ] ; then\n        die \"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nelse\n    JAVACMD=java\n    if ! command -v java >/dev/null 2>&1\n    then\n        die \"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nfi\n\n# Increase the maximum file descriptors if we can.\nif ! \"$cygwin\" && ! \"$darwin\" && ! \"$nonstop\" ; then\n    case $MAX_FD in #(\n      max*)\n        # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        MAX_FD=$( ulimit -H -n ) ||\n            warn \"Could not query maximum file descriptor limit\"\n    esac\n    case $MAX_FD in  #(\n      '' | soft) :;; #(\n      *)\n        # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        ulimit -n \"$MAX_FD\" ||\n            warn \"Could not set maximum file descriptor limit to $MAX_FD\"\n    esac\nfi\n\n# Collect all arguments for the java command, stacking in reverse order:\n#   * args from the command line\n#   * the main class name\n#   * -classpath\n#   * -D...appname settings\n#   * --module-path (only if needed)\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.\n\n# For Cygwin or MSYS, switch paths to Windows format before running java\nif \"$cygwin\" || \"$msys\" ; then\n    APP_HOME=$( cygpath --path --mixed \"$APP_HOME\" )\n    CLASSPATH=$( cygpath --path --mixed \"$CLASSPATH\" )\n\n    JAVACMD=$( cygpath --unix \"$JAVACMD\" )\n\n    # Now convert the arguments - kludge to limit ourselves to /bin/sh\n    for arg do\n        if\n            case $arg in                                #(\n              -*)   false ;;                            # don't mess with options #(\n              /?*)  t=${arg#/} t=/${t%%/*}              # looks like a POSIX filepath\n                    [ -e \"$t\" ] ;;                      #(\n              *)    false ;;\n            esac\n        then\n            arg=$( cygpath --path --ignore --mixed \"$arg\" )\n        fi\n        # Roll the args list around exactly as many times as the number of\n        # args, so each arg winds up back in the position where it started, but\n        # possibly modified.\n        #\n        # NB: a `for` loop captures its iteration list before it begins, so\n        # changing the positional parameters here affects neither the number of\n        # iterations, nor the values presented in `arg`.\n        shift                   # remove old arg\n        set -- \"$@\" \"$arg\"      # push replacement arg\n    done\nfi\n\n\n# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nDEFAULT_JVM_OPTS='\"-Xmx64m\" \"-Xms64m\"'\n\n# Collect all arguments for the java command:\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,\n#     and any embedded shellness will be escaped.\n#   * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be\n#     treated as '${Hostname}' itself on the command line.\n\nset -- \\\n        \"-Dorg.gradle.appname=$APP_BASE_NAME\" \\\n        -classpath \"$CLASSPATH\" \\\n        org.gradle.wrapper.GradleWrapperMain \\\n        \"$@\"\n\n# Stop when \"xargs\" is not available.\nif ! command -v xargs >/dev/null 2>&1\nthen\n    die \"xargs is not available\"\nfi\n\n# Use \"xargs\" to parse quoted args.\n#\n# With -n1 it outputs one arg per line, with the quotes and backslashes removed.\n#\n# In Bash we could simply go:\n#\n#   readarray ARGS < <( xargs -n1 <<<\"$var\" ) &&\n#   set -- \"${ARGS[@]}\" \"$@\"\n#\n# but POSIX shell has neither arrays nor command substitution, so instead we\n# post-process each arg (as a line of input to sed) to backslash-escape any\n# character that might be a shell metacharacter, then use eval to reverse\n# that process (while maintaining the separation between arguments), and wrap\n# the whole thing up as a single \"set\" statement.\n#\n# This will of course break if any of these variables contains a newline or\n# an unmatched quote.\n#\n\neval \"set -- $(\n        printf '%s\\n' \"$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\" |\n        xargs -n1 |\n        sed ' s~[^-[:alnum:]+,./:=@_]~\\\\&~g; ' |\n        tr '\\n' ' '\n    )\" '\"$@\"'\n\nexec \"$JAVACMD\" \"$@\"\n"
  },
  {
    "path": "gradlew.bat",
    "content": "@rem\r\n@rem Copyright 2015 the original author or authors.\r\n@rem\r\n@rem Licensed under the Apache License, Version 2.0 (the \"License\");\r\n@rem you may not use this file except in compliance with the License.\r\n@rem You may obtain a copy of the License at\r\n@rem\r\n@rem      https://www.apache.org/licenses/LICENSE-2.0\r\n@rem\r\n@rem Unless required by applicable law or agreed to in writing, software\r\n@rem distributed under the License is distributed on an \"AS IS\" BASIS,\r\n@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n@rem See the License for the specific language governing permissions and\r\n@rem limitations under the License.\r\n@rem\r\n\r\n@if \"%DEBUG%\"==\"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@rem  Gradle startup script for Windows\r\n@rem\r\n@rem ##########################################################################\r\n\r\n@rem Set local scope for the variables with windows NT shell\r\nif \"%OS%\"==\"Windows_NT\" setlocal\r\n\r\nset DIRNAME=%~dp0\r\nif \"%DIRNAME%\"==\"\" set DIRNAME=.\r\n@rem This is normally unused\r\nset APP_BASE_NAME=%~n0\r\nset APP_HOME=%DIRNAME%\r\n\r\n@rem Resolve any \".\" and \"..\" in APP_HOME to make it shorter.\r\nfor %%i in (\"%APP_HOME%\") do set APP_HOME=%%~fi\r\n\r\n@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\r\nset DEFAULT_JVM_OPTS=\"-Xmx64m\" \"-Xms64m\"\r\n\r\n@rem Find java.exe\r\nif defined JAVA_HOME goto findJavaFromJavaHome\r\n\r\nset JAVA_EXE=java.exe\r\n%JAVA_EXE% -version >NUL 2>&1\r\nif %ERRORLEVEL% equ 0 goto execute\r\n\r\necho.\r\necho ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\r\necho.\r\necho Please set the JAVA_HOME variable in your environment to match the\r\necho location of your Java installation.\r\n\r\ngoto fail\r\n\r\n:findJavaFromJavaHome\r\nset JAVA_HOME=%JAVA_HOME:\"=%\r\nset JAVA_EXE=%JAVA_HOME%/bin/java.exe\r\n\r\nif exist \"%JAVA_EXE%\" goto execute\r\n\r\necho.\r\necho ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%\r\necho.\r\necho Please set the JAVA_HOME variable in your environment to match the\r\necho location of your Java installation.\r\n\r\ngoto fail\r\n\r\n:execute\r\n@rem Setup the command line\r\n\r\nset CLASSPATH=%APP_HOME%\\gradle\\wrapper\\gradle-wrapper.jar\r\n\r\n\r\n@rem Execute Gradle\r\n\"%JAVA_EXE%\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \"-Dorg.gradle.appname=%APP_BASE_NAME%\" -classpath \"%CLASSPATH%\" org.gradle.wrapper.GradleWrapperMain %*\r\n\r\n:end\r\n@rem End local scope for the variables with windows NT shell\r\nif %ERRORLEVEL% equ 0 goto mainEnd\r\n\r\n:fail\r\nrem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of\r\nrem the _cmd.exe /c_ return code!\r\nset EXIT_CODE=%ERRORLEVEL%\r\nif %EXIT_CODE% equ 0 set EXIT_CODE=1\r\nif not \"\"==\"%GRADLE_EXIT_CONSOLE%\" exit %EXIT_CODE%\r\nexit /b %EXIT_CODE%\r\n\r\n:mainEnd\r\nif \"%OS%\"==\"Windows_NT\" endlocal\r\n\r\n:omega\r\n"
  },
  {
    "path": "publish_all.sh",
    "content": "gradle publishMacosX64PublicationToNexusRepository publishLinuxX64PublicationToNexusRepository publishKotlinMultiplatformPublicationToNexusRepository publishTvosX64PublicationToNexusRepository publishTvosArm64PublicationToNexusRepository publishIosX64PublicationToNexusRepository publishIosArm64PublicationToNexusRepository publishJsPublicationToNexusRepository publishJvmPublicationToNexusRepository publishAndroidPublicationToNexusRepository"
  },
  {
    "path": "settings.gradle.kts",
    "content": "pluginManagement {\n    val kotlinVersion: String by settings\n    val androidBuildToolsVersion: String by settings\n\n    plugins {\n        id(\"org.jetbrains.kotlin.multiplatform\").version(kotlinVersion)\n        id(\"org.jetbrains.kotlin.plugin.serialization\").version(kotlinVersion)\n        id(\"org.jetbrains.dokka\").version(kotlinVersion)\n    }\n\n    resolutionStrategy {\n        eachPlugin {\n            if (requested.id.id == \"kotlin-multiplatform\") {\n                useModule(\"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion\")\n            }\n            if (requested.id.id == \"org.jetbrains.kotlin.jvm\") {\n                useModule(\"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion\")\n            }\n            if (requested.id.id == \"kotlinx-serialization\") {\n                useModule(\"org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion\")\n            } else if (requested.id.id == \"com.android.library\") {\n                useModule(\"com.android.tools.build:gradle:$androidBuildToolsVersion\")\n            } else if (requested.id.id == \"kotlin-android-extensions\") {\n                useModule(\"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion\")\n            }\n        }\n    }\n\n    repositories {\n        mavenCentral()\n        gradlePluginPortal()\n        google()\n        maven { url = java.net.URI(\"https://plugins.gradle.org/m2/\") }\n    }\n}\n\nrootProject.name = \"spotify-api-kotlin\""
  },
  {
    "path": "src/androidMain/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n          package=\"com.adamratzman.spotify\">\n\n</manifest>"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/auth/SpotifyDefaultCredentialStore.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.auth\n\nimport android.annotation.SuppressLint\nimport android.app.Activity\nimport android.app.Application\nimport android.content.Context\nimport android.content.SharedPreferences\nimport android.os.Build\nimport androidx.annotation.RequiresApi\nimport androidx.security.crypto.EncryptedSharedPreferences\nimport androidx.security.crypto.MasterKey\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyApi\nimport com.adamratzman.spotify.SpotifyApiOptions\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.SpotifyImplicitGrantApi\nimport com.adamratzman.spotify.SpotifyUserAuthorization\nimport com.adamratzman.spotify.models.Token\nimport com.adamratzman.spotify.refreshSpotifyClientToken\nimport com.adamratzman.spotify.spotifyClientPkceApi\nimport com.adamratzman.spotify.spotifyImplicitGrantApi\nimport com.adamratzman.spotify.utils.logToConsole\n\n/**\n * Provided credential store for holding current Spotify token credentials, allowing you to easily store and retrieve\n * Spotify tokens. Recommended in most use-cases.\n *\n * @param clientId The client id associated with your application\n * @param applicationContext The application context - you can obtain this by storing your application context statically (such as with a companion object)\n *\n */\n@RequiresApi(Build.VERSION_CODES.M)\npublic class SpotifyDefaultCredentialStore(\n    private val clientId: String,\n    private val redirectUri: String,\n    applicationContext: Context\n) {\n    public companion object {\n        /**\n         * The key used with spotify scope string in [EncryptedSharedPreferences]\n         */\n        public const val SpotifyScopeStringKey: String = \"spotifyTokenScopes\"\n\n        /**\n         * The key used with spotify token expiry in [EncryptedSharedPreferences]\n         */\n        public const val SpotifyTokenExpiryKey: String = \"spotifyTokenExpiry\"\n\n        /**\n         * The key used with spotify access token in [EncryptedSharedPreferences]\n         */\n        public const val SpotifyAccessTokenKey: String = \"spotifyAccessToken\"\n\n        /**\n         * The key used with spotify refresh token in [EncryptedSharedPreferences]\n         */\n        public const val SpotifyRefreshTokenKey: String = \"spotifyRefreshToken\"\n\n        /**\n         * The PKCE code verifier key currently being used in [EncryptedSharedPreferences]\n         */\n        public const val SpotifyCurrentPkceCodeVerifierKey: String =\n            \"spotifyCurrentPkceCodeVerifier\"\n\n        /**\n         * The activity to return to if re-authentication is necessary on implicit authentication. Null except during authentication when using [guardValidImplicitSpotifyApi]\n         */\n        public var activityBackOnImplicitAuth: Class<out Activity>? = null\n    }\n\n    public var credentialTypeStored: CredentialType? = null\n\n    private val masterKeyForEncryption =\n        MasterKey.Builder(applicationContext).setKeyScheme(MasterKey.KeyScheme.AES256_GCM).build()\n\n    /**\n     * The [EncryptedSharedPreferences] that this API saves to/retrieves from.\n     */\n    public val encryptedPreferences: SharedPreferences = EncryptedSharedPreferences.create(\n        applicationContext,\n        \"spotify-api-encrypted-preferences\",\n        masterKeyForEncryption,\n        EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,\n        EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM\n    )\n\n\n    /**\n     * Get/set when the Spotify access token will expire, in milliseconds from UNIX epoch. This will be one hour from authentication.\n     */\n    public var spotifyTokenExpiresAt: Long?\n        get() {\n            val expiry = encryptedPreferences.getLong(SpotifyTokenExpiryKey, -1)\n            return if (expiry == -1L) null else expiry\n        }\n        set(value) {\n            if (value == null) {\n                encryptedPreferences.edit().remove(SpotifyTokenExpiryKey).apply()\n            } else {\n                encryptedPreferences.edit().putLong(SpotifyTokenExpiryKey, value).apply()\n            }\n        }\n\n    /**\n     * Get/set the Spotify access token (the access token string, not the wrapped [Token]).\n     */\n    public var spotifyAccessToken: String?\n        get() = encryptedPreferences.getString(SpotifyAccessTokenKey, null)\n        set(value) = encryptedPreferences.edit().putString(SpotifyAccessTokenKey, value).apply()\n\n    /**\n     * Get/set the Spotify refresh token.\n     */\n    public var spotifyRefreshToken: String?\n        get() = encryptedPreferences.getString(SpotifyRefreshTokenKey, null)\n        set(value) = encryptedPreferences.edit().putString(SpotifyRefreshTokenKey, value).apply()\n\n    /**\n     * Get/set the Spotify scope string.\n     */\n    public var spotifyScopeString: String?\n        get() = encryptedPreferences.getString(SpotifyScopeStringKey, null)\n        set(value) = encryptedPreferences.edit().putString(SpotifyScopeStringKey, value).apply()\n\n    /**\n     * Get/set the current Spotify PKCE code verifier.\n     */\n    public var currentSpotifyPkceCodeVerifier: String?\n        get() = encryptedPreferences.getString(SpotifyCurrentPkceCodeVerifierKey, null)\n        set(value) = encryptedPreferences.edit().putString(SpotifyCurrentPkceCodeVerifierKey, value)\n            .apply()\n\n    /**\n     * Get/set the Spotify [Token] obtained from [spotifyToken].\n     * If the token has expired according to [spotifyTokenExpiresAt], this will return null.\n     */\n    public var spotifyToken: Token?\n        get() {\n            val tokenExpiresAt = spotifyTokenExpiresAt ?: return null\n            val accessToken = spotifyAccessToken ?: return null\n            if (tokenExpiresAt < System.currentTimeMillis()) return null\n\n            val refreshToken = spotifyRefreshToken\n            return Token(\n                accessToken,\n                \"Bearer\",\n                (tokenExpiresAt - System.currentTimeMillis()).toInt() / 1000,\n                refreshToken,\n                scopeString = spotifyScopeString\n            )\n        }\n        set(token) {\n            if (token == null) {\n                spotifyAccessToken = null\n                spotifyTokenExpiresAt = null\n                spotifyRefreshToken = null\n\n                credentialTypeStored = null\n                spotifyScopeString = null\n            } else {\n                spotifyAccessToken = token.accessToken\n                spotifyTokenExpiresAt = token.expiresAt\n                spotifyRefreshToken = token.refreshToken\n                spotifyScopeString = token.scopeString\n\n                credentialTypeStored =\n                    if (token.refreshToken != null) CredentialType.Pkce else CredentialType.ImplicitGrant\n            }\n        }\n\n    /**\n     * Create a new [SpotifyImplicitGrantApi] instance using the [spotifyToken] stored using this credential store.\n     *\n     * @param block Applied configuration to the [SpotifyImplicitGrantApi]\n     */\n    public fun getSpotifyImplicitGrantApi(block: ((SpotifyApiOptions).() -> Unit)? = null): SpotifyImplicitGrantApi? {\n        val token = spotifyToken ?: return null\n        return spotifyImplicitGrantApi(clientId, token, block ?: {})\n    }\n\n    /**\n     * Create a new [SpotifyClientApi] instance using the [spotifyToken] stored using this credential store.\n     *\n     * @param block Applied configuration to the [SpotifyClientApi]\n     */\n    public suspend fun getSpotifyClientPkceApi(block: ((SpotifyApiOptions).() -> Unit)? = null): SpotifyClientApi? {\n        val token = spotifyToken\n            ?: if (spotifyRefreshToken != null) {\n                val newToken = refreshSpotifyClientToken(clientId, null, spotifyRefreshToken, true)\n                spotifyToken = newToken\n                newToken\n            } else {\n                return null\n            }\n\n        return spotifyClientPkceApi(\n            clientId,\n            redirectUri,\n            SpotifyUserAuthorization(token = token),\n            block ?: {}\n        ).build().apply {\n            val previousAfterTokenRefresh = spotifyApiOptions.afterTokenRefresh\n            spotifyApiOptions.afterTokenRefresh = {\n                spotifyToken = this.token\n                logToConsole(\"Refreshed Spotify PKCE token in credential store... $token\")\n                previousAfterTokenRefresh?.invoke(this)\n            }\n        }\n    }\n\n    /**\n     * Sets [spotifyToken] using [SpotifyApi.token]. This wraps around [spotifyToken]'s setter.\n     *\n     * @param api A valid [GenericSpotifyApi]\n     */\n    public fun setSpotifyApi(api: GenericSpotifyApi) {\n        spotifyToken = api.token\n    }\n\n    /**\n     * Returns whether the [Token] stored in this Credential Store is refreshable (whether there is a refresh token associated\n     * with it).\n     */\n    public fun canApiBeRefreshed(): Boolean {\n        return spotifyRefreshToken != null\n    }\n\n    /**\n     * Clear the [SharedPreferences] instance corresponding to the Spotify credentials.\n     */\n    @SuppressLint(\"ApplySharedPref\")\n    public fun clear(): Boolean = try {\n        encryptedPreferences.edit().clear().commit()\n    } catch (e: Exception) {\n        // This might crash, encrypted preferences is still alpha...\n        false\n    }\n}\n\npublic enum class CredentialType {\n    ImplicitGrant,\n    Pkce\n}\n\n@RequiresApi(Build.VERSION_CODES.M)\npublic fun Application.getDefaultCredentialStore(\n    clientId: String,\n    redirectUri: String\n): SpotifyDefaultCredentialStore {\n    return SpotifyDefaultCredentialStore(clientId, redirectUri, applicationContext)\n}\n"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/auth/implicit/AbstractSpotifyAppCompatImplicitLoginActivity.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.auth.implicit\n\nimport android.app.Activity\nimport android.content.Intent\nimport android.os.Bundle\nimport androidx.appcompat.app.AppCompatActivity\n\n/**\n * Wrapper around spotify-auth's [LoginActivity] that allows configuration of the authentication process, along with\n * callbacks on successful and failed authentication. Pair this with [SpotifyDefaultCredentialStore] to easily store credentials.\n * Inherits from [AppCompatActivity]. If instead you want to inherit from [Activity], please use [AbstractSpotifyAppImplicitLoginActivity].\n *\n */\npublic abstract class AbstractSpotifyAppCompatImplicitLoginActivity : SpotifyImplicitLoginActivity,\n    AppCompatActivity() {\n    @Suppress(\"LeakingThis\")\n    public override val activity: Activity = this\n    public override val useDefaultRedirectHandler: Boolean = true\n\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n\n        triggerLoginActivity()\n    }\n\n    @Suppress(\"OVERRIDE_DEPRECATION\")\n    override fun onActivityResult(requestCode: Int, resultCode: Int, intent: Intent?) {\n        super.onActivityResult(requestCode, resultCode, intent)\n        processActivityResult(requestCode, resultCode, intent)\n    }\n}\n"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/auth/implicit/AbstractSpotifyAppImplicitLoginActivity.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.auth.implicit\n\nimport android.app.Activity\nimport android.content.Intent\nimport android.os.Bundle\nimport androidx.appcompat.app.AppCompatActivity\nimport com.spotify.sdk.android.auth.LoginActivity\n\n/**\n * Wrapper around spotify-auth's [LoginActivity] that allows configuration of the authentication process, along with\n * callbacks on successful and failed authentication. Pair this with [SpotifyDefaultCredentialStore] to easily store credentials.\n * Inherits from [Activity]. If instead you want to inherit from [AppCompatActivity], please use [AbstractSpotifyAppCompatImplicitLoginActivity].\n *\n */\npublic abstract class AbstractSpotifyAppImplicitLoginActivity : SpotifyImplicitLoginActivity, Activity() {\n    @Suppress(\"LeakingThis\")\n    public override val activity: Activity = this\n    public override val useDefaultRedirectHandler: Boolean = true\n\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n\n        triggerLoginActivity()\n    }\n\n    override fun onActivityResult(requestCode: Int, resultCode: Int, intent: Intent?) {\n        super.onActivityResult(requestCode, resultCode, intent)\n        processActivityResult(requestCode, resultCode, intent)\n    }\n}\n"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/auth/implicit/ImplicitAuthUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.auth.implicit\n\nimport android.app.Activity\nimport android.content.Intent\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.auth.SpotifyDefaultCredentialStore.Companion.activityBackOnImplicitAuth\n\n// Starting implicit login activity\n\n/**\n * Start Spotify implicit login activity within an existing activity.\n */\npublic inline fun <reified T : SpotifyImplicitLoginActivity> Activity.startSpotifyImplicitLoginActivity() {\n    startSpotifyImplicitLoginActivity(T::class.java)\n}\n\n/**\n * Start Spotify implicit login activity within an existing activity.\n *\n * @param spotifyLoginImplementationClass Your implementation of [SpotifyImplicitLoginActivity], defining what to do on Spotify login\n */\npublic fun <T : SpotifyImplicitLoginActivity> Activity.startSpotifyImplicitLoginActivity(spotifyLoginImplementationClass: Class<T>) {\n    startActivity(Intent(this, spotifyLoginImplementationClass))\n}\n\n/**\n * Basic implicit authentication guard - verifies that the user is logged in to Spotify and uses [SpotifyDefaultImplicitAuthHelper] to\n * handle re-authentication and redirection back to the activity.\n *\n * Note: this should only be used for small applications.\n *\n * @param spotifyImplicitLoginImplementationClass Your implementation of [SpotifyImplicitLoginActivity], defining what to do on Spotify login\n * @param classBackTo The activity to return to if re-authentication is necessary\n * @block The code block to execute\n */\npublic fun <T> Activity.guardValidImplicitSpotifyApi(\n    spotifyImplicitLoginImplementationClass: Class<out SpotifyImplicitLoginActivity>,\n    classBackTo: Class<out Activity>? = null,\n    block: () -> T\n): T? {\n    return try {\n        block()\n    } catch (e: SpotifyException.ReAuthenticationNeededException) {\n        activityBackOnImplicitAuth = classBackTo\n        startSpotifyImplicitLoginActivity(spotifyImplicitLoginImplementationClass)\n        null\n    }\n}\n"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/auth/implicit/SpotifyImplicitLoginActivity.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.auth.implicit\n\nimport android.app.Activity\nimport android.content.Intent\nimport com.adamratzman.spotify.SpotifyImplicitGrantApi\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.auth.SpotifyDefaultCredentialStore\nimport com.adamratzman.spotify.auth.SpotifyDefaultCredentialStore.Companion.activityBackOnImplicitAuth\nimport com.adamratzman.spotify.models.Token\nimport com.adamratzman.spotify.spotifyImplicitGrantApi\nimport com.adamratzman.spotify.utils.logToConsole\nimport com.spotify.sdk.android.auth.AuthorizationClient\nimport com.spotify.sdk.android.auth.AuthorizationRequest\nimport com.spotify.sdk.android.auth.AuthorizationResponse\nimport com.spotify.sdk.android.auth.LoginActivity\n\n/**\n * Wrapper around spotify-auth's [LoginActivity] that allows configuration of the authentication process, along with\n * callbacks on successful and failed authentication. Pair this with [SpotifyDefaultCredentialStore] to easily store credentials.\n * To use, you must extend from either [AbstractSpotifyAppImplicitLoginActivity] or [AbstractSpotifyAppCompatImplicitLoginActivity]\n *\n * @property state The state to use to verify the login request.\n * @property clientId Your application's Spotify client id.\n * @property clientId Your application's Spotify client secret.\n * @property redirectUri Your application's Spotify redirect id - NOTE that this should be an android scheme (such as spotifyapp://authback)\n * and that this must be registered in your manifest.\n * @property useDefaultRedirectHandler Disable if you will not be using [useDefaultRedirectHandler] but will be setting [SpotifyDefaultImplicitAuthHelper.activityBackOnImplicitAuth].\n */\npublic interface SpotifyImplicitLoginActivity {\n    public val activity: Activity\n\n    public val state: Int\n    public val clientId: String\n    public val redirectUri: String\n    public val useDefaultRedirectHandler: Boolean\n\n    /**\n     * Return the scopes that you are going to request from the user here.\n     */\n    public fun getRequestingScopes(): List<SpotifyScope>\n\n    /**\n     * Override this to define what to do after authentication has been successfully completed. A valid, usable\n     * [spotifyApi] is provided to you. You may likely want to use [SpotifyDefaultCredentialStore] to store/retrieve this token.\n     *\n     * @param spotifyApi Valid, usable [SpotifyImplicitGrantApi] that you can use to make requests.\n     */\n    public fun onSuccess(spotifyApi: SpotifyImplicitGrantApi)\n\n    /**\n     * Override this to define what to do after authentication has failed. You may want to use [SpotifyDefaultCredentialStore] to remove any stored token.\n     */\n    public fun onFailure(errorMessage: String)\n\n    /**\n     * Override this to define what to do after [onSuccess] has run.\n     * The default behavior is to finish the activity, and redirect the user back to the activity set on [SpotifyDefaultCredentialStore.activityBackOnImplicitAuth]\n     * only if [guardValidImplicitSpotifyApi] has been used or if [SpotifyDefaultCredentialStore.activityBackOnImplicitAuth] has been set.\n     */\n    public fun redirectAfterOnSuccessAuthentication() {\n        if (useDefaultRedirectHandler && activityBackOnImplicitAuth != null) {\n            activity.startActivity(Intent(activity, activityBackOnImplicitAuth))\n            activityBackOnImplicitAuth = null\n        }\n        activity.finish()\n    }\n\n    /**\n     * Trigger the actual spotify-auth login activity to authenticate the user.\n     */\n    public fun triggerLoginActivity() {\n        val authorizationRequest = AuthorizationRequest.Builder(clientId, AuthorizationResponse.Type.TOKEN, redirectUri)\n            .setScopes(getRequestingScopes().map { it.uri }.toTypedArray())\n            .setState(state.toString())\n            .build()\n        logToConsole(\"Triggering spotify-auth login for url ${authorizationRequest.toUri().path}\")\n        AuthorizationClient.openLoginActivity(activity, state, authorizationRequest)\n    }\n\n    /**\n     * Processes the result of [LoginActivity], invokes callbacks, then finishes.\n     */\n    public fun processActivityResult(requestCode: Int, resultCode: Int, intent: Intent?) {\n        if (requestCode == state) {\n            val response = AuthorizationClient.getResponse(resultCode, intent)\n            logToConsole(\"Got implicit auth response of ${response.type}\")\n            when {\n                response.type == AuthorizationResponse.Type.TOKEN -> {\n                    val token = Token(\n                        response.accessToken,\n                        response.type.name,\n                        response.expiresIn\n                    )\n                    val api = spotifyImplicitGrantApi(\n                        clientId = clientId,\n                        token = token\n                    )\n                    logToConsole(\"Built implicit grant api. Executing success handler..\")\n                    onSuccess(api)\n                    redirectAfterOnSuccessAuthentication()\n                }\n                // AuthorizationResponse.Type.CODE -> TODO()\n                // AuthorizationResponse.Type.UNKNOWN -> TODO()\n                response.type == AuthorizationResponse.Type.ERROR -> {\n                    logToConsole(\"Got error in authorization... executing error handler\")\n                    onFailure(response.error ?: \"Generic authentication error\")\n                }\n                response.type == AuthorizationResponse.Type.EMPTY -> {\n                    logToConsole(\"Got empty authorization... executing error handler\")\n                    onFailure(response.error ?: \"Authentication empty\")\n                }\n            }\n            activity.finish()\n        }\n    }\n}\n"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/auth/pkce/AbstractSpotifyPkceLoginActivity.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.auth.pkce\n\nimport android.content.Intent\nimport android.net.Uri\nimport android.os.Build\nimport android.os.Bundle\nimport android.view.View\nimport android.widget.FrameLayout\nimport androidx.annotation.RequiresApi\nimport androidx.appcompat.app.AppCompatActivity\nimport com.adamratzman.spotify.R\nimport com.adamratzman.spotify.SpotifyApiOptions\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.SpotifyUserAuthorization\nimport com.adamratzman.spotify.auth.SpotifyDefaultCredentialStore\nimport com.adamratzman.spotify.auth.getDefaultCredentialStore\nimport com.adamratzman.spotify.getSpotifyPkceAuthorizationUrl\nimport com.adamratzman.spotify.getSpotifyPkceCodeChallenge\nimport com.adamratzman.spotify.spotifyClientPkceApi\nimport com.adamratzman.spotify.utils.logToConsole\nimport com.spotify.sdk.android.auth.AuthorizationResponse\nimport kotlinx.coroutines.runBlocking\nimport kotlin.random.Random\n\n/**\n * This class hooks into spotify-web-api-kotlin to provide PKCE authorization for Android application. Paired with [SpotifyDefaultCredentialStore] to easily store credentials.\n * To use, you must extend this class and follow the instructions in the spotify-web-api-kotlin README.\n *\n * @property state The state to use to verify the login request.\n * @property clientId Your application's Spotify client id.\n * @property clientId Your application's Spotify client secret.\n * @property redirectUri Your application's Spotify redirect id - NOTE that this should be an android scheme (such as spotifyapp://authback)\n * and that this must be registered in your manifest.\n * @property scopes the scopes that you are going to request from the user here.\n * @property pkceCodeVerifier The code verifier generated that the client will be authenticated with (using its code challenge).\n * Must be between 43-128 alphanumeric characters\n * @property options Provide if you would like to customize the returned [SpotifyClientApi].\n */\n@RequiresApi(Build.VERSION_CODES.M)\npublic abstract class AbstractSpotifyPkceLoginActivity : AppCompatActivity() {\n    public abstract val clientId: String\n    public abstract val redirectUri: String\n    public abstract val scopes: List<SpotifyScope>\n    public open val pkceCodeVerifier: String = (0..96).joinToString(\"\") {\n        (('a'..'z') + ('A'..'Z') + ('0'..'9')).random().toString()\n    }\n    public open val state: String = Random.nextLong().toString()\n    public open val options: ((SpotifyApiOptions).() -> Unit)? = null\n\n    /**\n     * Custom logic to invoke when loading begins ([isLoading] is true) or ends ([isLoading] is false).\n     * You can update the view here.\n     */\n    public open fun setLoadingContent(isLoading: Boolean): () -> Unit = {}\n\n    private lateinit var authorizationIntent: Intent\n    private lateinit var credentialStore: SpotifyDefaultCredentialStore\n\n    /**\n     * Get the code challenge for the [pkceCodeVerifier] that will be used to confirm token identity.\n     */\n    public fun getPkceCodeChallenge(): String = getSpotifyPkceCodeChallenge(pkceCodeVerifier)\n\n    /**\n     * Get the authorization url that the client will be redirected to during PKCE authorization.\n     */\n    public fun getAuthorizationUrl(): Uri = getSpotifyPkceAuthorizationUrl(\n        *scopes.toTypedArray(),\n        clientId = clientId,\n        redirectUri = redirectUri,\n        codeChallenge = getPkceCodeChallenge(),\n        state = state\n    ).let { Uri.parse(it) }\n\n    /**\n     * The callback that will be executed after successful PKCE authorization.\n     *\n     * @param api The built [SpotifyClientApi] corresponding to the retrieved token from PKCE auth.\n     */\n    public abstract fun onSuccess(api: SpotifyClientApi)\n\n    /**\n     * The callback that will be executed after unsuccessful PKCE authorization.\n     *\n     * @param exception The root cause of the auth failure.\n     */\n    public abstract fun onFailure(exception: Exception)\n\n    override fun onCreate(savedInstanceState: Bundle?) {\n        super.onCreate(savedInstanceState)\n        setContentView(R.layout.spotify_pkce_auth_layout)\n\n        credentialStore = application.getDefaultCredentialStore(clientId, redirectUri)\n\n        // This activity is recreated on every launch, therefore we need to make sure not to\n        // launch the activity when a Spotify intent result has been received\n        if (intent?.isSpotifyPkceAuthIntent(redirectUri) == false) {\n            authorizationIntent = Intent(Intent.ACTION_VIEW, getAuthorizationUrl())\n            credentialStore.currentSpotifyPkceCodeVerifier = pkceCodeVerifier\n            startActivity(authorizationIntent)\n            finish()\n        }\n    }\n\n    /**\n     * User has accepted Spotify permissions at the website and has been redirected to the app, though the app was not open\n     */\n    override fun onResume() {\n        super.onResume()\n        if (intent?.isSpotifyPkceAuthIntent(redirectUri) == true) {\n            runBlocking { handleSpotifyAuthenticationResponse(AuthorizationResponse.fromUri(intent?.data)) }\n        }\n    }\n\n    /**\n     * User accepted Spotify permissions at the website and has been redirected to the app\n     */\n    override fun onNewIntent(intent: Intent?) {\n        super.onNewIntent(intent)\n        if (intent?.data != null) setIntent(intent)\n    }\n\n    /**\n     * Handle the authentication response, only allowing a \"code\" as response type\n     */\n    private suspend fun handleSpotifyAuthenticationResponse(response: AuthorizationResponse) {\n        logToConsole(\"Got pkce auth response of ${response.type}\")\n        if (response.type != AuthorizationResponse.Type.CODE) {\n            if (response.type == AuthorizationResponse.Type.TOKEN ||\n                response.type == AuthorizationResponse.Type.ERROR ||\n                response.type == AuthorizationResponse.Type.EMPTY ||\n                response.type == AuthorizationResponse.Type.UNKNOWN\n            ) {\n                logToConsole(\"Got invalid response type... executing error handler\")\n                onFailure(\n                    IllegalStateException(\"Received response type ${response.type} which is not code.\")\n                )\n            }\n\n            finish()\n        } else {\n            val authorizationCode = response.code\n            if (authorizationCode.isNullOrBlank()) {\n                logToConsole(\"Auth code was null or blank... executing error handler\")\n                onFailure(\n                    IllegalStateException(\"Authorization code was null or blank.\")\n                )\n            } else {\n                try {\n                    logToConsole(\"Building client PKCE api...\")\n                    setLoadingContent(true)\n                    val api = spotifyClientPkceApi(\n                        clientId = clientId,\n                        redirectUri = redirectUri,\n                        authorization = SpotifyUserAuthorization(\n                            authorizationCode = authorizationCode,\n                            pkceCodeVerifier = credentialStore.currentSpotifyPkceCodeVerifier\n                        ),\n                        options ?: {}\n                    ).build()\n\n                    logToConsole(\"Successfully built client PKCE api\")\n                    if (api.token.accessToken.isNotBlank()) {\n                        credentialStore.spotifyToken = api.token\n                        setLoadingContent(false)\n                        logToConsole(\"Successful PKCE auth. Executing success handler..\")\n                        onSuccess(api)\n                    } else {\n                        setLoadingContent(false)\n                        logToConsole(\"Failed PKCE auth - API token was blank. Executing success handler..\")\n                        onFailure(\n                            IllegalArgumentException(\"API token was blank\")\n                        )\n                    }\n                } catch (exception: Exception) {\n                    setLoadingContent(false)\n                    logToConsole(\"Got error in authorization... executing error handler\")\n                    onFailure(exception)\n                }\n            }\n\n            setLoadingContent(false)\n            finish()\n        }\n    }\n}\n"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/auth/pkce/PkceAuthUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.auth.pkce\n\nimport android.app.Activity\nimport android.content.Intent\nimport android.os.Build\nimport androidx.annotation.RequiresApi\n\npublic fun Intent?.isSpotifyPkceAuthIntent(redirectUri: String): Boolean {\n    return this != null &&\n        (dataString?.startsWith(\"$redirectUri/?code=\") == true || dataString?.startsWith(\"$redirectUri/?error=\") == true)\n}\n\n/**\n * Start Spotify PKCE login activity within an existing activity.\n *\n * @param spotifyLoginImplementationClass Your implementation of [AbstractSpotifyPkceLoginActivity], defining what to do on Spotify PKCE login\n */\n@RequiresApi(Build.VERSION_CODES.M)\npublic fun Activity.startSpotifyClientPkceLoginActivity(spotifyLoginImplementationClass: Class<out AbstractSpotifyPkceLoginActivity>) {\n    val intent = Intent(this, spotifyLoginImplementationClass)\n    startActivity(intent)\n}\n"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/notifications/AbstractSpotifyBroadcastReceiver.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.notifications\n\nimport android.content.BroadcastReceiver\nimport android.content.Context\nimport android.content.Intent\nimport com.adamratzman.spotify.models.PlayableUri\nimport com.adamratzman.spotify.notifications.AbstractSpotifyBroadcastReceiver.Companion.BaseSpotifyNotificationId\nimport com.adamratzman.spotify.utils.logToConsole\n\n/**\n * If you are developing an Android application and want to know what is happening in the Spotify app,\n * you can subscribe to broadcast notifications from it. The Spotify app can posts sticky media broadcast notifications\n * that can be read by any app on the same Android device. The media notifications contain information about what is\n * currently being played in the Spotify App, as well as the playback position and the playback status of the app.\n *\n * Note that media notifications need to be enabled manually in the Spotify app\n *\n * You need to extend this class and register it, whether through the manifest or fragment/activity to receive notifications, as\n * well as overriding [onPlaybackStateChanged], [onQueueChanged], and/or [onMetadataChanged].\n *\n */\npublic abstract class AbstractSpotifyBroadcastReceiver : BroadcastReceiver() {\n    override fun onReceive(context: Context, intent: Intent) {\n        val timeSentInMs = intent.getLongExtra(\"timeSent\", 0L)\n\n        when (intent.action) {\n            SpotifyBroadcastType.PlaybackStateChanged.id -> onPlaybackStateChanged(\n                SpotifyPlaybackStateChangedData(\n                    intent.getBooleanExtra(\"playing\", false),\n                    intent.getIntExtra(\"playbackPosition\", 0),\n                    timeSentInMs\n                )\n            )\n            SpotifyBroadcastType.QueueChanged.id -> onQueueChanged(SpotifyQueueChangedData(timeSentInMs))\n            SpotifyBroadcastType.MetadataChanged.id -> onMetadataChanged(\n                SpotifyMetadataChangedData(\n                    PlayableUri(intent.getStringExtra(\"id\")!!),\n                    intent.getStringExtra(\"artist\")!!,\n                    intent.getStringExtra(\"album\")!!,\n                    intent.getStringExtra(\"track\")!!,\n                    intent.getIntExtra(\"length\", 0),\n                    timeSentInMs\n                )\n            )\n        }\n    }\n\n    /**\n     * A metadata change intent is sent when a new track starts playing.\n     *\n     * @param data The data associated with this broadcast.\n     */\n    public open fun onMetadataChanged(data: SpotifyMetadataChangedData) {\n        sendUnregisteredNotificationMessage(data.type.id)\n    }\n\n    /**\n     * A playback state change is sent whenever the user presses play/pause, or when seeking the track position.\n     *\n     * @param data The data associated with this broadcast.\n     */\n    public open fun onPlaybackStateChanged(data: SpotifyPlaybackStateChangedData) {\n        sendUnregisteredNotificationMessage(data.type.id)\n    }\n\n    /**\n     * A queue change is sent whenever the play queue is changed.\n     *\n     * @param data The data associated with this broadcast.\n     */\n    public open fun onQueueChanged(data: SpotifyQueueChangedData) {\n        sendUnregisteredNotificationMessage(data.type.id)\n    }\n\n    private fun sendUnregisteredNotificationMessage(action: String) {\n        logToConsole(\"Unregistered notification $action has no handler.\")\n    }\n\n    public companion object {\n        public const val BaseSpotifyNotificationId: String = \"com.spotify.music\"\n    }\n}\n\n/**\n * Broadcast receiver types. These must be turned on manually in the Spotify app settings.\n */\npublic enum class SpotifyBroadcastType(public val id: String) {\n    PlaybackStateChanged(\"$BaseSpotifyNotificationId.playbackstatechanged\"),\n    QueueChanged(\"$BaseSpotifyNotificationId.queuechanged\"),\n    MetadataChanged(\"$BaseSpotifyNotificationId.metadatachanged\")\n}\n\n/**\n * Data from a broadcast event\n *\n * @param type The type of the broadcast event\n */\npublic abstract class SpotifyBroadcastEventData(public val type: SpotifyBroadcastType)\n\n/**\n * A metadata change intent is sent when a new track starts playing. It uses the intent action com.spotify.music.metadatachanged.\n *\n * @param playableUri A Spotify URI for the track or playable.\n * @param artistName The track artist.\n * @param albumName The album name.\n * @param trackName The track name.\n * @param trackLengthInSec Length of the track, in seconds.\n * @param timeSentInMs When the notification was sent.\n */\npublic data class SpotifyMetadataChangedData(\n    val playableUri: PlayableUri,\n    val artistName: String,\n    val albumName: String,\n    val trackName: String,\n    val trackLengthInSec: Int,\n    val timeSentInMs: Long\n) : SpotifyBroadcastEventData(SpotifyBroadcastType.MetadataChanged)\n\n/**\n * A playback state change is sent whenever the user presses play/pause, or when seeking the track position. It uses the intent action com.spotify.music.playbackstatechanged.\n *\n * @param playing True if playing, false if paused.\n * @param positionInMs The current playback position in milliseconds.\n * @param timeSentInMs When the notification was sent.\n */\npublic data class SpotifyPlaybackStateChangedData(\n    val playing: Boolean,\n    val positionInMs: Int,\n    val timeSentInMs: Long\n) : SpotifyBroadcastEventData(SpotifyBroadcastType.PlaybackStateChanged)\n\n/**\n * A queue change is sent whenever the play queue is changed. It uses the intent action com.spotify.music.queuechanged.\n *\n * @param timeSentInMs When the notification was sent.\n */\npublic class SpotifyQueueChangedData(\n    public val timeSentInMs: Long\n) : SpotifyBroadcastEventData(SpotifyBroadcastType.QueueChanged)\n"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/notifications/SpotifyBroadcastReceiverUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.notifications\n\nimport android.app.Activity\nimport android.content.Context\nimport android.content.IntentFilter\nimport androidx.fragment.app.Fragment\n\n/**\n * Register a Spotify broadcast receiver (receiving notifications from the Spotify app) for the specified notification types.\n *\n * This should be used in a [Fragment] or [Activity].\n *\n * Note that \"Device Broadcast Status\" must be enabled in the Spotify app and the active Spotify device must be the Android\n * device that your app is on to receive notifications.\n *\n * @param receiver An instance of your implementation of [AbstractSpotifyBroadcastReceiver]\n * @param notificationTypes The notification types that you would like to subscribe to.\n */\npublic fun Context.registerSpotifyBroadcastReceiver(\n    receiver: AbstractSpotifyBroadcastReceiver,\n    vararg notificationTypes: SpotifyBroadcastType\n) {\n    val filter = IntentFilter()\n    notificationTypes.forEach { filter.addAction(it.id) }\n\n    registerReceiver(receiver, filter)\n}\n"
  },
  {
    "path": "src/androidMain/kotlin/com/adamratzman/spotify/utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport android.app.Activity\nimport android.content.Context\nimport android.util.Log\nimport android.widget.Toast\nimport kotlinx.coroutines.runBlocking\nimport java.net.URLEncoder\n\ninternal actual fun String.encodeUrl() = URLEncoder.encode(this, \"UTF-8\")!!\n\n/**\n * Actual platform that this program is run on.\n */\npublic actual val currentApiPlatform: Platform = Platform.Android\n\npublic actual typealias ConcurrentHashMap<K, V> = java.util.concurrent.ConcurrentHashMap<K, V>\n\npublic actual fun <K, V> ConcurrentHashMap<K, V>.asList(): List<Pair<K, V>> = toList()\n\n// safeLet retrieved from: https://stackoverflow.com/a/35522422/6422820\nprivate fun <T1 : Any, T2 : Any, T3 : Any, R : Any> safeLet(p1: T1?, p2: T2?, p3: T3?, block: (T1, T2, T3) -> R?): R? =\n    if (p1 != null && p2 != null && p3 != null) block(p1, p2, p3) else null\n\ninternal fun toast(context: Context?, message: String?, duration: Int = Toast.LENGTH_SHORT) {\n    safeLet(context, message, duration) { safeContext, safeMessage, safeDuration ->\n        (safeContext as? Activity)?.runOnUiThread {\n            Toast.makeText(safeContext, safeMessage, safeDuration).show()\n        }\n    }\n}\n\ninternal fun logToConsole(message: String) {\n    Log.i(\"spotify-web-api-kotlin\", message)\n}\n\npublic actual fun <T> runBlockingOnJvmAndNative(block: suspend () -> T): T {\n    return runBlocking { block() }\n}\n"
  },
  {
    "path": "src/androidMain/res/layout/spotify_pkce_auth_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<FrameLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n             android:id=\"@+id/progress_overlay\"\n             android:layout_width=\"match_parent\"\n             android:layout_height=\"match_parent\"\n             android:alpha=\"0.4\"\n             android:animateLayoutChanges=\"true\"\n             android:background=\"@android:color/black\"\n             android:clickable=\"true\"\n             android:focusable=\"true\"\n             android:visibility=\"gone\">\n</FrameLayout>\n"
  },
  {
    "path": "src/commonJvmLikeMain/kotlin/com/adamratzman/spotify/javainterop/SpotifyContinuation.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:JvmName(\"SpotifyContinuation\")\n\npackage com.adamratzman.spotify.javainterop\n\nimport kotlin.coroutines.Continuation\nimport kotlin.coroutines.CoroutineContext\nimport kotlin.coroutines.EmptyCoroutineContext\n\n/**\n * A [Continuation] wrapper to allow you to directly implement [onSuccess] and [onFailure], when exceptions are hidden\n * on JVM via traditional continuations. **Please use this class as a callback anytime you are using Java code with this library.**\n *\n */\npublic abstract class SpotifyContinuation<in T> : Continuation<T> {\n    /**\n     * Invoke a function with the callback [value]\n     *\n     * @param value The value retrieved from the Spotify API.\n     */\n    public abstract fun onSuccess(value: T)\n\n    /**\n     * Handle exceptions during this API call.\n     *\n     * @param exception The exception that was thrown during the call.\n     */\n    public abstract fun onFailure(exception: Throwable)\n\n    override fun resumeWith(result: Result<T>) {\n        result.fold(::onSuccess, ::onFailure)\n    }\n\n    override val context: CoroutineContext = EmptyCoroutineContext\n}\n"
  },
  {
    "path": "src/commonJvmLikeMain/kotlin/com/adamratzman/spotify/utils/DateTimeUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport kotlinx.datetime.Instant\n\n/**\n * The current time in milliseconds since UNIX epoch.\n */\npublic actual fun getCurrentTimeMs(): Long = System.currentTimeMillis()\n\n/**\n * Format date to ISO 8601 format\n */\ninternal actual fun formatDate(date: Long): String {\n    return Instant.fromEpochMilliseconds(date).toString()\n}\n"
  },
  {
    "path": "src/commonJvmLikeTest/kotlin/com/adamratzman/spotify/CommonImpl.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify\n\nimport com.adamratzman.spotify.http.HttpRequest\nimport com.adamratzman.spotify.http.HttpResponse\nimport kotlinx.serialization.encodeToString\nimport kotlinx.serialization.json.Json\nimport java.io.File\n\nval cacheLocation: String? = System.getenv(\"RESPONSE_CACHE_DIR\")\nval shouldRecacheRequests: Boolean = System.getenv(\"SHOULD_RECACHE_RESPONSES\")?.toBoolean() == true\n\nactual fun getTestClientId(): String? = System.getenv(\"SPOTIFY_CLIENT_ID\")\nactual fun getTestClientSecret(): String? = System.getenv(\"SPOTIFY_CLIENT_SECRET\")\nactual fun getTestRedirectUri(): String? = System.getenv(\"SPOTIFY_REDIRECT_URI\")\nactual fun getTestTokenString(): String? = System.getenv(\"SPOTIFY_TOKEN_STRING\")\nactual fun isHttpLoggingEnabled(): Boolean = System.getenv(\"SPOTIFY_LOG_HTTP\") == \"true\"\nactual fun arePlayerTestsEnabled(): Boolean = System.getenv(\"SPOTIFY_ENABLE_PLAYER_TESTS\")?.toBoolean() == true\nactual fun areLivePkceTestsEnabled(): Boolean = System.getenv(\"VERBOSE_TEST_ENABLED\")?.toBoolean() ?: false\n\nvar hasInstantiatedApi: Boolean = false\nvar backingApi: GenericSpotifyApi? = null\n\nactual suspend fun buildSpotifyApi(testClassQualifiedName: String, testName: String): GenericSpotifyApi? {\n    if (!hasInstantiatedApi) {\n        backingApi = buildSpotifyApiInternal()\n        hasInstantiatedApi = true\n    }\n\n    return backingApi;\n}\n\nprivate suspend fun buildSpotifyApiInternal(): GenericSpotifyApi? {\n    val clientId = getTestClientId()\n    val clientSecret = getTestClientSecret()\n    val tokenString = getTestTokenString()\n    val logHttp = isHttpLoggingEnabled()\n\n    val optionsCreator: (SpotifyApiOptions.() -> Unit) = {\n        this.enableDebugMode = logHttp\n        retryOnInternalServerErrorTimes = 0\n    }\n\n    return when {\n        tokenString?.isNotBlank() == true -> {\n            spotifyClientApi {\n                credentials {\n                    this.clientId = clientId\n                    this.clientSecret = clientSecret\n                    this.redirectUri = getTestRedirectUri()\n                }\n                authorization {\n                    this.tokenString = tokenString\n                }\n                options(optionsCreator)\n            }.build()\n        }\n\n        clientId?.isNotBlank() == true -> {\n            spotifyAppApi {\n                credentials {\n                    this.clientId = clientId\n                    this.clientSecret = clientSecret\n                }\n                options(optionsCreator)\n            }.build()\n        }\n\n        else -> null\n    }\n}\n\nobject JvmResponseCacher : ResponseCacher {\n    override val cachedResponsesDirectoryPath: String = cacheLocation ?: \"\"\n    private val json = Json { prettyPrint = true }\n    private val baseDirectory = File(cacheLocation)\n\n    init {\n        if (baseDirectory.exists()) baseDirectory.deleteRecursively()\n        baseDirectory.mkdirs()\n    }\n\n    override fun cacheResponse(\n        className: String,\n        testName: String,\n        responseNumber: Int,\n        request: HttpRequest,\n        response: HttpResponse\n    ) {\n        val testDirectory = File(baseDirectory.absolutePath + \"/$className/$testName\")\n        if (!testDirectory.exists()) testDirectory.mkdirs()\n\n        val responseFile = File(testDirectory.absolutePath + \"/http_request_$responseNumber.txt\")\n        if (responseFile.exists()) responseFile.delete()\n        responseFile.createNewFile()\n\n        val objToWrite = CachedResponse(\n            Request(\n                request.url,\n                request.method.toString(),\n                request.bodyString\n            ),\n            Response(\n                response.responseCode,\n                response.headers.associate { it.key to it.value },\n                response.body\n            )\n        )\n\n        responseFile.appendText(json.encodeToString(objToWrite))\n    }\n}\n\nactual fun getResponseCacher(): ResponseCacher? {\n    if (cacheLocation == null || !shouldRecacheRequests) return null\n    return JvmResponseCacher\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/SpotifyApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:Suppress(\"LeakingThis\")\n\npackage com.adamratzman.spotify\n\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.endpoints.client.*\nimport com.adamratzman.spotify.endpoints.pub.*\nimport com.adamratzman.spotify.http.*\nimport com.adamratzman.spotify.models.AuthenticationError\nimport com.adamratzman.spotify.models.Token\nimport com.adamratzman.spotify.models.TokenValidityResponse\nimport com.adamratzman.spotify.models.serialization.nonstrictJson\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.asList\nimport com.adamratzman.spotify.utils.base64ByteEncode\nimport kotlinx.serialization.json.Json\nimport kotlin.jvm.JvmOverloads\n\n/**\n * Represents an instance of the Spotify API client, with common\n * functionality and information between the [SpotifyClientApi] and [SpotifyAppApi]\n * implementations of the API\n *\n * @param clientId The application client id found on the application [dashboard](https://developer.spotify.com/dashboard/applications)\n * @param clientSecret The application client secret found on the application [dashboard](https://developer.spotify.com/dashboard/applications)\n * @param token The access token associated with this API instance\n * @param spotifyApiOptions Configurable Spotify API options.\n *\n * @property search Provides access to the Spotify [search endpoint](https://developer.spotify.com/documentation/web-api/reference/search/search/)\n * @property albums Provides access to Spotify [album endpoints](https://developer.spotify.com/documentation/web-api/reference/albums/)\n * @property browse Provides access to Spotify [browse endpoints](https://developer.spotify.com/documentation/web-api/reference/browse/)\n * @property artists Provides access to Spotify [artist endpoints](https://developer.spotify.com/documentation/web-api/reference/artists/)\n * @property tracks Provides access to Spotify [track endpoints](https://developer.spotify.com/documentation/web-api/reference/tracks/)\n * @property episodes Provides access to Spotify [episode endpoints](https://developer.spotify.com/documentation/web-api/reference/episodes/)\n * @property shows Provides access to Spotify [show endpoints](https://developer.spotify.com/documentation/web-api/reference/shows/)\n * @property markets Provides access to Spotify [market endpoints](https://developer.spotify.com/documentation/web-api/reference/#category-markets)\n */\npublic sealed class SpotifyApi<T : SpotifyApi<T, B>, B : ISpotifyApiBuilder<T, B>>(\n    public val clientId: String?,\n    public val clientSecret: String?,\n    public var token: Token,\n    public var spotifyApiOptions: SpotifyApiOptions\n) {\n    public var useCache: Boolean = spotifyApiOptions.useCache\n        set(value) {\n            if (!value) clearCache()\n\n            field = value\n        }\n    public val expireTime: Long get() = token.expiresAt\n    public var runExecutableFunctions: Boolean = true\n\n    public abstract val search: SearchApi\n    public abstract val albums: AlbumApi\n    public abstract val browse: BrowseApi\n    public abstract val artists: ArtistApi\n    public abstract val playlists: PlaylistApi\n    public abstract val users: UserApi\n    public abstract val tracks: TrackApi\n    public abstract val following: FollowingApi\n    public abstract val episodes: EpisodeApi\n    public abstract val shows: ShowApi\n    public abstract val markets: MarketsApi\n\n    /**\n     * Base url for Spotify web api calls\n     */\n    internal val spotifyApiBase = \"https://api.spotify.com/v1\"\n\n    internal val defaultEndpoint get() = tracks\n\n    init {\n        spotifyApiOptions.requiredScopes?.let { requiredScopes ->\n            val tokenScopes = token.scopes ?: listOf()\n            if (!tokenScopes.containsAll(requiredScopes)) {\n                val missingScopes = requiredScopes.filter { it !in tokenScopes }\n\n                throw IllegalStateException(\n                    \"Expected authorized scopes $requiredScopes, but was missing the following scopes: $missingScopes\"\n                )\n            }\n        }\n    }\n\n    /**\n     * Obtain a map of all currently-cached requests\n     */\n    public fun getCache(): Map<SpotifyRequest, CacheState> =\n        endpoints.map { it.cache.cachedRequests.asList() }.flatten().toMap()\n\n    /**\n     * Change the current [Token]'s access token\n     */\n    public fun updateTokenWith(tokenString: String) {\n        updateToken {\n            accessToken = tokenString\n        }\n    }\n\n    /**\n     * Modify the current [Token] via DSL\n     */\n    public fun updateToken(modifier: Token.() -> Unit) {\n        modifier(token)\n    }\n\n    /**\n     * A list of all endpoints included in this api type\n     */\n    public abstract val endpoints: List<SpotifyEndpoint>\n\n    /**\n     * If the cache is enabled, clear all stored queries in the cache\n     */\n    public fun clearCache(): Unit = clearCaches(*endpoints.toTypedArray())\n\n    /**\n     * Return a new [SpotifyApiBuilder] with the parameters provided to this api instance\n     */\n    public abstract fun getApiBuilder(): SpotifyApiBuilder\n\n    /**\n     * Return a new [B] with the parameters provided to this api instance\n     */\n    public abstract fun getApiBuilderDsl(): B\n\n    private fun clearCaches(vararg endpoints: SpotifyEndpoint) {\n        endpoints.forEach { it.cache.clear() }\n    }\n\n    /**\n     * Create a Spotify authorization URL from which client access can be obtained\n     *\n     * @param scopes The scopes that the application should have access to\n     * @param redirectUri The redirect uri specified on the Spotify developer dashboard; where to\n     * redirect the browser after authentication\n     * @param state This provides protection against attacks such as cross-site request forgery.\n     *\n     * @return Authorization URL that can be used in a browser\n     */\n    public fun getAuthorizationUrl(vararg scopes: SpotifyScope, redirectUri: String, state: String? = null): String {\n        require(clientId != null)\n        return getAuthUrlFull(\n            *scopes,\n            clientId = clientId,\n            redirectUri = redirectUri,\n            state = state\n        )\n    }\n\n    public fun getSpotifyPkceAuthorizationUrl(\n        vararg scopes: SpotifyScope,\n        redirectUri: String,\n        codeChallenge: String,\n        state: String? = null\n    ): String {\n        require(clientId != null)\n        return getPkceAuthUrlFull(\n            *scopes,\n            clientId = clientId,\n            redirectUri = redirectUri,\n            codeChallenge = codeChallenge,\n            state = state\n        )\n    }\n\n    /**\n     * Tests whether the current [token] is actually valid. By default, an endpoint is called *once* to verify\n     * validity.\n     *\n     * @param makeTestRequest Whether to also make an endpoint request to verify authentication.\n     *\n     * @return [TokenValidityResponse] containing whether this token is valid, and if not, an Exception explaining why\n     */\n    @JvmOverloads\n    public suspend fun isTokenValid(\n        makeTestRequest: Boolean = true\n    ): TokenValidityResponse {\n        if (token.shouldRefresh()) {\n            return TokenValidityResponse(\n                false,\n                SpotifyException.AuthenticationException(\"Token needs to be refreshed (is it expired?)\")\n            )\n        }\n        if (!makeTestRequest) return TokenValidityResponse(true, null)\n\n        return try {\n            browse.getAvailableGenreSeeds()\n            TokenValidityResponse(true, null)\n        } catch (e: Exception) {\n            TokenValidityResponse(false, e)\n        }\n    }\n\n    /**\n     * Tests whether the current [token] is actually valid. By default, an endpoint is called *once* to verify\n     * validity.\n     *\n     * @param makeTestRequest Whether to also make an endpoint request to verify authentication.\n     *\n     * @return [TokenValidityResponse] containing whether this token is valid, and if not, an Exception explaining why\n     */\n    @JvmOverloads\n    public fun isTokenValidRestAction(makeTestRequest: Boolean = true): SpotifyRestAction<TokenValidityResponse> =\n        SpotifyRestAction {\n            isTokenValid(makeTestRequest)\n        }\n\n    /**\n     * If the method used to create the [token] supports token refresh and\n     * the information in [token] is accurate, attempt to refresh the token\n     *\n     * @return The old access token if refresh was successful\n     * @throws BadRequestException if refresh fails\n     * @throws IllegalStateException if [SpotifyApiOptions.refreshTokenProducer] is null\n     */\n    public suspend fun refreshToken(): Token {\n        val oldToken = token\n        val refreshedToken = spotifyApiOptions.refreshTokenProducer?.invoke(this)\n            ?: throw SpotifyException.ReAuthenticationNeededException(IllegalStateException(\"The refreshTokenProducer is null.\"))\n\n        token = refreshedToken\n        // Spotify may not provide a new refresh token\n        if (token.refreshToken == null) token.refreshToken = oldToken.refreshToken\n        \n        spotifyApiOptions.onTokenRefresh?.invoke(this@SpotifyApi)\n        spotifyApiOptions.afterTokenRefresh?.invoke(this@SpotifyApi)\n        \n        return oldToken\n    }\n\n    /**\n     * If the method used to create the [token] supports token refresh and\n     * the information in [token] is accurate, attempt to refresh the token\n     *\n     * @return The old access token if refresh was successful\n     * @throws BadRequestException if refresh fails\n     * @throws IllegalStateException if [SpotifyApiOptions.refreshTokenProducer] is null\n     */\n    public fun refreshTokenRestAction(): SpotifyRestAction<Token> = SpotifyRestAction { refreshToken() }\n\n    public companion object {\n        internal suspend fun testTokenValidity(api: GenericSpotifyApi) {\n            if (!api.isTokenValid().isValid) {\n                try {\n                    api.refreshToken()\n                } catch (e: BadRequestException) {\n                    throw SpotifyException.AuthenticationException(\n                        \"Invalid token and refresh token supplied. Cannot refresh to a fresh token.\",\n                        e\n                    )\n                }\n            }\n        }\n\n        /*\n            Builder tools\n         */\n\n        /**\n         * Get the authorization url for the provided [clientId] and [redirectUri] application settings, when attempting to authorize with\n         * specified [scopes]\n         *\n         * @param scopes Spotify scopes the api instance should be able to access for the user\n         * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n         * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n         * @param state This provides protection against attacks such as cross-site request forgery.\n         */\n        public fun getAuthUrlFull(\n            vararg scopes: SpotifyScope,\n            clientId: String,\n            redirectUri: String,\n            isImplicitGrantFlow: Boolean = false,\n            shouldShowDialog: Boolean = false,\n            state: String? = null\n        ): String {\n            return \"https://accounts.spotify.com/authorize/?client_id=$clientId\" +\n                    \"&response_type=${if (isImplicitGrantFlow) \"token\" else \"code\"}\" +\n                    \"&redirect_uri=$redirectUri\" +\n                    (state?.let { \"&state=$it\" } ?: \"\") +\n                    if (scopes.isEmpty()) {\n                        \"\"\n                    } else {\n                        \"&scope=${scopes.joinToString(\"%20\") { it.uri }}\" +\n                                if (shouldShowDialog) \"&show_dialog=$shouldShowDialog\" else \"\"\n                    }\n        }\n\n        /**\n         * Get the PKCE authorization url for the provided [clientId] and [redirectUri] application settings, when attempting to authorize with\n         * specified [scopes]\n         *\n         * @param scopes Spotify scopes the api instance should be able to access for the user\n         * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n         * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n         * @param codeChallenge The code challenge corresponding to your codeVerifier. **It is highly recommend to use\n         * [getSpotifyPkceCodeChallenge] to get the code challenge from a code verifier (only available for JVM/Android).**\n         * @param state This provides protection against attacks such as cross-site request forgery.\n         */\n        public fun getPkceAuthUrlFull(\n            vararg scopes: SpotifyScope,\n            clientId: String,\n            redirectUri: String,\n            codeChallenge: String,\n            state: String? = null\n        ): String {\n            return \"https://accounts.spotify.com/authorize/?client_id=$clientId\" +\n                    \"&response_type=code\" +\n                    \"&redirect_uri=$redirectUri\" +\n                    \"&code_challenge_method=S256\" +\n                    \"&code_challenge=$codeChallenge\" +\n                    (state?.let { \"&state=$it\" } ?: \"\") +\n                    if (scopes.isEmpty()) \"\" else \"&scope=${scopes.joinToString(\"%20\") { it.uri }}\"\n        }\n\n        /**\n         *\n         * Get an application token (can only access public methods) that can be used to instantiate a new [SpotifyAppApi]\n         *\n         * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n         * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n         * @param api The Spotify Api instance, or null if one doesn't exist yet\n         * @param json The json instance that will deserialize the response.\n         */\n        public suspend fun getCredentialedToken(\n            clientId: String,\n            clientSecret: String,\n            api: GenericSpotifyApi?,\n            json: Json = api?.spotifyApiOptions?.json ?: Json.Default\n        ): Token {\n            val response = executeTokenRequest(\n                HttpRequest(\n                    \"https://accounts.spotify.com/api/token\",\n                    HttpRequestMethod.POST,\n                    mapOf(\"grant_type\" to \"client_credentials\"),\n                    null,\n                    \"application/x-www-form-urlencoded\",\n                    listOf(),\n                    api\n                ),\n                clientId,\n                clientSecret\n            )\n\n            if (response.responseCode / 200 == 1) return response.body.toObject(Token.serializer(), null, json)\n\n            throw BadRequestException(response.body.toObject(AuthenticationError.serializer(), null, json))\n        }\n\n        /**\n         *\n         * Get an application token (can only access public methods) that can be used to instantiate a new [SpotifyAppApi]\n         *\n         * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n         * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n         * @param api The Spotify Api instance, or null if one doesn't exist yet\n         * @param json The json instance that will deserialize the response.\n         */\n        public fun getCredentialedTokenRestAction(\n            clientId: String,\n            clientSecret: String,\n            api: GenericSpotifyApi?,\n            json: Json = api?.spotifyApiOptions?.json ?: Json.Default\n        ): SpotifyRestAction<Token> = SpotifyRestAction { getCredentialedToken(clientId, clientSecret, api, json) }\n    }\n}\n\n/**\n * An API instance created with application credentials, not through\n * client authentication\n */\npublic class SpotifyAppApi internal constructor(\n    clientId: String?,\n    clientSecret: String?,\n    token: Token,\n    enableDefaultTokenRefreshProducerIfNoneExists: Boolean = true,\n    spotifyApiOptions: SpotifyApiOptions\n) : SpotifyApi<SpotifyAppApi, SpotifyAppApiBuilder>(\n    clientId,\n    clientSecret,\n    token,\n    spotifyApiOptions.apply {\n        if (enableDefaultTokenRefreshProducerIfNoneExists && refreshTokenProducer == null) {\n            refreshTokenProducer = defaultAppApiTokenRefreshProducer\n        }\n    }\n) {\n    override val search: SearchApi = SearchApi(this)\n    override val albums: AlbumApi = AlbumApi(this)\n    override val browse: BrowseApi = BrowseApi(this)\n    override val artists: ArtistApi = ArtistApi(this)\n    override val tracks: TrackApi = TrackApi(this)\n    override val episodes: EpisodeApi = EpisodeApi(this)\n    override val shows: ShowApi = ShowApi(this)\n    override val markets: MarketsApi = MarketsApi(this)\n\n    /**\n     * Provides access to **public** Spotify [playlist endpoints](https://developer.spotify.com/documentation/web-api/reference/playlists/)\n     */\n    override val playlists: PlaylistApi = PlaylistApi(this)\n\n    /**\n     * Provides access to **public** Spotify [user information](https://developer.spotify.com/documentation/web-api/reference/users-profile/get-users-profile/)\n     */\n    override val users: UserApi = UserApi(this)\n\n    /**\n     * Provides access to **public** playlist [follower information](https://developer.spotify.com/documentation/web-api/reference/follow/check-user-following-playlist/)\n     */\n    override val following: FollowingApi = FollowingApi(this)\n\n    override val endpoints: List<SpotifyEndpoint>\n        get() = listOf(\n            search,\n            albums,\n            browse,\n            artists,\n            playlists,\n            users,\n            tracks,\n            following\n        )\n\n    override fun getApiBuilder(): SpotifyApiBuilder = SpotifyApiBuilder(\n        clientId,\n        clientSecret,\n        null\n    ).apply { useCache(useCache) }\n\n    override fun getApiBuilderDsl(): SpotifyAppApiBuilder = spotifyAppApi {\n        credentials {\n            clientId = this@SpotifyAppApi.clientId\n            clientSecret = this@SpotifyAppApi.clientSecret\n        }\n\n        useCache = this@SpotifyAppApi.useCache\n    }\n\n    public companion object {\n        private val defaultAppApiTokenRefreshProducer: suspend (SpotifyApi<*, *>) -> Token = { api ->\n            require(api.clientId != null && api.clientSecret != null) { \"Either the client id or the client secret is not set\" }\n\n            getCredentialedToken(api.clientId, api.clientSecret, api, api.spotifyApiOptions.json)\n        }\n    }\n}\n\n/**\n * An API instance created through client authentication, with access to private information\n * managed through the scopes exposed in [token]\n */\npublic open class SpotifyClientApi(\n    clientId: String?,\n    clientSecret: String?,\n    public var redirectUri: String?,\n    token: Token,\n    public val usesPkceAuth: Boolean,\n    enableDefaultTokenRefreshProducerIfNoneExists: Boolean,\n    spotifyApiOptions: SpotifyApiOptions\n) : SpotifyApi<SpotifyClientApi, SpotifyClientApiBuilder>(\n    clientId,\n    clientSecret,\n    token,\n    spotifyApiOptions.apply {\n        if (enableDefaultTokenRefreshProducerIfNoneExists && refreshTokenProducer == null) {\n            refreshTokenProducer = defaultClientApiTokenRefreshProducer\n        }\n    }\n) {\n    public constructor(\n        clientId: String?,\n        clientSecret: String?,\n        token: Token,\n        spotifyApiOptions: SpotifyApiOptions\n    ) : this(\n        clientId,\n        clientSecret,\n        null,\n        token,\n        false,\n        false,\n        spotifyApiOptions\n    )\n\n    override val albums: AlbumApi = AlbumApi(this)\n    override val browse: BrowseApi = BrowseApi(this)\n    override val artists: ArtistApi = ArtistApi(this)\n    override val tracks: TrackApi = TrackApi(this)\n    override val search: SearchApi = SearchApi(this)\n    override val markets: MarketsApi = MarketsApi(this)\n\n    override val episodes: ClientEpisodeApi = ClientEpisodeApi(this)\n    override val shows: ClientShowApi = ClientShowApi(this)\n\n    /**\n     * Provides access to [endpoints](https://developer.spotify.com/documentation/web-api/reference/playlists/) for retrieving\n     * information about a user’s playlists and for managing a user’s playlists.\n     * *Superset of [PlaylistApi]*\n     */\n    override val playlists: ClientPlaylistApi = ClientPlaylistApi(this)\n\n    /**\n     * Provides access to [endpoints](https://developer.spotify.com/documentation/web-api/reference/users-profile/) for\n     * retrieving information about a user’s profile.\n     * *Superset of [UserApi]*\n     */\n    override val users: ClientProfileApi = ClientProfileApi(this)\n\n    /**\n     * Provides access to [endpoints](https://developer.spotify.com/documentation/web-api/reference/follow/) for managing\n     * the artists, users, and playlists that a Spotify user follows.\n     * *Superset of [FollowingApi]*\n     */\n    override val following: ClientFollowingApi = ClientFollowingApi(this)\n\n    /**\n     * Provides access to [endpoints](https://developer.spotify.com/documentation/web-api/reference/personalization/) for\n     * retrieving information about the user’s listening habits.\n\n     */\n    public val personalization: ClientPersonalizationApi = ClientPersonalizationApi(this)\n\n    /**\n     * Provides access to [endpoints](https://developer.spotify.com/documentation/web-api/reference/library/) for\n     * retrieving information about, and managing, tracks that the current user has saved in their “Your Music” library.\n     */\n    public val library: ClientLibraryApi = ClientLibraryApi(this)\n\n    /**\n     * Provides access to the **beta** [player api](https://developer.spotify.com/documentation/web-api/reference/player/),\n     * including track playing and pausing endpoints.\n     *\n     * Please consult the [usage guide](https://developer.spotify.com/documentation/web-api/guides/using-connect-web-api/) before\n     * calling any endpoint in this api.\n     *\n     * **These endpoints may break at any time.**\n     */\n    public val player: ClientPlayerApi = ClientPlayerApi(this)\n\n    private var userIdBacking: String? = null\n\n    private suspend fun initiatizeUserIdBacking(): String {\n        userIdBacking = users.getClientProfile().id\n        return userIdBacking!!\n    }\n\n    /**\n     * The Spotify user id to which the api instance is connected\n     */\n    public suspend fun getUserId(): String =\n        if (userIdBacking != null) userIdBacking!! else initiatizeUserIdBacking()\n\n    /**\n     * The Spotify user id to which the api instance is connected\n     */\n    public fun getUserIdRestAction(): SpotifyRestAction<String> = SpotifyRestAction { getUserId() }\n\n    /**\n     * Stop all automatic functions like refreshToken or clearCache and shut down the scheduled\n     * executor\n     * */\n    public fun shutdown() {\n        runExecutableFunctions = false\n    }\n\n    override val endpoints: List<SpotifyEndpoint>\n        get() = listOf(\n            search,\n            albums,\n            browse,\n            artists,\n            playlists,\n            users,\n            tracks,\n            following,\n            personalization,\n            library,\n            player\n        )\n\n    override fun getApiBuilder(): SpotifyApiBuilder = SpotifyApiBuilder(\n        clientId,\n        clientSecret,\n        redirectUri\n    ).apply {\n        redirectUri(redirectUri)\n        useCache(useCache)\n    }\n\n    override fun getApiBuilderDsl(): SpotifyClientApiBuilder = spotifyClientApi {\n        credentials {\n            clientId = this@SpotifyClientApi.clientId\n            clientSecret = this@SpotifyClientApi.clientSecret\n            redirectUri = this@SpotifyClientApi.redirectUri\n        }\n\n        useCache = this@SpotifyClientApi.useCache\n    }\n\n    /**\n     * Create a Spotify authorization URL from which client access can be obtained\n     *\n     * @param scopes The scopes that the application should have access to\n     *\n     * @return Authorization URL that can be used in a browser\n     */\n    public fun getAuthorizationUrl(vararg scopes: SpotifyScope, state: String? = null): String {\n        require(clientId != null && clientSecret != null) { \"Either the client id or the client secret is not set\" }\n        return redirectUri?.let { getAuthUrlFull(*scopes, clientId = clientId, redirectUri = it, state = state) }\n            ?: throw IllegalArgumentException(\"The redirect uri must be set\")\n    }\n\n    /**\n     * Whether the current access token allows access to scope [scope]\n     */\n    public suspend fun hasScope(scope: SpotifyScope): Boolean? = hasScopes(scope)\n\n    /**\n     * Whether the current access token allows access to scope [scope]\n     */\n    public fun hasScopeRestAction(scope: SpotifyScope): SpotifyRestAction<Boolean?> =\n        SpotifyRestAction { hasScope(scope) }\n\n    /**\n     * Whether the current access token allows access to all of the provided scopes\n     */\n    public suspend fun hasScopes(scope: SpotifyScope, vararg scopes: SpotifyScope): Boolean? =\n        if (token.scopes == null) {\n            null\n        } else {\n            isTokenValid(false).isValid &&\n                    token.scopes?.contains(scope) == true &&\n                    scopes.all { token.scopes?.contains(it) == true }\n        }\n\n    /**\n     * Whether the current access token allows access to all of the provided scopes\n     */\n    public fun hasScopesRestAction(scope: SpotifyScope, vararg scopes: SpotifyScope): SpotifyRestAction<Boolean?> =\n        SpotifyRestAction {\n            hasScopes(scope, *scopes)\n        }\n\n    public companion object {\n        private val defaultClientApiTokenRefreshProducer: suspend (GenericSpotifyApi) -> Token = { api ->\n            api as SpotifyClientApi\n\n            require(api.clientId != null) { \"The client id is not set\" }\n\n            refreshSpotifyClientToken(api.clientId, api.clientSecret, api.token.refreshToken, api.usesPkceAuth)\n        }\n    }\n}\n\n/**\n * An API instance created through implicit grant flow, with access to private information\n * managed through the scopes exposed in [token]. [token] is not refreshable and is only accessible for limited time.\n */\npublic class SpotifyImplicitGrantApi(\n    clientId: String?,\n    token: Token,\n    spotifyApiOptions: SpotifyApiOptions\n) : SpotifyClientApi(\n    clientId,\n    null,\n    token,\n    spotifyApiOptions\n)\n\n/**\n * Represents a generic instance of the Spotify API client, with common functionality and information between\n * implementations of the API\n */\npublic typealias GenericSpotifyApi = SpotifyApi<*, *>\n\n/**\n *\n * Get an application token (can only access public methods) that can be used to instantiate a new [SpotifyAppApi]\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param api The Spotify Api instance, or null if one doesn't exist yet\n * @param json The json instance that will deserialize the response.\n */\n@Deprecated(\"Moved\", ReplaceWith(\"SpotifyApi.getCredentialedToken\"))\npublic suspend fun getCredentialedToken(\n    clientId: String,\n    clientSecret: String,\n    api: GenericSpotifyApi?,\n    json: Json = api?.spotifyApiOptions?.json ?: Json.Default\n): Token = SpotifyApi.getCredentialedToken(clientId, clientSecret, api, json)\n\ninternal suspend fun executeTokenRequest(\n    httpRequest: HttpRequest,\n    clientId: String,\n    clientSecret: String\n): HttpResponse {\n    return httpRequest.execute(\n        listOf(\n            HttpHeader(\n                \"Authorization\",\n                \"Basic ${\"$clientId:$clientSecret\".base64ByteEncode()}\"\n            )\n        )\n    )\n}\n\n/**\n * Refresh a Spotify client token\n *\n * @param clientId The Spotify application client id.\n * @param clientSecret The Spotify application client secret (not needed for PKCE).\n * @param refreshToken The refresh token.\n * @param usesPkceAuth Whether this token was created using PKCE auth or not.\n */\npublic suspend fun refreshSpotifyClientToken(\n    clientId: String,\n    clientSecret: String?,\n    refreshToken: String?,\n    usesPkceAuth: Boolean\n): Token {\n    fun getDefaultClientApiTokenBody(): Map<String, String?> {\n        val map = mutableMapOf(\n            \"grant_type\" to \"refresh_token\",\n            \"refresh_token\" to refreshToken\n        )\n\n        if (usesPkceAuth) map += \"client_id\" to clientId\n\n        return map\n    }\n\n    val response = if (!usesPkceAuth) {\n        require(clientSecret != null) { \"The client secret is not set\" }\n        executeTokenRequest(\n            HttpRequest(\n                \"https://accounts.spotify.com/api/token\",\n                HttpRequestMethod.POST,\n                getDefaultClientApiTokenBody(),\n                null,\n                \"application/x-www-form-urlencoded\",\n                listOf(),\n                null\n            ),\n            clientId,\n            clientSecret\n        )\n    } else {\n        HttpRequest(\n            \"https://accounts.spotify.com/api/token\",\n            HttpRequestMethod.POST,\n            getDefaultClientApiTokenBody(),\n            null,\n            \"application/x-www-form-urlencoded\",\n            listOf(),\n            null\n        ).execute()\n    }\n\n    return if (response.responseCode in 200..399) {\n        response.body.toObject(Token.serializer(), null, nonstrictJson)\n    } else {\n        throw BadRequestException(\n            response.body.toObject(\n                AuthenticationError.serializer(),\n                null,\n                nonstrictJson\n            )\n        )\n    }\n}\n\n/**\n * Refresh a Spotify client token\n *\n * @param clientId The Spotify application client id.\n * @param clientSecret The Spotify application client secret (not needed for PKCE).\n * @param refreshToken The refresh token.\n * @param usesPkceAuth Whether this token was created using PKCE auth or not.\n */\npublic fun refreshSpotifyClientTokenRestAction(\n    clientId: String,\n    clientSecret: String?,\n    refreshToken: String?,\n    usesPkceAuth: Boolean\n): SpotifyRestAction<Token> =\n    SpotifyRestAction { refreshSpotifyClientToken(clientId, clientSecret, refreshToken, usesPkceAuth) }\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/SpotifyApiBuilder.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify\n\nimport com.adamratzman.spotify.SpotifyApi.Companion.getCredentialedToken\nimport com.adamratzman.spotify.http.HttpRequest\nimport com.adamratzman.spotify.http.HttpRequestMethod\nimport com.adamratzman.spotify.http.HttpResponse\nimport com.adamratzman.spotify.models.Token\nimport com.adamratzman.spotify.models.serialization.nonstrictJson\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.urlEncodeBase64String\nimport com.soywiz.krypto.SHA256\nimport io.ktor.client.plugins.ServerResponseException\nimport io.ktor.utils.io.core.toByteArray\nimport kotlinx.coroutines.CancellationException\nimport kotlinx.serialization.json.Json\n\n// Kotlin DSL builders and top-level utilities\n\n// ==============================================\n\n// Get Spotify client authorization url\n/**\n * Get the authorization url for the provided [clientId] and [redirectUri] application settings, when attempting to authorize with\n * specified [scopes]\n *\n * @param scopes Spotify scopes the api instance should be able to access for the user\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param isImplicitGrantFlow Whether the authorization url should be for the Implicit Grant flow, otherwise for Authorization Code flo\n * @param shouldShowDialog If [isImplicitGrantFlow] is true, whether or not to force the user to approve the app again if they’ve already done so.\n * @param state This provides protection against attacks such as cross-site request forgery.\n */\npublic fun getSpotifyAuthorizationUrl(\n    vararg scopes: SpotifyScope,\n    clientId: String,\n    redirectUri: String,\n    isImplicitGrantFlow: Boolean = false,\n    shouldShowDialog: Boolean = false,\n    state: String? = null\n): String {\n    return SpotifyApi.getAuthUrlFull(\n        *scopes,\n        clientId = clientId,\n        redirectUri = redirectUri,\n        isImplicitGrantFlow = isImplicitGrantFlow,\n        shouldShowDialog = shouldShowDialog,\n        state = state\n    )\n}\n\n/**\n * Get the PKCE authorization url for the provided [clientId] and [redirectUri] application settings, when attempting to authorize with\n * specified [scopes]\n *\n * @param scopes Spotify scopes the api instance should be able to access for the user\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param state This provides protection against attacks such as cross-site request forgery.\n * @param codeChallenge In order to generate the code challenge, your app should hash the code verifier using the SHA256 algorithm.\n * Then, base64url encode the hash that you generated.\n *\n */\npublic fun getSpotifyPkceAuthorizationUrl(\n    vararg scopes: SpotifyScope,\n    clientId: String,\n    redirectUri: String,\n    codeChallenge: String,\n    state: String? = null\n): String {\n    return SpotifyApi.getPkceAuthUrlFull(\n        *scopes,\n        clientId = clientId,\n        redirectUri = redirectUri,\n        codeChallenge = codeChallenge,\n        state = state\n    )\n}\n\n/**\n * A utility to get the pkce code challenge for a corresponding code verifier. Only available on JVM/Android\n */\npublic fun getSpotifyPkceCodeChallenge(codeVerifier: String): String {\n    if (codeVerifier.length !in 43..128) throw IllegalArgumentException(\"Code verifier must be between 43 and 128 characters long\")\n    val sha256 = SHA256.digest(codeVerifier.toByteArray()).base64\n    return sha256.urlEncodeBase64String()\n}\n\n// ==============================================\n\n// Implicit grant builder\n/*\n ____________________________\n/ This is Implicit Grant     \\\n\\ authorization              /\n ----------------------------\n        \\   ^__^\n         \\  (oo)\\_______\n            (__)\\       )\\/\\\n                ||----w |\n                ||     ||\n */\n\n/**\n * Instantiate a new [SpotifyImplicitGrantApi] using a Spotify [clientId], and [token] retrieved from the implicit\n * grant flow.\n *\n * Use case: I have a token obtained after implicit grant authorization.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param token Token created from the hash response in the implicit grant callback\n *\n * @return [SpotifyImplicitGrantApi] that can immediately begin making calls\n */\npublic fun spotifyImplicitGrantApi(\n    clientId: String?,\n    token: Token\n): SpotifyImplicitGrantApi = SpotifyImplicitGrantApi(\n    clientId,\n    token,\n    SpotifyApiOptions()\n)\n\n/**\n * Instantiate a new [SpotifyImplicitGrantApi] using a Spotify [clientId], and [token] retrieved from the implicit\n * grant flow.\n *\n * Use case: I have a token obtained after implicit grant authorization.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param token Token created from the hash response in the implicit grant callback\n * @param block Block to set API options\n *\n * @return [SpotifyImplicitGrantApi] that can immediately begin making calls\n */\npublic fun spotifyImplicitGrantApi(\n    clientId: String?,\n    token: Token,\n    block: SpotifyApiOptions.() -> Unit\n): SpotifyImplicitGrantApi = SpotifyImplicitGrantApi(\n    clientId,\n    token,\n    SpotifyApiOptions().apply(block)\n)\n\n// App Api builders\n\n/*\n ____________________________\n/ This is Client Credentials \\\n\\ authorization              /\n ----------------------------\n        \\   ^__^\n         \\  (oo)\\_______\n            (__)\\       )\\/\\\n                ||----w |\n                ||     ||\n */\n\n/**\n * Instantiate a new [SpotifyAppApiBuilder] using a Spotify [clientId] and [clientSecret].\n *\n * Use case: I am using the client credentials flow.\n * I only need access to public Spotify API endpoints, might have an existing token,\n * and might want to deal with advanced configuration.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n *\n * @return Configurable [SpotifyAppApiBuilder] that, when built, creates a new [SpotifyAppApi]\n */\npublic fun spotifyAppApi(\n    clientId: String,\n    clientSecret: String\n): SpotifyAppApiBuilder = SpotifyAppApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.clientSecret = clientSecret\n    }\n}\n\n/**\n * Instantiate a new [SpotifyAppApiBuilder] using a Spotify [clientId] and [clientSecret], with the ability to configure\n * the api settings by providing a builder initialization [block]\n *\n * Use case: I am using the client credentials flow.\n * I only need access to public Spotify API endpoints, might have an existing token,\n * and might want to deal with advanced configuration.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param block Api settings block\n *\n * @return Configurable [SpotifyAppApiBuilder] that, when built, creates a new [SpotifyAppApi]\n */\npublic fun spotifyAppApi(\n    clientId: String,\n    clientSecret: String,\n    block: SpotifyAppApiBuilder.() -> Unit = {}\n): SpotifyAppApiBuilder = SpotifyAppApiBuilder().apply(block).apply {\n    credentials {\n        this.clientId = clientId\n        this.clientSecret = clientSecret\n    }\n}\n\n/**\n * Instantiate a new [SpotifyAppApiBuilder] using a [Token]\n *\n * Use case: I am using the client credentials flow.\n * I only need access to public Spotify API endpoints, I have an existing token,\n * and I don't want to deal with advanced configuration.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param authorization A [SpotifyUserAuthorization] that must contain one of the following: authorization code (preferred),\n * access token string (tokenString), [Token] object, **and** that may contain a refresh token (preferred)\n * with which to refresh the access token\n * @param block Override default API options such as the cache limit\n *\n * @return Configurable [SpotifyAppApiBuilder] that, when built, creates a new [SpotifyAppApi]\n */\npublic fun spotifyAppApi(\n    clientId: String?,\n    clientSecret: String?,\n    authorization: SpotifyUserAuthorization,\n    block: SpotifyApiOptions.() -> Unit = {}\n): SpotifyAppApiBuilder = SpotifyAppApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.clientSecret = clientSecret\n    }\n    authorization(authorization)\n    options(block)\n}\n\n/**\n * Instantiate a new [SpotifyAppApiBuilder] using a [Token]\n *\n * Use case: I am using the client credentials flow.\n * I only need access to public Spotify API endpoints, I have an existing token,\n * and I don't want to deal with advanced configuration.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param token Build the API using an existing token.\n * @param block Override default API options such as the cache limit\n *\n * @return Configurable [SpotifyAppApiBuilder] that, when built, creates a new [SpotifyAppApi]\n */\npublic fun spotifyAppApi(\n    clientId: String?,\n    clientSecret: String?,\n    token: Token,\n    block: SpotifyApiOptions.() -> Unit = {}\n): SpotifyAppApiBuilder = SpotifyAppApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.clientSecret = clientSecret\n    }\n\n    authorization {\n        this.token = token\n    }\n\n    options(block)\n}\n\n/**\n * Instantiate a new [SpotifyAppApiBuilder] by providing a builder initialization [block].\n *\n * **Note**: You **must** provide your app credentials in the [SpotifyAppApiBuilder.credentials] block\n *\n * Use case: I am using the client credentials flow.\n * I only need access to public Spotify API endpoints, and I want to use the [SpotifyAppApiBuilder] DSL\n * to configure everything myself.\n *\n * @param block Api settings block\n *\n * @return Configurable [SpotifyAppApiBuilder] that, when built, creates a new [SpotifyAppApi]\n */\npublic fun spotifyAppApi(block: SpotifyAppApiBuilder.() -> Unit): SpotifyAppApiBuilder =\n    SpotifyAppApiBuilder().apply(block)\n\n// Client Api Builders\n/*\n ____________________________\n/ This is Authorization Code \\\n\\ authorization              /\n ----------------------------\n        \\   ^__^\n         \\  (oo)\\_______\n            (__)\\       )\\/\\\n                ||----w |\n                ||     ||\n */\n\n/**\n * Instantiate a new [SpotifyClientApiBuilder] using a Spotify [clientId], [clientSecret], and [redirectUri].\n *\n * **Note**: If trying to build [SpotifyClientApi], you **must** provide client authorization in the [SpotifyClientApiBuilder.authorization]\n * block\n *\n * Use case: I am using the client authorization flow.\n * I want access to both public and client Spotify API endpoints, and I want\n * to configure authorization and other settings myself.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n *\n * @return Configurable [SpotifyClientApiBuilder] that, when built, creates a new [SpotifyClientApi]\n */\npublic fun spotifyClientApi(\n    clientId: String,\n    clientSecret: String,\n    redirectUri: String\n): SpotifyClientApiBuilder = SpotifyClientApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.clientSecret = clientSecret\n        this.redirectUri = redirectUri\n    }\n}\n\n/**\n * Instantiate a new [SpotifyClientApiBuilder] using a Spotify [clientId], [clientSecret], and [redirectUri], with the ability to configure\n * the api settings by providing a builder initialization [block]\n *\n * **Note**: If trying to build [SpotifyClientApi], you **must** provide client authorization in the [SpotifyClientApiBuilder.authorization]\n * block\n *\n * Use case: I am using the client authorization flow.\n * I want access to both public and client Spotify API endpoints, and I want\n * to configure authorization and other settings myself.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param block Api settings block\n *\n * @return Configurable [SpotifyClientApiBuilder] that, when built, creates a new [SpotifyClientApi]\n */\npublic fun spotifyClientApi(\n    clientId: String,\n    clientSecret: String,\n    redirectUri: String,\n    block: SpotifyClientApiBuilder.() -> Unit\n): SpotifyClientApiBuilder = SpotifyClientApiBuilder().apply(block).apply {\n    credentials {\n        this.clientId = clientId\n        this.clientSecret = clientSecret\n        this.redirectUri = redirectUri\n    }\n}\n\n/**\n * Instantiate a new [SpotifyClientApiBuilder] using a Spotify [clientId], [clientSecret], and [redirectUri],\n * with an existing [SpotifyUserAuthorization].\n *\n * Use case: I am using the client authorization flow.\n * I want access to both public and client Spotify API endpoints and I want to configure [authorization]\n * and [block] without using the DSL.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param authorization A [SpotifyUserAuthorization] that must contain one of the following: authorization code (preferred),\n * access token string (tokenString), [Token] object, **and** that may contain a refresh token (preferred)\n * with which to refresh the access token\n * @param block Override default API options such as the cache limit\n *\n * @return Configurable [SpotifyClientApiBuilder] that, when built, creates a new [SpotifyClientApi]\n */\npublic fun spotifyClientApi(\n    clientId: String?,\n    clientSecret: String?,\n    redirectUri: String?,\n    authorization: SpotifyUserAuthorization,\n    block: SpotifyApiOptions.() -> Unit = {}\n): SpotifyClientApiBuilder = SpotifyClientApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.clientSecret = clientSecret\n        this.redirectUri = redirectUri\n    }\n    authorization(authorization)\n    options(block)\n}\n\n/**\n * Instantiate a new [SpotifyClientApiBuilder] using a Spotify [clientId], [clientSecret], and [redirectUri],\n * with an existing [SpotifyUserAuthorization].\n *\n * Use case: I am using the client authorization flow.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param clientSecret Spotify [client secret](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param token Build the API using an existing token.\n * @param block Override default API options such as the cache limit\n *\n * @return Configurable [SpotifyClientApiBuilder] that, when built, creates a new [SpotifyClientApi]\n */\npublic fun spotifyClientApi(\n    clientId: String?,\n    clientSecret: String?,\n    redirectUri: String?,\n    token: Token,\n    block: SpotifyApiOptions.() -> Unit = {}\n): SpotifyClientApiBuilder = SpotifyClientApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.clientSecret = clientSecret\n        this.redirectUri = redirectUri\n    }\n\n    authorization {\n        this.token = token\n    }\n\n    options(block)\n}\n\n/**\n * Instantiate a new [SpotifyClientApiBuilder] by providing a builder initialization [block]\n *\n * **Note**: If trying to build [SpotifyClientApi], you **must** provide client authorization in the [SpotifyClientApiBuilder.authorization]\n * block\n *\n * Use case: I am using the client authorization flow.\n * I want access to both public and client Spotify API endpoints and I want to handle configuration\n * via the DSL myself.\n *\n * @param block Api settings block\n *\n * @return Configurable [SpotifyClientApiBuilder] that, when built, creates a new [SpotifyClientApi]\n */\npublic fun spotifyClientApi(block: SpotifyClientApiBuilder.() -> Unit): SpotifyClientApiBuilder =\n    SpotifyClientApiBuilder().apply(block)\n\n// PKCE Client Api Builders\n/*\n ____________________________\n/ This is Authorization Code \\\n\\ authorization (PKCE)       /\n ----------------------------\n        \\   ^__^\n         \\  (oo)\\_______\n            (__)\\       )\\/\\\n                ||----w |\n                ||     ||\n */\n\n/**\n * Instantiate a new [SpotifyClientApiBuilder]. This is for **PKCE authorization**.\n *\n * Use case: I am using the PKCE client authorization flow.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param authorization A [SpotifyUserAuthorization] that must contain one of the following: authorization code (preferred),\n * access token string (tokenString), [Token] object, **and** that may contain a refresh token (preferred)\n * with which to refresh the access token. Retrieved after PKCE client authorization flow. **You must provide a code verifier (plaintext).\n * @param block Override default API options such as the cache limit\n *\n * @return Configurable [SpotifyClientApiBuilder] that, when built, creates a new [SpotifyClientApi]\n */\npublic fun spotifyClientPkceApi(\n    clientId: String?,\n    redirectUri: String?,\n    authorization: SpotifyUserAuthorization,\n    block: SpotifyApiOptions.() -> Unit = {}\n): SpotifyClientApiBuilder = SpotifyClientApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.redirectUri = redirectUri\n    }\n\n    authorization(authorization)\n    options(block)\n\n    usesPkceAuth = true\n}\n\n/**\n * Instantiate a new [SpotifyClientApiBuilder]. This is for **PKCE authorization**.\n *\n * Use case: I am using the PKCE client authorization flow.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param pkceCodeVerifier The code verifier generated that the client authenticated with (using its code challenge)\n * @param authorizationCode Only available when building [SpotifyClientApi]. Spotify auth code\n *\n * @return Configurable [SpotifyClientApiBuilder] that, when built, creates a new [SpotifyClientApi]\n */\npublic fun spotifyClientPkceApi(\n    clientId: String?,\n    redirectUri: String?,\n    authorizationCode: String,\n    pkceCodeVerifier: String\n): SpotifyClientApiBuilder = SpotifyClientApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.redirectUri = redirectUri\n    }\n\n    authorization {\n        this.authorizationCode = authorizationCode\n        this.pkceCodeVerifier = pkceCodeVerifier\n    }\n\n    usesPkceAuth = true\n}\n\n/**\n * Instantiate a new [SpotifyClientApiBuilder]. This is for **PKCE authorization**.\n *\n * Use case: I am using the PKCE client authorization flow.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param pkceCodeVerifier The code verifier generated that the client authenticated with (using its code challenge)\n * @param authorizationCode Only available when building [SpotifyClientApi]. Spotify auth code\n * @param block Override default API options such as the cache limit\n *\n * @return Configurable [SpotifyClientApiBuilder] that, when built, creates a new [SpotifyClientApi]\n */\npublic fun spotifyClientPkceApi(\n    clientId: String?,\n    redirectUri: String?,\n    authorizationCode: String,\n    pkceCodeVerifier: String,\n    block: SpotifyApiOptions.() -> Unit\n): SpotifyClientApiBuilder = SpotifyClientApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.redirectUri = redirectUri\n    }\n\n    authorization {\n        this.authorizationCode = authorizationCode\n        this.pkceCodeVerifier = pkceCodeVerifier\n    }\n    options(block)\n\n    usesPkceAuth = true\n}\n\n/**\n * Instantiate a new [SpotifyClientApiBuilder]. This is for **PKCE authorization**.\n *\n * Use case: I am using the PKCE client authorization flow.\n *\n * @param clientId Spotify [client id](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param redirectUri Spotify [redirect uri](https://developer.spotify.com/documentation/general/guides/app-settings/)\n * @param token Build the API using an existing token.\n * @param block Override default API options such as the cache limit\n *\n * @return Configurable [SpotifyClientApiBuilder] that, when built, creates a new [SpotifyClientApi]\n */\npublic fun spotifyClientPkceApi(\n    clientId: String?,\n    redirectUri: String?,\n    token: Token,\n    block: SpotifyApiOptions.() -> Unit = {}\n): SpotifyClientApiBuilder = SpotifyClientApiBuilder().apply {\n    credentials {\n        this.clientId = clientId\n        this.redirectUri = redirectUri\n    }\n\n    authorization {\n        this.token = token\n    }\n    options(block)\n\n    usesPkceAuth = true\n}\n\n/**\n *  Spotify API builder\n */\npublic class SpotifyApiBuilder(\n    private var clientId: String?,\n    private var clientSecret: String?,\n    private var redirectUri: String?\n) {\n    /**\n     * Allows you to authenticate a [SpotifyClientApi] with an authorization code\n     * or build [SpotifyApi] using a refresh token\n     */\n    public var authorization: SpotifyUserAuthorization = SpotifyUserAuthorization()\n\n    /**\n     * Allows you to override default values for caching, token refresh, and logging\n     */\n    public var options: SpotifyApiOptions = SpotifyApiOptions()\n\n    /**\n     * After API creation, set whether to test whether the token is valid by performing a lightweight request\n     */\n    public fun testTokenValidity(testTokenValidity: Boolean): SpotifyApiBuilder =\n        apply { this.options.testTokenValidity = testTokenValidity }\n\n    /**\n     * Allows you to set the default amount of objects to retrieve in one request\n     */\n    public fun defaultLimit(defaultLimit: Int): SpotifyApiBuilder = apply { this.options.defaultLimit = defaultLimit }\n\n    /**\n     * Set the application client id\n     */\n    public fun clientId(clientId: String): SpotifyApiBuilder = apply { this.clientId = clientId }\n\n    /**\n     * Set the application client secret\n     */\n    public fun clientSecret(clientSecret: String): SpotifyApiBuilder = apply { this.clientSecret = clientSecret }\n\n    /**\n     * Set whether to cache requests. Default: true\n     */\n    public fun useCache(useCache: Boolean): SpotifyApiBuilder = apply { this.options.useCache = useCache }\n\n    /**\n     *  Set the maximum allowed amount of cached requests at one time. Null means no limit\n     */\n    public fun cacheLimit(cacheLimit: Int?): SpotifyApiBuilder = apply { this.options.cacheLimit = cacheLimit }\n\n    /**\n     * Set the application [redirect uri](https://developer.spotify.com/documentation/general/guides/authorization-guide/)\n     */\n    public fun redirectUri(redirectUri: String?): SpotifyApiBuilder = apply { this.redirectUri = redirectUri }\n\n    /**\n     * Set a returned [authorization code](https://developer.spotify.com/documentation/general/guides/authorization-guide/)\n     */\n    public fun authorizationCode(authorizationCode: String?): SpotifyApiBuilder =\n        apply { this.authorization.authorizationCode = authorizationCode }\n\n    /**\n     * If you only have an access token, the api can be instantiated with it\n     */\n    public fun tokenString(tokenString: String?): SpotifyApiBuilder =\n        apply { this.authorization.tokenString = tokenString }\n\n    /**\n     * Set the token to be used with this api instance\n     */\n    public fun token(token: Token?): SpotifyApiBuilder = apply { this.authorization.token = token }\n\n    /**\n     * Enable or disable automatic refresh of the Spotify access token\n     */\n    public fun automaticRefresh(automaticRefresh: Boolean): SpotifyApiBuilder =\n        apply { this.options.automaticRefresh = automaticRefresh }\n\n    /**\n     * Set whether to block the current thread and wait until the API can retry the request\n     */\n    public fun retryWhenRateLimited(retryWhenRateLimited: Boolean): SpotifyApiBuilder =\n        apply { this.options.retryWhenRateLimited = retryWhenRateLimited }\n\n    /**\n     * Set the maximum time, in milliseconds, before terminating an http request\n     */\n    public fun requestTimeoutMillis(requestTimeoutMillis: Long?): SpotifyApiBuilder =\n        apply { this.options.requestTimeoutMillis = requestTimeoutMillis }\n\n    /**\n     * Set whether you want to allow splitting too-large requests into smaller, allowable api requests\n     */\n    public fun allowBulkRequests(allowBulkRequests: Boolean): SpotifyApiBuilder =\n        apply { this.options.allowBulkRequests = allowBulkRequests }\n\n    /**\n     * Create a [SpotifyApi] instance with the given [SpotifyApiBuilder] parameters and the type -\n     * [AuthorizationType.Client] for client authentication, or otherwise [AuthorizationType.Application]\n     */\n    public suspend fun build(type: AuthorizationType): GenericSpotifyApi {\n        return if (type == AuthorizationType.Client) {\n            buildClient()\n        } else {\n            buildCredentialed()\n        }\n    }\n\n    /**\n     * Create a [SpotifyApi] instance with the given [SpotifyApiBuilder] parameters and the type -\n     * [AuthorizationType.Client] for client authentication, or otherwise [AuthorizationType.Application]\n     */\n    public fun buildRestAction(type: AuthorizationType): SpotifyRestAction<GenericSpotifyApi> = SpotifyRestAction {\n        build(type)\n    }\n\n    /**\n     * Create a new [SpotifyAppApi] that only has access to *public* endpoints and data\n     */\n    public suspend fun buildPublic(): SpotifyAppApi = buildCredentialed()\n\n    /**\n     * Create a new [SpotifyAppApi] that only has access to *public* endpoints and data\n     */\n    public fun buildPublicRestAction(): SpotifyRestAction<SpotifyAppApi> = SpotifyRestAction { buildPublic() }\n\n    /**\n     * Create a new [SpotifyAppApi] that only has access to *public* endpoints and data\n     */\n    public suspend fun buildCredentialed(): SpotifyAppApi = spotifyAppApi {\n        credentials {\n            clientId = this@SpotifyApiBuilder.clientId\n            clientSecret = this@SpotifyApiBuilder.clientSecret\n        }\n        authorization(authorization)\n        options(options)\n    }.build()\n\n    /**\n     * Create a new [SpotifyAppApi] that only has access to *public* endpoints and data\n     */\n    public fun buildCredentialedRestAction(): SpotifyRestAction<SpotifyAppApi> = SpotifyRestAction { buildCredentialed() }\n\n    /**\n     * Create a new [SpotifyClientApi] that has access to public endpoints, in addition to endpoints\n     * requiring scopes contained in the client authorization request\n     */\n    public suspend fun buildClient(): SpotifyClientApi = spotifyClientApi {\n        credentials {\n            clientId = this@SpotifyApiBuilder.clientId\n            clientSecret = this@SpotifyApiBuilder.clientSecret\n            redirectUri = this@SpotifyApiBuilder.redirectUri\n        }\n        authorization(authorization)\n        options(options)\n    }.build()\n\n    /**\n     * Create a new [SpotifyClientApi] that has access to public endpoints, in addition to endpoints\n     * requiring scopes contained in the client authorization request\n     */\n    public fun buildClientRestAction(): SpotifyRestAction<SpotifyClientApi> = SpotifyRestAction { buildClient() }\n}\n\n/**\n * The type of Spotify authorization used to build an Api instance\n */\npublic enum class AuthorizationType {\n    /**\n     * Authorization through explicit affirmative action taken by a client (user) allowing the application to access a/multiple [SpotifyScope]\n     *\n     * [Spotify application settings page](https://developer.spotify.com/documentation/general/guides/app-settings/)\n     */\n    Client,\n\n    /**\n     * Authorization through application client id and secret, allowing access only to public endpoints and data\n     *\n     * [Spotify application settings page](https://developer.spotify.com/documentation/general/guides/app-settings/)\n     */\n    Application;\n}\n\n/**\n * Spotify Api builder interface\n *\n * @param T The type of [SpotifyApi] to be built\n * @param B The associated Api builder for [T]\n */\npublic interface ISpotifyApiBuilder<T : SpotifyApi<T, B>, B : ISpotifyApiBuilder<T, B>> {\n    /**\n     * A block in which Spotify application credentials (accessible via the Spotify [dashboard](https://developer.spotify.com/dashboard/applications))\n     * should be put\n     */\n    public var credentials: SpotifyCredentials\n\n    /**\n     * Allows you to authenticate a [SpotifyClientApi] with an authorization code\n     * or build [SpotifyApi] using a refresh token\n     */\n    public var authorization: SpotifyUserAuthorization\n\n    /**\n     * Allows you to override default values for caching, token refresh, and logging\n     */\n    public var options: SpotifyApiOptions\n\n    /**\n     * A block in which Spotify application credentials (accessible via the Spotify [dashboard](https://developer.spotify.com/dashboard/applications))\n     * should be put\n     */\n    public fun credentials(block: SpotifyCredentials.() -> Unit): ISpotifyApiBuilder<T, B> = apply {\n        credentials = SpotifyCredentials().apply(block)\n    }\n\n    /**\n     * Allows you to authenticate a [SpotifyClientApi] with an authorization code\n     * or build [SpotifyApi] using a refresh token\n     */\n    public fun authorization(block: SpotifyUserAuthorization.() -> Unit): ISpotifyApiBuilder<T, B> = apply {\n        authorization = SpotifyUserAuthorization().apply(block)\n    }\n\n    /**\n     * Allows you to authenticate a [SpotifyClientApi] with an authorization code\n     * or build [SpotifyApi] using a refresh token\n     */\n    public fun authentication(block: SpotifyUserAuthorization.() -> Unit): ISpotifyApiBuilder<T, B> = apply {\n        authorization = SpotifyUserAuthorization().apply(block)\n    }\n\n    public fun authorization(authorization: SpotifyUserAuthorization): ISpotifyApiBuilder<T, B> =\n        apply { this.authorization = authorization }\n\n    /**\n     * Allows you to override default values for caching, token refresh, and logging\n     */\n    public fun options(block: SpotifyApiOptions.() -> Unit): ISpotifyApiBuilder<T, B> = apply {\n        options = SpotifyApiOptions().apply(block)\n    }\n\n    /**\n     * Allows you to override default values for caching, token refresh, and logging\n     */\n    public fun options(options: SpotifyApiOptions): ISpotifyApiBuilder<T, B> = apply {\n        this.options = options\n    }\n\n    /**\n     * Build the [T] by provided information\n     */\n    public suspend fun build(enableDefaultTokenRefreshProducerIfNoneExists: Boolean = true): T\n\n    /**\n     * Build the [T] by provided information\n     */\n    public fun buildRestAction(enableDefaultTokenRefreshProducerIfNoneExists: Boolean = true): SpotifyRestAction<T> = SpotifyRestAction {\n        build(enableDefaultTokenRefreshProducerIfNoneExists)\n    }\n}\n\n/**\n * Client interface exposing [getAuthorizationUrl]\n */\npublic interface ISpotifyClientApiBuilder : ISpotifyApiBuilder<SpotifyClientApi, SpotifyClientApiBuilder> {\n    /**\n     * Create a Spotify authorization URL from which API access can be obtained\n     *\n     * @param scopes The scopes that the application should have access to\n     * @param state This provides protection against attacks such as cross-site request forgery.\n     * @return Authorization URL that can be used in a browser\n     */\n    public fun getAuthorizationUrl(vararg scopes: SpotifyScope, state: String? = null): String\n}\n\n/**\n * [SpotifyClientApi] builder for api creation using client authorization\n *\n * @param usesPkceAuth Set this if PKCE authorization is used to build this API. **Note**: this is not required to be true if\n * [SpotifyUserAuthorization.pkceCodeVerifier] (`options.pkceCodeVerifier`) is set. If `options.pkceCodeVerifier`, this builder will\n * always build a Spotify client api with PKCE auth.\n */\npublic class SpotifyClientApiBuilder(\n    override var credentials: SpotifyCredentials = SpotifyCredentials(),\n    override var authorization: SpotifyUserAuthorization = SpotifyUserAuthorization(),\n    override var options: SpotifyApiOptions = SpotifyApiOptions(),\n    public var usesPkceAuth: Boolean? = null\n) : ISpotifyClientApiBuilder {\n    override fun getAuthorizationUrl(vararg scopes: SpotifyScope, state: String?): String {\n        require(credentials.redirectUri != null && credentials.clientId != null) { \"You didn't specify a redirect uri or client id in the credentials block!\" }\n        return SpotifyApi.getAuthUrlFull(\n            *scopes,\n            clientId = credentials.clientId!!,\n            redirectUri = credentials.redirectUri!!,\n            state = state\n        )\n    }\n\n    override suspend fun build(enableDefaultTokenRefreshProducerIfNoneExists: Boolean): SpotifyClientApi {\n        val clientId = credentials.clientId\n        val clientSecret = credentials.clientSecret\n        val redirectUri = credentials.redirectUri\n\n        // either application credentials, or a token is required\n        require((clientId != null && clientSecret != null && redirectUri != null) || (clientId != null && redirectUri != null && authorization.pkceCodeVerifier != null) || authorization.token != null || authorization.tokenString != null) { \"You need to specify a valid clientId, clientSecret, and redirectUri in the credentials block!\" }\n        val api = when {\n            authorization.authorizationCode != null && authorization.pkceCodeVerifier == null -> try {\n                require(clientId != null && clientSecret != null && redirectUri != null) { \"You need to specify a valid clientId, clientSecret, and redirectUri in the credentials block!\" }\n\n                val response = executeTokenRequest(\n                    HttpRequest(\n                        \"https://accounts.spotify.com/api/token\",\n                        HttpRequestMethod.POST,\n                        mapOf(\n                            \"grant_type\" to \"authorization_code\",\n                            \"code\" to authorization.authorizationCode,\n                            \"redirect_uri\" to redirectUri\n                        ),\n                        null,\n                        \"application/x-www-form-urlencoded\",\n                        listOf(),\n                        null\n                    ),\n                    clientId,\n                    clientSecret\n                )\n\n                SpotifyClientApi(\n                    clientId = clientId,\n                    clientSecret = clientSecret,\n                    redirectUri = redirectUri,\n                    token = response.body.toObject(Token.serializer(), null, options.json),\n                    usesPkceAuth = usesPkceAuth == true,\n                    enableDefaultTokenRefreshProducerIfNoneExists = enableDefaultTokenRefreshProducerIfNoneExists,\n                    spotifyApiOptions = options\n                )\n            } catch (e: CancellationException) {\n                throw e\n            } catch (e: Exception) {\n                // BadRequestException -> ServerResponseException\n                if ((e.cause as? ServerResponseException)?.response?.status?.value in 500..599) {\n                    throw SpotifyException.BadRequestException(\"Spotify internal server error\", e)\n                } else {\n                    throw SpotifyException.AuthenticationException(\n                        \"Invalid credentials provided in the login process (clientId=$clientId, clientSecret=$clientSecret, authCode=${authorization.authorizationCode})\",\n                        e\n                    )\n                }\n            }\n            authorization.authorizationCode != null && authorization.pkceCodeVerifier != null -> try {\n                require(clientId != null && redirectUri != null) { \"You need to specify a valid clientId and redirectUri in the credentials block!\" }\n\n                val response = HttpRequest(\n                    \"https://accounts.spotify.com/api/token\",\n                    HttpRequestMethod.POST,\n                    mapOf(\n                        \"grant_type\" to \"authorization_code\",\n                        \"code\" to authorization.authorizationCode,\n                        \"redirect_uri\" to redirectUri,\n                        \"client_id\" to clientId,\n                        \"code_verifier\" to authorization.pkceCodeVerifier\n                    ),\n                    null,\n                    \"application/x-www-form-urlencoded\",\n                    listOf(),\n                    null\n                ).execute()\n\n                SpotifyClientApi(\n                    clientId = clientId,\n                    clientSecret = clientSecret,\n                    redirectUri = redirectUri,\n                    token = response.body.toObject(Token.serializer(), null, options.json),\n                    usesPkceAuth = true,\n                    enableDefaultTokenRefreshProducerIfNoneExists = enableDefaultTokenRefreshProducerIfNoneExists,\n                    spotifyApiOptions = options\n                )\n            } catch (e: CancellationException) {\n                throw e\n            } catch (e: Exception) {\n                if ((e.cause as? ServerResponseException)?.response?.status?.value in 500..599) {\n                    throw SpotifyException.BadRequestException(\"Spotify internal server error\", e)\n                } else {\n                    throw SpotifyException.AuthenticationException(\n                        \"Invalid credentials provided in the login process (clientId=$clientId, clientSecret=$clientSecret, authCode=${authorization.authorizationCode})\",\n                        e\n                    )\n                }\n            }\n            authorization.token != null -> SpotifyClientApi(\n                clientId = clientId,\n                clientSecret = clientSecret,\n                redirectUri = redirectUri,\n                token = authorization.token!!,\n                usesPkceAuth = authorization.pkceCodeVerifier != null || usesPkceAuth == true,\n                enableDefaultTokenRefreshProducerIfNoneExists = enableDefaultTokenRefreshProducerIfNoneExists,\n                spotifyApiOptions = options\n            )\n            authorization.tokenString != null -> SpotifyClientApi(\n                clientId = clientId,\n                clientSecret = clientSecret,\n                redirectUri = redirectUri,\n                token = Token(\n                    authorization.tokenString!!,\n                    \"client_credentials\",\n                    3600,\n                    null,\n                    null\n                ),\n                usesPkceAuth = false,\n                enableDefaultTokenRefreshProducerIfNoneExists = false,\n                spotifyApiOptions = options\n            )\n            else -> throw IllegalArgumentException(\n                \"At least one of: authorizationCode, tokenString, or token must be provided \" +\n                    \"to build a SpotifyClientApi object\"\n            )\n        }\n\n        if (options.testTokenValidity) SpotifyApi.testTokenValidity(api)\n\n        return api\n    }\n}\n\n/**\n * App Api builder interface\n */\npublic interface ISpotifyAppApiBuilder : ISpotifyApiBuilder<SpotifyAppApi, SpotifyAppApiBuilder>\n\n/**\n * [SpotifyAppApi] builder for api creation using client authorization\n */\npublic class SpotifyAppApiBuilder(\n    override var credentials: SpotifyCredentials = SpotifyCredentials(),\n    override var authorization: SpotifyUserAuthorization = SpotifyUserAuthorization(),\n    override var options: SpotifyApiOptions = SpotifyApiOptions()\n) : ISpotifyAppApiBuilder {\n    /**\n     * Build a public [SpotifyAppApi] using the provided credentials\n     */\n    override suspend fun build(enableDefaultTokenRefreshProducerIfNoneExists: Boolean): SpotifyAppApi {\n        val clientId = credentials.clientId\n        val clientSecret = credentials.clientSecret\n        require((clientId != null && clientSecret != null) || authorization.token != null || authorization.tokenString != null) { \"You didn't specify a client id or client secret in the credentials block!\" }\n\n        val api = when {\n            authorization.token != null -> SpotifyAppApi(\n                clientId = clientId,\n                clientSecret = clientSecret,\n                token = authorization.token!!,\n                enableDefaultTokenRefreshProducerIfNoneExists = enableDefaultTokenRefreshProducerIfNoneExists,\n                spotifyApiOptions = options\n            )\n            authorization.tokenString != null -> SpotifyAppApi(\n                clientId = clientId,\n                clientSecret = clientSecret,\n                token = Token(\n                    authorization.tokenString!!,\n                    \"client_credentials\",\n                    3600,\n                    null,\n                    null\n                ),\n                enableDefaultTokenRefreshProducerIfNoneExists = enableDefaultTokenRefreshProducerIfNoneExists,\n                spotifyApiOptions = options\n            )\n            authorization.refreshTokenString != null -> SpotifyAppApi(\n                clientId = clientId,\n                clientSecret = clientSecret,\n                token = Token(\n                    \"\",\n                    \"\",\n                    0,\n                    authorization.refreshTokenString!!\n                ),\n                enableDefaultTokenRefreshProducerIfNoneExists = enableDefaultTokenRefreshProducerIfNoneExists,\n                spotifyApiOptions = options\n            )\n            else -> try {\n                require(clientId != null && clientSecret != null) { \"Illegal credentials provided\" }\n                val token = getCredentialedToken(clientId, clientSecret, null, options.json)\n                SpotifyAppApi(\n                    clientId = clientId,\n                    clientSecret = clientSecret,\n                    token = token,\n                    enableDefaultTokenRefreshProducerIfNoneExists = enableDefaultTokenRefreshProducerIfNoneExists,\n                    spotifyApiOptions = options\n                )\n            } catch (e: CancellationException) {\n                throw e\n            } catch (e: Exception) {\n                if ((e.cause as? ServerResponseException)?.response?.status?.value in 500..599) {\n                    throw SpotifyException.BadRequestException(\"Spotify internal server error\", e)\n                } else {\n                    throw SpotifyException.AuthenticationException(\n                        \"Invalid credentials provided in the login process (clientId=$clientId, clientSecret=$clientSecret)\",\n                        e\n                    )\n                }\n            }\n        }\n\n        if (options.testTokenValidity) SpotifyApi.testTokenValidity(api)\n        return api\n    }\n}\n\n/**\n * A holder for application-specific credentials\n *\n * @property clientId the client id of your Spotify application\n * @property clientSecret the client secret of your Spotify application\n * @property redirectUri nullable redirect uri (use if you're doing client authentication\n */\npublic class SpotifyCredentials {\n    public var clientId: String? = null\n    public var clientSecret: String? = null\n    public var redirectUri: String? = null\n}\n\n/**\n * User-defined authorization parameters\n *\n * @param authorizationCode Only available when building [SpotifyClientApi]. Spotify auth code\n * @param token Build the API using an existing token. If you're building [SpotifyClientApi], this\n * will be your **access** token. If you're building [SpotifyApi], it will be your **refresh** token\n * @param tokenString Build the API using an existing token (string). If you're building [SpotifyClientApi], this\n * will be your **access** token. If you're building [SpotifyApi], it will be your **refresh** token. There is a *very*\n * limited time constraint on these before the API automatically refreshes them\n * @param refreshTokenString Refresh token, given as a string, to be exchanged to Spotify for a new token\n * @param pkceCodeVerifier The code verifier generated that the client authenticated with (using its code challenge)\n */\npublic class SpotifyUserAuthorization(\n    public var authorizationCode: String? = null,\n    public var tokenString: String? = null,\n    public var token: Token? = null,\n    public var refreshTokenString: String? = null,\n    public var pkceCodeVerifier: String? = null\n)\n\n/**\n * API Utilities\n *\n * @param useCache Set whether to cache requests. Default: true\n * @param cacheLimit The maximum amount of cached requests allowed at one time. Null means no limit\n * @param automaticRefresh Enable or disable automatic refresh of the Spotify access token\n * @param retryWhenRateLimited Set whether to block the current thread and wait until the API can retry the request\n * @param testTokenValidity After API creation, test whether the token is valid by performing a lightweight request\n * @param defaultLimit The default amount of objects to retrieve in one request\n * @param json The Json serializer/deserializer instance\n * @param allowBulkRequests Allow splitting too-large requests into smaller, allowable api requests\n * @param requestTimeoutMillis The maximum time, in milliseconds, before terminating an http request\n * @param refreshTokenProducer Provide if you want to use your own logic when refreshing a Spotify token\n * @param onTokenRefresh Provide if you want to act on token refresh event\n * @param requiredScopes Scopes that your application requires to function (only applicable to [SpotifyClientApi] and [SpotifyImplicitGrantApi]).\n * @param proxyBaseUrl Provide if you have a proxy base URL that you would like to use instead of the Spotify API base\n * (https://api.spotify.com/v1).\n * @param retryOnInternalServerErrorTimes Whether and how often to retry once if an internal server error (500..599) has been received. Set to 0\n * to avoid retrying at all, or set to null to keep retrying until success.\n * @param enableDebugMode Whether to enable debug mode (false by default). With debug mode, all response JSON will be outputted to console.\n * @param afterTokenRefresh An optional block to execute after token refresh has been completed.\n * @param httpResponseSubscriber An optional suspending method to subscribe to successful http responses.\n */\npublic data class SpotifyApiOptions(\n    public var useCache: Boolean = true,\n    public var cacheLimit: Int? = 200,\n    public var automaticRefresh: Boolean = true,\n    public var retryWhenRateLimited: Boolean = true,\n    public var testTokenValidity: Boolean = false,\n    public var defaultLimit: Int = 50,\n    public var allowBulkRequests: Boolean = true,\n    public var requestTimeoutMillis: Long? = null,\n    public var json: Json = nonstrictJson,\n    public var refreshTokenProducer: (suspend (GenericSpotifyApi) -> Token)? = null,\n    public var onTokenRefresh: (suspend (GenericSpotifyApi) -> Unit)? = null,\n    public var requiredScopes: List<SpotifyScope>? = null,\n    public var proxyBaseUrl: String? = null,\n    public var retryOnInternalServerErrorTimes: Int? = 5,\n    public var enableDebugMode: Boolean = false,\n    public var httpResponseSubscriber: (suspend (request: HttpRequest, response: HttpResponse) -> Unit)? = null,\n    public var afterTokenRefresh: (suspend (GenericSpotifyApi) -> Unit)? = null\n)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/SpotifyException.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify\n\nimport com.adamratzman.spotify.models.AuthenticationError\nimport com.adamratzman.spotify.models.ErrorObject\nimport io.ktor.client.plugins.ResponseException\n\npublic sealed class SpotifyException(message: String, cause: Throwable? = null) : Exception(message, cause) {\n    public abstract class UnNullableException(message: String) : SpotifyException(message)\n\n    /**\n     * Thrown when a request fails.\n     *\n     * @param statusCode The status code of the request, if this exception is thrown after the completion of an HTTP request.\n     * @param reason The reason for the failure, as a readable message.\n     */\n    public open class BadRequestException(\n        message: String,\n        public val statusCode: Int? = null,\n        public val reason: String? = null,\n        cause: Throwable? = null\n    ) :\n        SpotifyException(message, cause) {\n        public constructor(message: String, cause: Throwable? = null) : this(message, null, null, cause)\n        public constructor(error: ErrorObject?, cause: Throwable? = null) : this(\n            \"Received Status Code ${error?.status}. Error cause: ${error?.message}\" + (\n                error?.reason?.let { \". Reason: ${error.reason}\" }\n                    ?: \"\"\n                ),\n            error?.status,\n            error?.reason,\n            cause\n        )\n\n        public constructor(authenticationError: AuthenticationError) :\n            this(\n                \"Authentication error: ${authenticationError.error}. Description: ${authenticationError.description}\",\n                401\n            )\n\n        public constructor(responseException: ResponseException) :\n            this(\n                responseException.message ?: \"Bad Request\",\n                responseException.response.status.value,\n                null,\n                responseException\n            )\n    }\n\n    /**\n     * Exception signifying that JSON (de)serialization failed. This is likely a library error rather than user error.\n     */\n    public class ParseException(message: String, cause: Throwable? = null) : SpotifyException(message, cause)\n\n    /**\n     * Exception signifying that authentication (via token or code) was unsuccessful, likely due to an invalid access token, code,\n     * or refresh token.\n     */\n    public class AuthenticationException(message: String, cause: Throwable? = null) : SpotifyException(message, cause) {\n        public constructor(authenticationError: AuthenticationError?) :\n            this(\"Authentication error: ${authenticationError?.error}. Description: ${authenticationError?.description}\")\n    }\n\n    /**\n     * Exception signifying that the HTTP request associated with this API endpoint timed out (by default, after 100 seconds).\n     */\n    public class TimeoutException(message: String, cause: Throwable? = null) : SpotifyException(message, cause)\n\n    /**\n     * Exception signifying that re-authentication via spotify-auth is necessary. Thrown by default when refreshTokenProducer is null.\n     */\n    public class ReAuthenticationNeededException(cause: Throwable? = null, message: String? = null) :\n        SpotifyException(message ?: \"Re-authentication is needed.\", cause)\n\n    /**\n     * Exception signifying that the current api token does not have the necessary scope to complete this request\n     *\n     */\n    public class SpotifyScopesNeededException(cause: Throwable? = null, public val missingScopes: List<SpotifyScope>) :\n        BadRequestException(\n            cause = cause,\n            message = \"You tried to call a method that requires the following missing scopes: $missingScopes. Please make sure that your token is requested with these scopes.\"\n        )\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/SpotifyRestAction.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify\n\nimport com.adamratzman.spotify.utils.TimeUnit\nimport com.adamratzman.spotify.utils.getCurrentTimeMs\nimport com.adamratzman.spotify.utils.runBlockingOnJvmAndNative\nimport kotlinx.coroutines.CancellationException\nimport kotlinx.coroutines.CoroutineScope\nimport kotlinx.coroutines.DelicateCoroutinesApi\nimport kotlinx.coroutines.Dispatchers\nimport kotlinx.coroutines.GlobalScope\nimport kotlinx.coroutines.delay\nimport kotlinx.coroutines.launch\nimport kotlinx.coroutines.withContext\nimport kotlin.coroutines.CoroutineContext\nimport kotlin.coroutines.resume\nimport kotlin.coroutines.resumeWithException\nimport kotlin.coroutines.suspendCoroutine\nimport kotlin.jvm.JvmOverloads\n\n/**\n * Provides a uniform interface to retrieve, whether synchronously or asynchronously, [T] from Spotify\n */\npublic open class SpotifyRestAction<T> internal constructor(public val supplier: suspend () -> T) {\n    private var hasRunBacking: Boolean = false\n    private var hasCompletedBacking: Boolean = false\n\n    /**\n     * Whether this REST action has been *commenced*.\n     *\n     * Not to be confused with [hasCompleted]\n     */\n    public fun hasRun(): Boolean = hasRunBacking\n\n    /**\n     * Whether this REST action has been fully *completed*\n     */\n    public fun hasCompleted(): Boolean = hasCompletedBacking\n\n    /**\n     * Invoke [supplier] and synchronously retrieve [T]. This is only available on JVM/Native and will fail on JS.\n     */\n    public fun complete(): T = runBlockingOnJvmAndNative {\n        suspendComplete()\n    }\n\n    /**\n     * Suspend the coroutine, invoke [SpotifyRestAction.supplier] asynchronously/queued and resume with result [T]\n     * */\n    public suspend fun suspendQueue(): T = suspendCoroutine { continuation ->\n        queue({ throwable ->\n            continuation.resumeWithException(throwable)\n        }) { result ->\n            continuation.resume(result)\n        }\n    }\n\n    /**\n     * Switch to given [context][context], invoke [SpotifyRestAction.supplier] and synchronously retrieve [T]\n     *\n     * @param context The context to execute the [SpotifyRestAction.complete] in\n     * */\n    @Suppress(\"UNCHECKED_CAST\")\n    @JvmOverloads\n    public suspend fun suspendComplete(context: CoroutineContext = Dispatchers.Default): T = withContext(context) {\n        hasRunBacking = true\n        return@withContext try {\n            supplier().also { hasCompletedBacking = true }\n        } catch (e: CancellationException) {\n            throw e\n        } catch (e: Throwable) {\n            throw e\n        }\n    }\n\n    /**\n     * Invoke [supplier] asynchronously and consume [consumer] with the [T] value returned\n     *\n     * @param failure Consumer to invoke when an exception is thrown by [supplier]\n     * @param consumer to be invoked with [T] after successful completion of [supplier]\n     */\n    @OptIn(DelicateCoroutinesApi::class)\n    @JvmOverloads\n    public fun queue(failure: ((Throwable) -> Unit) = { throw it }, consumer: ((T) -> Unit) = {}) {\n        hasRunBacking = true\n        GlobalScope.launch {\n            try {\n                val result = suspendComplete()\n                consumer(result)\n            } catch (e: CancellationException) {\n                throw e\n            } catch (t: Throwable) {\n                failure(t)\n            }\n        }\n    }\n\n    /**\n     * Invoke [supplier] asynchronously immediately and invoke [consumer] after the specified quantity of time.\n     *\n     * @param quantity amount of time\n     * @param timeUnit the unit that [quantity] is in\n     * @param consumer to be invoked with [T] after successful completion of [supplier]\n     */\n    @OptIn(DelicateCoroutinesApi::class)\n    @JvmOverloads\n    public fun queueAfter(\n        quantity: Int,\n        timeUnit: TimeUnit = TimeUnit.Seconds,\n        scope: CoroutineScope = GlobalScope,\n        failure: (Throwable) -> Unit = { throw it },\n        consumer: (T) -> Unit\n    ) {\n        val runAt = getCurrentTimeMs() + timeUnit.toMillis(quantity.toLong())\n        scope.launch {\n            delay(getCurrentTimeMs() - runAt)\n\n            try {\n                consumer(suspendComplete())\n            } catch (e: CancellationException) {\n                throw e\n            } catch (t: Throwable) {\n                failure(t)\n            }\n        }\n    }\n\n    override fun toString(): String = complete().toString()\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/SpotifyScope.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify\n\n/**\n * Scopes provide Spotify users using third-party apps the confidence\n * that only the information they choose to share will be shared, and nothing more.\n *\n * Each represents a distinct privilege and may be required by one or more endpoints as discussed\n * on the [Spotify Authorization Documentation](https://developer.spotify.com/documentation/general/guides/scopes/)\n *\n * @param uri The scope id\n */\npublic enum class SpotifyScope(public val uri: String) {\n    /**\n     * Remote control playback of Spotify. This scope is currently available to Spotify iOS and Android App Remote SDKs.\n     *\n     * **Visible to users**: Communicate with the Spotify app on your device.\n     */\n    AppRemoteControl(\"app-remote-control\"),\n\n    /**\n     * Read access to user's private playlists.\n     *\n     * **Visible to users**: Access your private playlists.\n     */\n    PlaylistReadPrivate(\"playlist-read-private\"),\n\n    /**\n     * Include collaborative playlists when requesting a user's playlists.\n     *\n     * **Visible to users**: Access your collaborative playlists.\n     */\n    PlaylistReadCollaborative(\"playlist-read-collaborative\"),\n\n    /**\n     * Write access to a user's public playlists.\n     *\n     * **Visible to users**: Manage your public playlists.\n     */\n    PlaylistModifyPublic(\"playlist-modify-public\"),\n\n    /**\n     * Write access to a user's private playlists.\n     *\n     * **Visible to users**: Manage your private playlists.\n     */\n    PlaylistModifyPrivate(\"playlist-modify-private\"),\n\n    /**\n     * Control playback of a Spotify track. This scope is currently available to Spotify Playback SDKs, including the iOS SDK, Android SDK and Web Playback SDK. The user must have a Spotify Premium account.\n     *\n     * **Visible to users**: Play music and control playback on your other devices.\n     */\n    Streaming(\"streaming\"),\n\n    /**\n     * Let the application upload playlist covers and profile images\n     *\n     * **Visible to users**: Upload images to personalize your profile or playlist cover\n     */\n    UgcImageUpload(\"ugc-image-upload\"),\n\n    /**\n     * Write/delete access to the list of artists and other users that the user follows.\n     *\n     * **Visible to users**: Manage who you are following.\n     */\n    UserFollowModify(\"user-follow-modify\"),\n\n    /**\n     * Read access to the list of artists and other users that the user follows.\n     *\n     * **Visible to users**: Access your followers and who you are following.\n     */\n    UserFollowRead(\"user-follow-read\"),\n\n    /**\n     * Read access to a user's \"Your Music\" library.\n     *\n     * **Visible to users**: Access your saved tracks and albums.\n     */\n    UserLibraryRead(\"user-library-read\"),\n\n    /**\n     * Write/delete access to a user's \"Your Music\" library.\n     *\n     * **Visible to users**: Manage your saved tracks and albums.\n     */\n    UserLibraryModify(\"user-library-modify\"),\n\n    /**\n     * Write access to a user’s playback state\n     *\n     * **Visible to users**: Control playback on your Spotify clients and Spotify Connect devices.\n     */\n    UserModifyPlaybackState(\"user-modify-playback-state\"),\n\n    /**\n     * Read access to user’s subscription details (type of user account).\n     *\n     * **Visible to users**: Access your subscription details.\n     */\n    UserReadPrivate(\"user-read-private\"),\n\n    /**\n     * Read access to user’s email address.\n     *\n     * **Visible to users**: Get your real email address.\n     */\n    UserReadEmail(\"user-read-email\"),\n\n    /**\n     * Read access to a user's top artists and tracks.\n     *\n     * **Visible to users**: Read your top artists and tracks.\n     */\n    UserTopRead(\"user-top-read\"),\n\n    /**\n     * Read access to a user’s player state.\n     *\n     * **Visible to users**: Read your currently playing track and Spotify Connect devices information.\n     */\n    UserReadPlaybackState(\"user-read-playback-state\"),\n\n    /**\n     * Read access to a user’s playback position in a content.\n     *\n     * **Visible to users**: Read your position in content you have played.\n     */\n    UserReadPlaybackPosition(\"user-read-playback-position\"),\n\n    /**\n     * Read access to a user’s currently playing track\n     *\n     * **Visible to users**: Read your currently playing track\n     */\n    UserReadCurrentlyPlaying(\"user-read-currently-playing\"),\n\n    /**\n     * Read access to a user’s recently played tracks.\n     *\n     * **Visible to users**: Access your recently played items.\n     */\n    UserReadRecentlyPlayed(\"user-read-recently-played\");\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/annotations/ExperimentalAnnotations.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.annotations\n\n@Retention(AnnotationRetention.BINARY)\n@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY)\npublic annotation class SpotifyExperimentalHttpApi\n\n@Retention(AnnotationRetention.BINARY)\n@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION)\npublic annotation class SpotifyExperimentalFunctionApi\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/client/ClientEpisodeApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.client\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.endpoints.pub.EpisodeApi\nimport com.adamratzman.spotify.models.Episode\nimport com.adamratzman.spotify.models.EpisodeList\nimport com.adamratzman.spotify.models.EpisodeUri\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.encodeUrl\n\n/**\n * Endpoints for retrieving information about one or more episodes from the Spotify catalog.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/episodes/)**\n */\npublic class ClientEpisodeApi(api: GenericSpotifyApi) : EpisodeApi(api) {\n    /**\n     * Get Spotify catalog information for a single episode identified by its unique Spotify ID. The [Market] associated with\n     * the user account will be used.\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/episodes/get-an-episode/)**\n     *\n     * @param id The Spotify ID for the episode.\n     *\n     * @return possibly-null [Episode].\n     */\n    public suspend fun getEpisode(id: String): Episode? {\n        return catch {\n            get(\n                endpointBuilder(\"/episodes/${EpisodeUri(id).id.encodeUrl()}\").toString()\n            ).toObject(Episode.serializer(), api, json)\n        }\n    }\n\n    /**\n     * Get Spotify catalog information for multiple episodes based on their Spotify IDs. The [Market] associated with\n     * the user account will be used.\n     *\n     * **Invalid episode ids will result in a [BadRequestException]\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/episodes/get-several-episodes/)**\n     *\n     * @param ids The id or uri for the episodes. Maximum **50**.\n     *\n     * @return List of possibly-null [Episode] objects.\n     * @throws BadRequestException If any invalid show id is provided\n     */\n    public suspend fun getEpisodes(vararg ids: String): List<Episode?> {\n        requireScopes(SpotifyScope.UserReadPlaybackPosition)\n        checkBulkRequesting(50, ids.size)\n\n        return bulkStatelessRequest(50, ids.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/episodes\")\n                    .with(\"ids\", chunk.joinToString(\",\") { EpisodeUri(it).id.encodeUrl() })\n                    .toString()\n            ).toObject(EpisodeList.serializer(), api, json).episodes\n        }.flatten()\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/client/ClientFollowingApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.client\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.endpoints.pub.FollowingApi\nimport com.adamratzman.spotify.models.Artist\nimport com.adamratzman.spotify.models.ArtistUri\nimport com.adamratzman.spotify.models.CursorBasedPagingObject\nimport com.adamratzman.spotify.models.PlaylistUri\nimport com.adamratzman.spotify.models.UserUri\nimport com.adamratzman.spotify.models.serialization.toCursorBasedPagingObject\nimport com.adamratzman.spotify.models.serialization.toList\nimport com.adamratzman.spotify.utils.encodeUrl\nimport kotlinx.serialization.builtins.ListSerializer\nimport kotlinx.serialization.builtins.serializer\n\n/**\n * These endpoints allow you manage the artists, users and playlists that a Spotify user follows.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/)**\n */\npublic class ClientFollowingApi(api: GenericSpotifyApi) : FollowingApi(api) {\n    /**\n     * Check to see if the current user is following another Spotify user.\n     *\n     * **Requires** the [SpotifyScope.UserFollowRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/check-current-user-follows/)**\n     *\n     * @param user The user id or uri to check.\n     *\n     * @throws BadRequestException if [user] is a non-existing id\n     * @return Whether the current user is following [user]\n     */\n    public suspend fun isFollowingUser(user: String): Boolean {\n        requireScopes(SpotifyScope.UserFollowRead)\n        return isFollowingUsers(user)[0]\n    }\n\n    /**\n     * Check to see if the current Spotify user is following the specified playlist.\n     *\n     * Checking if the user is privately following a playlist is only possible for the current user when\n     * that user has granted access to the [SpotifyScope.PlaylistReadPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/check-user-following-playlist/)**\n     *\n     * @param playlistId playlist id or uri\n     *\n     * @return Boolean representing whether the user follows the playlist\n     *\n     * @throws [BadRequestException] if the playlist is not found\n     * @return Whether the current user is following [playlistId]\n     */\n    public suspend fun isFollowingPlaylist(playlistId: String): Boolean {\n        return isFollowingPlaylist(\n            playlistId,\n            (api as SpotifyClientApi).getUserId()\n        )\n    }\n\n    /**\n     * Check to see if the current user is following one or more other Spotify users.\n     *\n     * **Requires** the [SpotifyScope.UserFollowRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/check-current-user-follows/)**\n     *\n     * @param users List of the user Spotify IDs to check. Max 50\n     *\n     * @throws BadRequestException if [users] contains a non-existing id\n     * @return A list of booleans corresponding to [users] of whether the current user is following that user\n     */\n    public suspend fun isFollowingUsers(vararg users: String): List<Boolean> {\n        requireScopes(SpotifyScope.UserFollowRead)\n        checkBulkRequesting(50, users.size)\n        return bulkStatelessRequest(50, users.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/me/following/contains\").with(\"type\", \"user\")\n                    .with(\"ids\", chunk.joinToString(\",\") { UserUri(it).id.encodeUrl() }).toString()\n            ).toList(ListSerializer(Boolean.serializer()), api, json)\n        }.flatten()\n    }\n\n    /**\n     * Check to see if the current user is following a Spotify artist.\n     *\n     * **Requires** the [SpotifyScope.UserFollowRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/check-current-user-follows/)**\n     *\n     * @param artist The artist id to check.\n     *\n     * @throws BadRequestException if [artist] is a non-existing id\n     * @return Whether the current user is following [artist]\n     */\n    public suspend fun isFollowingArtist(artist: String): Boolean = isFollowingArtists(artist)[0]\n\n    /**\n     * Check to see if the current user is following one or more artists.\n     *\n     * **Requires** the [SpotifyScope.UserFollowRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/check-current-user-follows/)**\n     *\n     * @param artists List of the artist ids or uris to check. Max 50\n     *\n     * @throws BadRequestException if [artists] contains a non-existing id\n     * @return A list of booleans corresponding to [artists] of whether the current user is following that artist\n     */\n    public suspend fun isFollowingArtists(vararg artists: String): List<Boolean> {\n        requireScopes(SpotifyScope.UserFollowRead)\n        checkBulkRequesting(50, artists.size)\n        return bulkStatelessRequest(50, artists.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/me/following/contains\").with(\"type\", \"artist\")\n                    .with(\"ids\", chunk.joinToString(\",\") { ArtistUri(it).id.encodeUrl() }).toString()\n            ).toList(ListSerializer(Boolean.serializer()), api, json)\n        }.flatten()\n    }\n\n    /**\n     * Get the current user’s followed artists.\n     *\n     * **Requires** the [SpotifyScope.UserFollowRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/get-followed/)**\n     *\n     * @param limit The maximum number of items to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param after The last artist ID retrieved from the previous request.\n     *\n     * @return [CursorBasedPagingObject] ([Information about them](https://github.com/adamint/com.adamratzman.spotify-web-api-kotlin/blob/master/README.md#the-benefits-of-linkedresults-pagingobjects-and-cursor-based-paging-objects)\n     * with full [Artist] objects\n     */\n    public suspend fun getFollowedArtists(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        after: String? = null\n    ): CursorBasedPagingObject<Artist> {\n        requireScopes(SpotifyScope.UserFollowRead)\n        return get(\n            endpointBuilder(\"/me/following\").with(\"type\", \"artist\").with(\"limit\", limit).with(\n                \"after\",\n                after\n            ).toString()\n        ).toCursorBasedPagingObject(Artist::class, Artist.serializer(), \"artists\", api, json)\n    }\n\n    /**\n     * Add the current user as a follower of another user\n     *\n     * **Requires** the [SpotifyScope.UserFollowModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/follow-artists-users/)**\n     *\n     * @throws BadRequestException if an invalid id is provided\n     */\n    public suspend fun followUser(user: String): Unit = followUsers(user)\n\n    /**\n     * Add the current user as a follower of other users\n     *\n     * **Requires** the [SpotifyScope.UserFollowModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/follow-artists-users/)**\n     *\n     * @param users User ids or uris. Maximum **50**.\n     *\n     * @throws BadRequestException if an invalid id is provided\n     */\n    public suspend fun followUsers(vararg users: String) {\n        requireScopes(SpotifyScope.UserFollowModify)\n        checkBulkRequesting(50, users.size)\n        bulkStatelessRequest(50, users.toList()) { chunk ->\n            put(\n                endpointBuilder(\"/me/following\").with(\"type\", \"user\")\n                    .with(\"ids\", chunk.joinToString(\",\") { UserUri(it).id.encodeUrl() }).toString()\n            )\n        }\n    }\n\n    /**\n     * Add the current user as a follower of an artist\n     *\n     * **Requires** the [SpotifyScope.UserFollowModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/follow-artists-users/)**\n     *\n     * @throws BadRequestException if an invalid id is provided\n     */\n    public suspend fun followArtist(artistId: String): Unit = followArtists(artistId)\n\n    /**\n     * Add the current user as a follower of other artists\n     *\n     * **Requires** the [SpotifyScope.UserFollowModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/follow-artists-users/)**\n     *\n     * @param artists User ids or uris. Maximum **50**.\n     *\n     * @throws BadRequestException if an invalid id is provided\n     */\n    public suspend fun followArtists(vararg artists: String) {\n        requireScopes(SpotifyScope.UserFollowModify)\n        checkBulkRequesting(50, artists.size)\n        bulkStatelessRequest(50, artists.toList()) { chunk ->\n            put(\n                endpointBuilder(\"/me/following\").with(\"type\", \"artist\")\n                    .with(\"ids\", chunk.joinToString(\",\") { ArtistUri(it).id.encodeUrl() }).toString()\n            )\n        }\n    }\n\n    /**\n     * Add the current user as a follower of a playlist.\n     *\n     * Following a playlist publicly requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * following it privately requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * Note that the scopes you provide determine only whether the current user can themselves follow the playlist\n     * publicly or privately (i.e. show others what they are following), not whether the playlist itself is\n     * public or private.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/follow-playlist/)**\n     *\n     * @param playlist the id or uri of the playlist. Any playlist can be followed, regardless of its\n     * public/private status, as long as you know its playlist ID.\n     * @param followPublicly Defaults to true. If true the playlist will be included in user’s public playlists,\n     * if false it will remain private. To be able to follow playlists privately, the user must have granted the playlist-modify-private scope.\n     *\n     * @throws BadRequestException if the playlist is not found\n     */\n    public suspend fun followPlaylist(playlist: String, followPublicly: Boolean = true): String {\n        requireScopes(SpotifyScope.PlaylistModifyPublic, SpotifyScope.PlaylistModifyPrivate, anyOf = true)\n\n        return put(\n            endpointBuilder(\"/playlists/${PlaylistUri(playlist).id}/followers\").toString(),\n            \"{\\\"public\\\": $followPublicly}\"\n        )\n    }\n\n    /**\n     * Remove the current user as a follower of another user\n     *\n     * **Requires** the [SpotifyScope.UserFollowModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/unfollow-artists-users/)**\n     *\n     * @param user The user to be unfollowed from\n     *\n     * @throws BadRequestException if [user] is not found\n     */\n    public suspend fun unfollowUser(user: String): Unit = unfollowUsers(user)\n\n    /**\n     * Remove the current user as a follower of other users\n     *\n     * **Requires** the [SpotifyScope.UserFollowModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/unfollow-artists-users/)**\n     *\n     * @param users The users to be unfollowed from. Maximum **50**.\n     *\n     * @throws BadRequestException if an invalid id is provided\n     */\n    public suspend fun unfollowUsers(vararg users: String) {\n        requireScopes(SpotifyScope.UserFollowModify)\n        checkBulkRequesting(50, users.size)\n        bulkStatelessRequest(50, users.toList()) { list ->\n            delete(\n                endpointBuilder(\"/me/following\").with(\"type\", \"user\")\n                    .with(\"ids\", list.joinToString(\",\") { UserUri(it).id.encodeUrl() }).toString()\n            )\n        }\n    }\n\n    /**\n     * Remove the current user as a follower of an artist\n     *\n     * **Requires** the [SpotifyScope.UserFollowModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/unfollow-artists-users/)**\n     *\n     * @param artist The artist to be unfollowed from\n     *\n     * @throws BadRequestException if an invalid id is provided\n     */\n    public suspend fun unfollowArtist(artist: String): Unit = unfollowArtists(artist)\n\n    /**\n     * Remove the current user as a follower of artists\n     *\n     * **Requires** the [SpotifyScope.UserFollowModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/unfollow-artists-users/)**\n     *\n     * @param artists The artists to be unfollowed from. Maximum **50**.\n     *\n     *\n     * @throws BadRequestException if an invalid id is provided\n     */\n    public suspend fun unfollowArtists(vararg artists: String) {\n        requireScopes(SpotifyScope.UserFollowModify)\n        checkBulkRequesting(50, artists.size)\n        bulkStatelessRequest(50, artists.toList()) { list ->\n            delete(\n                endpointBuilder(\"/me/following\").with(\"type\", \"artist\")\n                    .with(\"ids\", list.joinToString(\",\") { ArtistUri(it).id.encodeUrl() }).toString()\n            )\n        }\n    }\n\n    /**\n     * Remove the current user as a follower of a playlist.\n     *\n     * Unfollowing a publicly followed playlist for a user requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * unfollowing a privately followed playlist requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * Note that the scopes you provide relate only to whether the current user is following the playlist publicly or\n     * privately (i.e. showing others what they are following), not whether the playlist itself is public or private.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/unfollow-playlist/)**\n     *\n     * @param playlist The id or uri of the playlist that is to be no longer followed.\n     *\n     * @throws BadRequestException if the playlist is not found\n     */\n    public suspend fun unfollowPlaylist(playlist: String): String {\n        requireScopes(SpotifyScope.PlaylistModifyPublic, SpotifyScope.PlaylistModifyPrivate, anyOf = true)\n\n        return delete(endpointBuilder(\"/playlists/${PlaylistUri(playlist).id}/followers\").toString())\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/client/ClientLibraryApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.client\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.AlbumUri\nimport com.adamratzman.spotify.models.EpisodeUri\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.PlayableUri\nimport com.adamratzman.spotify.models.SavedAlbum\nimport com.adamratzman.spotify.models.SavedEpisode\nimport com.adamratzman.spotify.models.SavedShow\nimport com.adamratzman.spotify.models.SavedTrack\nimport com.adamratzman.spotify.models.ShowUri\nimport com.adamratzman.spotify.models.serialization.toList\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.getSpotifyId\nimport kotlinx.serialization.builtins.ListSerializer\nimport kotlinx.serialization.builtins.serializer\n\n/**\n * Endpoints for retrieving information about, and managing, tracks and albums that the current user has saved in their “Your Music” library.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/)**\n */\npublic class ClientLibraryApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get a list of the songs saved in the current Spotify user’s ‘Your Music’ library.\n     *\n     * **Requires** the [SpotifyScope.UserLibraryRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/get-users-saved-tracks/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     *\n     * @return [PagingObject] of [SavedTrack] ordered by position in library\n     */\n    public suspend fun getSavedTracks(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null\n    ): PagingObject<SavedTrack> {\n        requireScopes(SpotifyScope.UserLibraryRead)\n\n        return get(\n            endpointBuilder(\"/me/tracks\").with(\"limit\", limit).with(\"offset\", offset).with(\"market\", market?.getSpotifyId())\n                .toString()\n        ).toNonNullablePagingObject(SavedTrack.serializer(), api = api, json = json)\n    }\n\n    /**\n     * Get a list of the albums saved in the current Spotify user’s ‘Your Music’ library.\n     *\n     * **Requires** the [SpotifyScope.UserLibraryRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/get-users-saved-albums/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     *\n     * @return Paging Object of [SavedAlbum] ordered by position in library\n     */\n    public suspend fun getSavedAlbums(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null\n    ): PagingObject<SavedAlbum> {\n        requireScopes(SpotifyScope.UserLibraryRead)\n\n        return get(\n            endpointBuilder(\"/me/albums\").with(\"limit\", limit).with(\"offset\", offset).with(\"market\", market?.getSpotifyId())\n                .toString()\n        ).toNonNullablePagingObject(SavedAlbum.serializer(), api = api, json = json)\n    }\n\n    /**\n     * Get a list of shows saved in the current Spotify user’s library.\n     * Optional parameters can be used to limit the number of shows returned.\n     *\n     * **Requires** the [SpotifyScope.UserLibraryRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/get-users-saved-albums/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @return Paging Object of [SavedShow] ordered by position in library\n     */\n    public suspend fun getSavedShows(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null\n    ): PagingObject<SavedShow> {\n        requireScopes(SpotifyScope.UserLibraryRead)\n\n        return get(\n            endpointBuilder(\"/me/shows\").with(\"limit\", limit).with(\"offset\", offset).toString()\n        ).toNonNullablePagingObject(SavedShow.serializer(), api = api, json = json)\n    }\n\n    /**\n     * Get a list of the episodes saved in the current Spotify user’s library.\n     * This API endpoint is in beta and could change without warning.\n     *\n     * **Requires** the [SpotifyScope.UserLibraryRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/get-users-saved-albums/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     *\n     * @return Paging Object of [SavedEpisode] ordered by position in library\n     */\n    public suspend fun getSavedEpisodes(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null\n    ): PagingObject<SavedEpisode> {\n        requireScopes(SpotifyScope.UserLibraryRead)\n\n        return get(\n            endpointBuilder(\"/me/episodes\").with(\"limit\", limit).with(\"offset\", offset).with(\"market\", market)\n                .toString()\n        ).toNonNullablePagingObject(SavedEpisode.serializer(), api = api, json = json)\n    }\n\n    /**\n     * Check if the [LibraryType] with id [id] is already saved in the current Spotify user’s ‘Your Music’ library.\n     *\n     * **Requires** the [SpotifyScope.UserLibraryRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/)**\n     *\n     * @param type The type of object (album or track)\n     * @param id The id or uri of the object\n     *\n     * @throws BadRequestException if [id] is not found\n     */\n    public suspend fun contains(type: LibraryType, id: String): Boolean = contains(type, ids = arrayOf(id))[0]\n\n    /**\n     * Check if one or more of [LibraryType] is already saved in the current Spotify user’s ‘Your Music’ library.\n     *\n     * **Requires** the [SpotifyScope.UserLibraryRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/)**\n     *\n     * @param type The type of objects (album or track)\n     * @param ids The ids or uris of the objects. Maximum **50** ids.\n     *\n     * @throws BadRequestException if any of the provided ids is invalid\n     */\n    public suspend fun contains(type: LibraryType, vararg ids: String): List<Boolean> {\n        requireScopes(SpotifyScope.UserLibraryRead)\n\n        if (ids.size > 50 && !api.spotifyApiOptions.allowBulkRequests) {\n            throw BadRequestException(\n                \"Too many ids (${ids.size}) provided, only 50 allowed\",\n                IllegalArgumentException(\"Bulk requests are not turned on, and too many ids were provided\")\n            )\n        }\n        return ids.toList().chunked(50).map { list ->\n            get(\n                endpointBuilder(\"/me/$type/contains\").with(\"ids\", list.joinToString(\",\") { type.id(it).encodeUrl() })\n                    .toString()\n            ).toList(ListSerializer(Boolean.serializer()), api, json)\n        }.flatten()\n    }\n\n    /**\n     * Save one of [LibraryType] to the current user’s ‘Your Music’ library.\n     *\n     * **Requires** the [SpotifyScope.UserLibraryModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/)**\n     *\n     * @param type The type of object (album or track)\n     * @param id The id or uri of the object\n     *\n     * @throws BadRequestException if the id is invalid\n     */\n    public suspend fun add(type: LibraryType, id: String): Unit = add(type, ids = arrayOf(id))\n\n    /**\n     * Save one or more of [LibraryType] to the current user’s ‘Your Music’ library.\n     *\n     * **Requires** the [SpotifyScope.UserLibraryModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/)**\n     *\n     * @param type The type of objects to check against (album or track)\n     * @param ids The ids or uris of the objects. Maximum **50** ids.\n     *\n     * @throws BadRequestException if any of the provided ids is invalid\n     */\n    public suspend fun add(type: LibraryType, vararg ids: String) {\n        requireScopes(SpotifyScope.UserLibraryModify)\n\n        if (ids.size > 50 && !api.spotifyApiOptions.allowBulkRequests) {\n            throw BadRequestException(\n                \"Too many ids (${ids.size}) provided, only 50 allowed\",\n                IllegalArgumentException(\"Bulk requests are not turned on, and too many ids were provided\")\n            )\n        }\n        ids.toList().chunked(50).forEach { list ->\n            put(endpointBuilder(\"/me/$type\").with(\"ids\", list.joinToString(\",\") { type.id(it).encodeUrl() }).toString())\n        }\n    }\n\n    /**\n     * Remove one of [LibraryType] (track or album) from the current user’s ‘Your Music’ library.\n     *\n     * Changes to a user’s saved items may not be visible in other Spotify applications immediately.\n     *\n     * **Requires** the [SpotifyScope.UserLibraryModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/)**\n     *\n     * @param type The type of object to check against (album or track)\n     * @param id The id or uri of the object\n     *\n     * @throws BadRequestException if any of the provided ids is invalid\n     */\n    public suspend fun remove(type: LibraryType, id: String): Unit = remove(type, ids = arrayOf(id))\n\n    /**\n     * Remove one or more of the [LibraryType] (tracks or albums) from the current user’s ‘Your Music’ library.\n     *\n     * Changes to a user’s saved items may not be visible in other Spotify applications immediately.\n\n     * **Requires** the [SpotifyScope.UserLibraryModify] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/library/)**\n     *\n     * @param type The type of objects to check against (album or track)\n     * @param ids The ids or uris of the objects. Maximum **50** ids.\n     *\n     * @throws BadRequestException if any of the provided ids is invalid\n     */\n    public suspend fun remove(type: LibraryType, vararg ids: String) {\n        requireScopes(SpotifyScope.UserLibraryModify)\n\n        if (ids.size > 50 && !api.spotifyApiOptions.allowBulkRequests) {\n            throw BadRequestException(\n                \"Too many ids (${ids.size}) provided, only 50 allowed\",\n                IllegalArgumentException(\"Bulk requests are not turned on, and too many ids were provided\")\n            )\n        }\n        ids.toList().chunked(50).forEach { list ->\n            delete(\n                endpointBuilder(\"/me/$type\").with(\n                    \"ids\",\n                    list.joinToString(\",\") { type.id(it).encodeUrl() }\n                ).toString()\n            )\n        }\n    }\n}\n\n/**\n * Type of object in a user's Spotify library\n *\n * @param value Spotify id for the type\n * @param id How to transform an id (or uri) input into its Spotify id\n */\npublic enum class LibraryType(private val value: String, internal val id: (String) -> String) {\n    Track(\"tracks\", { PlayableUri(it).id }),\n    Album(\"albums\", { AlbumUri(it).id }),\n    Episode(\"episodes\", { EpisodeUri(it).id }),\n    Show(\"shows\", { ShowUri(it).id });\n\n    override fun toString(): String = value\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/client/ClientPersonalizationApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.client\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.Artist\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.Track\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\n\n/**\n * Endpoints for retrieving information about the user’s listening habits.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/personalization/)**\n */\npublic class ClientPersonalizationApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * The time frame for which attribute affinities are computed.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/personalization/get-users-top-artists-and-tracks/)**\n     *\n     * @param id the Spotify id of the time frame\n     */\n    public enum class TimeRange(public val id: String) {\n        /**\n         * Calculated from several years of data and including all new data as it becomes available\n         */\n        LongTerm(\"long_term\"),\n\n        /**\n         * Approximately last 6 months\n         */\n        MediumTerm(\"medium_term\"),\n\n        /**\n         * Approximately last 4 weeks\n         */\n        ShortTerm(\"short_term\");\n\n        override fun toString(): String = id\n    }\n\n    /**\n     * Get the current user’s top artists based on calculated affinity.\n     *\n     * Affinity is a measure of the expected preference a user has for a particular track or artist.  It is based on user\n     * behavior, including play history, but does not include actions made while in incognito mode. Light or infrequent\n     * users of Spotify may not have sufficient play history to generate a full affinity data set. As a user’s behavior\n     * is likely to shift over time, this preference data is available over three time spans. See time_range in the\n     * query parameter table for more information. For each time range, the top 50 tracks and artists are available\n     * for each user. In the future, it is likely that this restriction will be relaxed. This data is typically updated\n     * once each day for each user.\n     *\n     * **Requires** the [SpotifyScope.UserTopRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/personalization/get-users-top-artists-and-tracks/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param timeRange The time range to which to compute this. The default is [TimeRange.MediumTerm]\n     *\n     * @return [PagingObject] of full [Artist] objects sorted by affinity\n     */\n    public suspend fun getTopArtists(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        timeRange: TimeRange? = null\n    ): PagingObject<Artist> {\n        requireScopes(SpotifyScope.UserTopRead)\n\n        return get(\n            endpointBuilder(\"/me/top/artists\").with(\"limit\", limit).with(\"offset\", offset)\n                .with(\"time_range\", timeRange).toString()\n        ).toNonNullablePagingObject(Artist.serializer(), api = api, json = json)\n    }\n\n    /**\n     * Get the current user’s top tracks based on calculated affinity.\n     *\n     * Affinity is a measure of the expected preference a user has for a particular track or artist.  It is based on user\n     * behavior, including play history, but does not include actions made while in incognito mode. Light or infrequent\n     * users of Spotify may not have sufficient play history to generate a full affinity data set. As a user’s behavior\n     * is likely to shift over time, this preference data is available over three time spans. See time_range in the\n     * query parameter table for more information. For each time range, the top 50 tracks and artists are available\n     * for each user. In the future, it is likely that this restriction will be relaxed. This data is typically updated\n     * once each day for each user.\n     *\n     * **Requires** the [SpotifyScope.UserTopRead] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/personalization/get-users-top-artists-and-tracks/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param timeRange The time range to which to compute this. The default is [TimeRange.MediumTerm]\n     *\n     * @return [PagingObject] of full [Track] objects sorted by affinity\n     */\n    public suspend fun getTopTracks(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        timeRange: TimeRange? = null\n    ): PagingObject<Track> {\n        requireScopes(SpotifyScope.UserTopRead)\n\n        return get(\n            endpointBuilder(\"/me/top/tracks\").with(\"limit\", limit).with(\"offset\", offset)\n                .with(\"time_range\", timeRange).toString()\n        ).toNonNullablePagingObject(Track.serializer(), api = api, json = json)\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/client/ClientPlayerApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.client\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyAppApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.ContextUri\nimport com.adamratzman.spotify.models.CurrentUserQueue\nimport com.adamratzman.spotify.models.CurrentlyPlayingContext\nimport com.adamratzman.spotify.models.CurrentlyPlayingObject\nimport com.adamratzman.spotify.models.CurrentlyPlayingType\nimport com.adamratzman.spotify.models.CursorBasedPagingObject\nimport com.adamratzman.spotify.models.Device\nimport com.adamratzman.spotify.models.PlayHistory\nimport com.adamratzman.spotify.models.PlayableUri\nimport com.adamratzman.spotify.models.ResultEnum\nimport com.adamratzman.spotify.models.serialization.mapToJsonString\nimport com.adamratzman.spotify.models.serialization.toCursorBasedPagingObject\nimport com.adamratzman.spotify.models.serialization.toInnerObject\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.models.toAlbumUri\nimport com.adamratzman.spotify.models.toArtistUri\nimport com.adamratzman.spotify.models.toEpisodeUri\nimport com.adamratzman.spotify.models.toLocalTrackUri\nimport com.adamratzman.spotify.models.toPlaylistUri\nimport com.adamratzman.spotify.models.toShowUri\nimport com.adamratzman.spotify.models.toTrackUri\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.getSpotifyId\nimport com.adamratzman.spotify.utils.jsonMap\nimport kotlinx.serialization.builtins.ListSerializer\nimport kotlinx.serialization.json.JsonArray\nimport kotlinx.serialization.json.JsonPrimitive\nimport kotlinx.serialization.json.buildJsonObject\nimport kotlinx.serialization.json.put\n\n/**\n * These endpoints allow for viewing and controlling user playback. Please view [the official documentation](https://developer.spotify.com/web-api/working-with-connect/)\n * for more information on how this works. This is in beta and is available for **premium users only**. Endpoints are **not** guaranteed to work and are subject to change!\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/)**\n */\npublic class ClientPlayerApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get information about a user’s available devices.\n     *\n     * **Requires** the [SpotifyScope.UserReadPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/get-a-users-available-devices/)**\n     */\n    public suspend fun getDevices(): List<Device> {\n        requireScopes(SpotifyScope.UserReadPlaybackState)\n\n        return get(endpointBuilder(\"/me/player/devices\").toString()).toInnerObject(\n            ListSerializer(Device.serializer()),\n            \"devices\",\n            json\n        )\n    }\n\n    /**\n     * Get information about the user’s current playback state, including track, track progress, and active device.\n     *\n     * **Requires** the [SpotifyScope.UserReadPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/get-information-about-the-users-current-playback/)**\n     *\n     * @param additionalTypes A list of types to return in addition to [CurrentlyPlayingType.Track]. Ad type not allowed.\n     * @param market If a country code is specified, only shows and episodes that are available in that market will be returned.\n     * If a valid user access token is specified in the request header, the country associated with the user account will take priority over this parameter.\n     * Note: If neither market or user country are provided, the content is considered unavailable for the client.\n     * Users can view the country that is associated with their account in the account settings. Required for [SpotifyAppApi], but **you may use [Market.FROM_TOKEN] to get the user market**\n     */\n    public suspend fun getCurrentContext(\n        additionalTypes: List<CurrentlyPlayingType> = listOf(\n            CurrentlyPlayingType.Track,\n            CurrentlyPlayingType.Episode\n        ),\n        market: Market? = null\n    ): CurrentlyPlayingContext? {\n        requireScopes(SpotifyScope.UserReadPlaybackState)\n\n        val obj = catch {\n            getNullable(\n                endpointBuilder(\"/me/player\")\n                    .with(\"additional_types\", additionalTypes.joinToString(\",\") { it.identifier })\n                    .with(\"market\", market?.getSpotifyId())\n                    .toString()\n            )?.toObject(CurrentlyPlayingContext.serializer(), api, json)\n        }\n        return if (obj?.timestamp == null) null else obj\n    }\n\n    /**\n     * Get the list of objects that make up the user's queue.\n     *\n     * **Requires** the [SpotifyScope.UserReadCurrentlyPlaying] scope\n     *\n     * Note that queue length may, in some cases, contain tracks that will play after the user-specified queue.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-queue)**\n     */\n    public suspend fun getUserQueue(): CurrentUserQueue {\n        return get(\n            endpointBuilder(\"/me/player/queue\").toString()\n        ).toObject(CurrentUserQueue.serializer(), api = api, json = json)\n    }\n\n    /**\n     * Get tracks from the current user’s recently played tracks. Note: Currently doesn't support podcast episodes.\n     *\n     * **Requires** the [SpotifyScope.UserReadRecentlyPlayed] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/get-recently-played/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param before The timestamp (retrieved via cursor) **not including**, but before which, tracks will have been played. This can be combined with [limit]\n     * @param after The timestamp (retrieved via cursor) **not including**, after which, the retrieval starts. This can be combined with [limit]\n     *\n     */\n    public suspend fun getRecentlyPlayed(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        before: String? = null,\n        after: String? = null\n    ): CursorBasedPagingObject<PlayHistory> {\n        requireScopes(SpotifyScope.UserReadRecentlyPlayed)\n\n        return get(\n            endpointBuilder(\"/me/player/recently-played\")\n                .with(\"limit\", limit).with(\"before\", before).with(\"after\", after).toString()\n        ).toCursorBasedPagingObject(PlayHistory::class, PlayHistory.serializer(), api = api, json = json)\n    }\n\n    /**\n     * Get the object currently being played on the user’s Spotify account.\n     *\n     * **Requires** *either* the [SpotifyScope.UserReadPlaybackState] or [SpotifyScope.UserReadCurrentlyPlaying] scopes\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/get-the-users-currently-playing-track/)**\n     *\n     * @param additionalTypes A list of types to return in addition to [CurrentlyPlayingType.Track]. Ad type not allowed.\n     * @param market If a country code is specified, only shows and episodes that are available in that market will be returned.\n     * If a valid user access token is specified in the request header, the country associated with the user account will take priority over this parameter.\n     * Note: If neither market or user country are provided, the content is considered unavailable for the client.\n     * Users can view the country that is associated with their account in the account settings. Required for [SpotifyAppApi], but **you may use [Market.FROM_TOKEN] to get the user market**\n     */\n    public suspend fun getCurrentlyPlaying(\n        additionalTypes: List<CurrentlyPlayingType> = listOf(\n            CurrentlyPlayingType.Track,\n            CurrentlyPlayingType.Episode\n        ),\n        market: Market? = null\n    ): CurrentlyPlayingObject? {\n        requireScopes(SpotifyScope.UserReadPlaybackState, SpotifyScope.UserReadCurrentlyPlaying, anyOf = true)\n\n        return try {\n            val obj =\n                catch {\n                    getNullable(\n                        endpointBuilder(\"/me/player/currently-playing\")\n                            .with(\"additional_types\", additionalTypes.joinToString(\",\") { it.identifier })\n                            .with(\"market\", market?.getSpotifyId())\n                            .toString()\n                    )\n                }?.toObject(CurrentlyPlayingObject.serializer(), api, json)\n            if (obj?.timestamp == null) null else obj\n        } catch (pe: SpotifyException.ParseException) {\n            pe.printStackTrace()\n            null\n        }\n    }\n\n    /**\n     * Pause playback on the user’s account.\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/pause-a-users-playback/)**\n     *\n     * @param deviceId The device to play on\n     */\n    public suspend fun pause(deviceId: String? = null) {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n\n        put(endpointBuilder(\"/me/player/pause\").with(\"device_id\", deviceId).toString())\n    }\n\n    /**\n     * Seeks to the given position in the user’s currently playing track.\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/seek-to-position-in-currently-playing-track/)**\n     *\n     * @param positionMs The position in milliseconds to seek to. Must be a positive number. Passing in a position\n     * that is greater than the length of the track will cause the player to start playing the next song.\n     * @param deviceId The device to play on\n     */\n    public suspend fun seek(positionMs: Long, deviceId: String? = null) {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n        require(positionMs >= 0) { \"Position must not be negative!\" }\n        put(\n            endpointBuilder(\"/me/player/seek\").with(\"position_ms\", positionMs).with(\n                \"device_id\",\n                deviceId\n            ).toString()\n        )\n    }\n\n    /**\n     * Set the repeat mode for the user’s playback. Options are [PlayerRepeatState.Track], [PlayerRepeatState.Context], and [PlayerRepeatState.Off].\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/set-repeat-mode-on-users-playback/)**\n     *\n     * @param state mode to describe how to repeat in the current context\n     * @param deviceId The device to play on\n     */\n    public suspend fun setRepeatMode(state: PlayerRepeatState, deviceId: String? = null) {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n        put(\n            endpointBuilder(\"/me/player/repeat\").with(\"state\", state.toString().lowercase()).with(\n                \"device_id\",\n                deviceId\n            ).toString()\n        )\n    }\n\n    /**\n     * Set the volume for the user’s current playback device.\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/set-volume-for-users-playback/)**\n     *\n     * @param volumePercent The volume to set. Must be a value from 0 to 100 inclusive.\n     * @param deviceId The device to play on\n     */\n    public suspend fun setVolume(volumePercent: Int, deviceId: String? = null) {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n        require(volumePercent in 0..100) { \"Volume must be within 0 to 100 inclusive. Provided: $volumePercent\" }\n        put(\n            endpointBuilder(\"/me/player/volume\").with(\"volume_percent\", volumePercent).with(\n                \"device_id\",\n                deviceId\n            ).toString()\n        )\n    }\n\n    /**\n     * Skips to the next track in the user’s queue.\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/skip-users-playback-to-next-track/)**\n     *\n     * @param deviceId The device to play on\n     */\n    public suspend fun skipForward(deviceId: String? = null): String {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n\n        return post(endpointBuilder(\"/me/player/next\").with(\"device_id\", deviceId).toString())\n    }\n\n    /**\n     * Skips to previous track in the user’s queue.\n     *\n     * Note that this will ALWAYS skip to the previous track, regardless of the current track’s progress.\n     * Returning to the start of the current track should be performed using [seek]\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/skip-users-playback-to-previous-track/)**\n     *\n     * @param deviceId The device to play on\n     */\n    public suspend fun skipBehind(deviceId: String? = null): String {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n\n        return post(endpointBuilder(\"/me/player/previous\").with(\"device_id\", deviceId).toString())\n    }\n\n    /**\n     * Start or resume playback.\n     *\n     * **Note:** You can only use one of the following: [offsetIndex], [offsetLocalTrackId], [offsetTrackId], [offsetEpisodeId]\n     *\n     * **Specify nothing to play to simply resume playback**\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/start-a-users-playback/)**\n     *\n     * @param artistId Start playing an artist\n     * @param playlistId Start playing a playlist\n     * @param albumId Start playing an album\n     * @param artistId Start playing an artist\n     *\n     * @param offsetLocalTrackId Start playing at a local track in the given/current context\n     * @param offsetTrackId Start playing at a track in the given/current context\n     * @param offsetEpisodeId Start playing at an episode in the given/current context\n     *\n     * @param offsetIndex Indicates from where in the given/current context playback should start. Zero-based indexing.\n     *\n     * @param localTrackIdsToPlay A list of local track ids to play. Max 100 combined between [localTrackIdsToPlay], [trackIdsToPlay], and [episodeIdsToPlay]\n     * @param trackIdsToPlay A list of track ids to play. Max 100 combined between [localTrackIdsToPlay], [trackIdsToPlay], and [episodeIdsToPlay]\n     * @param episodeIdsToPlay A list of episode ids to play. Max 100 combined between [localTrackIdsToPlay], [trackIdsToPlay], and [episodeIdsToPlay]\n     *\n     * @param deviceId The device to play on\n     *\n     * @throws BadRequestException if more than one type of play type is specified or the offset is illegal.\n     */\n    public suspend fun startPlayback(\n        // context uris\n        artistId: String? = null,\n        playlistId: String? = null,\n        albumId: String? = null,\n        showId: String? = null,\n        // offset playables\n        offsetLocalTrackId: String? = null,\n        offsetTrackId: String? = null,\n        offsetEpisodeId: String? = null,\n        // offset num\n        offsetIndex: Int? = null,\n        // ids of playables to play\n        trackIdsToPlay: List<String>? = null,\n        localTrackIdsToPlay: List<String>? = null,\n        episodeIdsToPlay: List<String>? = null,\n        deviceId: String? = null\n    ) {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n\n        if (listOfNotNull(artistId, playlistId, albumId, showId).size > 1) {\n            throw IllegalArgumentException(\"Only one of: artistId, playlistId, albumId, showId can be specified.\")\n        }\n        val contextUri =\n            artistId?.toArtistUri() ?: playlistId?.toPlaylistUri() ?: albumId?.toAlbumUri() ?: showId?.toShowUri()\n\n        if (listOfNotNull(offsetLocalTrackId, offsetTrackId, offsetEpisodeId, offsetIndex).size > 1) {\n            throw IllegalArgumentException(\"Only one of: offsetXXId or offsetIndex can be specified.\")\n        }\n\n        val offsetPlayableUri =\n            offsetLocalTrackId?.toLocalTrackUri() ?: offsetTrackId?.toTrackUri() ?: offsetEpisodeId?.toEpisodeUri()\n        val playableUrisToPlay =\n            localTrackIdsToPlay?.map { it.toLocalTrackUri() } ?: trackIdsToPlay?.map { it.toTrackUri() }\n                ?: episodeIdsToPlay?.map { it.toEpisodeUri() }\n\n        startPlayback(\n            contextUri,\n            offsetIndex,\n            offsetPlayableUri,\n            playableUrisToPlay,\n            deviceId\n        )\n    }\n\n    /**\n     * Start or resume playback.\n     *\n     * **Note:** You can only use one of the following: [offsetIndex], [offsetPlayableUri]\n     *\n     * **Specify nothing to play to simply resume playback**\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/start-a-users-playback/)**\n     *\n     * @param contextUri Start playing an album, artist, show, or playlist\n     * @param playableUrisToPlay [PlayableUri] (Track, Local track, or Episode URIs) uris to play. these are converted into URIs. Max 100\n     * @param offsetIndex Indicates from where in the given/current context playback should start. Only available when [playableUrisToPlay] is used.\n     * @param offsetPlayableUri Start playing at a track/local track/episode uri in the given/current context instead of index ([offsetIndex])\n     * @param deviceId The device to play on\n     *\n     * @throws BadRequestException if more than one type of play type is specified or the offset is illegal.\n     */\n    public suspend fun startPlayback(\n        contextUri: ContextUri? = null,\n        offsetIndex: Int? = null,\n        offsetPlayableUri: PlayableUri? = null,\n        playableUrisToPlay: List<PlayableUri>? = null,\n        deviceId: String? = null\n    ) {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n\n        val url = endpointBuilder(\"/me/player/play\").with(\"device_id\", deviceId).toString()\n        val body = jsonMap()\n        when {\n            contextUri != null -> body += buildJsonObject { put(\"context_uri\", contextUri.uri) }\n            playableUrisToPlay?.isNotEmpty() == true -> body += buildJsonObject {\n                put(\n                    \"uris\",\n                    JsonArray(\n                        playableUrisToPlay.map { it.uri }.map(::JsonPrimitive)\n                    )\n                )\n            }\n        }\n        if (body.keys.isNotEmpty()) {\n            if (offsetIndex != null) {\n                body += buildJsonObject {\n                    put(\n                        \"offset\",\n                        buildJsonObject { put(\"position\", offsetIndex) }\n                    )\n                }\n            } else if (offsetPlayableUri != null) {\n                body += buildJsonObject {\n                    put(\"offset\", buildJsonObject { put(\"uri\", offsetPlayableUri.uri) })\n                }\n            }\n            put(url, body.mapToJsonString())\n        } else {\n            put(url)\n        }\n    }\n\n    /**\n     * Resumes playback on the current device, if [deviceId] is not specified.\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/start-a-users-playback/)**\n     *\n     * @param deviceId The device to play on\n     */\n    public suspend fun resume(deviceId: String? = null): Unit = startPlayback(deviceId = deviceId)\n\n    /**\n     * Toggle shuffle on or off for user’s playback.\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/toggle-shuffle-for-users-playback/)**\n     *\n     * @param deviceId The device to play on\n     * @param shuffle Whether to enable shuffling of playback\n     */\n    public suspend fun toggleShuffle(shuffle: Boolean, deviceId: String? = null): String {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n\n        return put(endpointBuilder(\"/me/player/shuffle\").with(\"state\", shuffle).with(\"device_id\", deviceId).toString())\n    }\n\n    /**\n     * Transfer playback to a new device and determine if it should start playing.\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/transfer-a-users-playback/)**\n     *\n     * @param deviceId The device to play on\n     * @param play Whether to immediately start playback on the transferred device\n     */\n    public suspend fun transferPlayback(deviceId: String, play: Boolean? = null) {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n        //    require(deviceId.size <= 1) { \"Although an array is accepted, only a single device_id is currently supported. Supplying more than one will  400 Bad Request\" }\n        val json = jsonMap()\n        play?.let { json += buildJsonObject { put(\"play\", it) } }\n        json += buildJsonObject { put(\"device_ids\", JsonArray(listOf(deviceId).map(::JsonPrimitive))) }\n        put(endpointBuilder(\"/me/player\").toString(), json.mapToJsonString())\n    }\n\n    /**\n     * Add an item to the end of the user’s current playback queue.\n     * Please note that all items in the queue will be played before resuming the current playlist/album playing, if there is one.\n     *\n     * This method is provided **AS-IS** until Spotify\n     * exposes device queue. Please consider managing the player queue within your application.\n     *\n     * **Requires** the [SpotifyScope.UserModifyPlaybackState] scope\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/#endpoint-add-to-queue)**\n     *\n     * @param uri The uri of the item to add to the queue. Must be a track or an episode uri.\n     * @param deviceId The device to play on.\n     */\n    public suspend fun addItemToEndOfQueue(uri: PlayableUri, deviceId: String? = null) {\n        requireScopes(SpotifyScope.UserModifyPlaybackState)\n\n        post(endpointBuilder(\"/me/player/queue\").with(\"uri\", uri.uri).with(\"device_id\", deviceId).toString())\n    }\n\n    /**\n     * What state the player can repeat in.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/player/set-repeat-mode-on-users-playback/)**\n     */\n    public enum class PlayerRepeatState(public val identifier: String) : ResultEnum {\n        /**\n         * Repeat the current track\n         */\n        Track(\"track\"),\n\n        /**\n         * Repeat the current context\n         */\n        Context(\"context\"),\n\n        /**\n         * Will turn repeat off\n         */\n        Off(\"off\");\n\n        override fun retrieveIdentifier(): String = identifier\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/client/ClientPlaylistApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.client\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.endpoints.pub.PlaylistApi\nimport com.adamratzman.spotify.models.ErrorObject\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.PlayableUri\nimport com.adamratzman.spotify.models.Playlist\nimport com.adamratzman.spotify.models.PlaylistUri\nimport com.adamratzman.spotify.models.SimplePlaylist\nimport com.adamratzman.spotify.models.UserUri\nimport com.adamratzman.spotify.models.serialization.mapToJsonString\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.BufferedImage\nimport com.adamratzman.spotify.utils.convertBufferedImageToBase64JpegString\nimport com.adamratzman.spotify.utils.convertFileToBufferedImage\nimport com.adamratzman.spotify.utils.convertLocalImagePathToBufferedImage\nimport com.adamratzman.spotify.utils.convertUrlPathToBufferedImage\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.jsonMap\nimport com.soywiz.korio.file.VfsFile\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\nimport kotlinx.serialization.json.JsonArray\nimport kotlinx.serialization.json.JsonObject\nimport kotlinx.serialization.json.JsonPrimitive\nimport kotlinx.serialization.json.buildJsonObject\nimport kotlinx.serialization.json.put\n\n/**\n * Endpoints for retrieving information about a user’s playlists and for managing a user’s playlists.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/)**\n */\npublic class ClientPlaylistApi(api: GenericSpotifyApi) : PlaylistApi(api) {\n    /**\n     * Create a playlist for a Spotify user. (The playlist will be empty until you add playables.)\n     *\n     * Creating a public playlist for a user requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * creating a private playlist requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/create-playlist/)**\n     *\n     * @param user The user’s Spotify user ID.\n     * @param name The name for the new playlist, for example \"Your Coolest Playlist\" . This name does not need to be\n     * unique; a user may have several playlists with the same name.\n     * @param description\n     * @param public Defaults to true . If true the playlist will be public, if false it will be private.\n     * To be able to create private playlists, the user must have granted the playlist-modify-private scope.\n     * @param collaborative Defaults to false . If true the playlist will be collaborative. Note that to create a\n     * collaborative playlist you must also set public to false . To create collaborative playlists you must have\n     * granted [SpotifyScope.PlaylistModifyPrivate] and [SpotifyScope.PlaylistModifyPublic] scopes.\n     *\n     * @return The created [Playlist] object with no playables\n     */\n    public suspend fun createClientPlaylist(\n        name: String,\n        description: String? = null,\n        public: Boolean? = null,\n        collaborative: Boolean? = null,\n        user: String? = null\n    ): Playlist {\n        if (public == null || public) {\n            requireScopes(SpotifyScope.PlaylistModifyPublic)\n        } else if (collaborative == null || !collaborative) {\n            requireScopes(SpotifyScope.PlaylistModifyPrivate)\n        } else if (collaborative) requireScopes(SpotifyScope.PlaylistModifyPublic, SpotifyScope.PlaylistModifyPrivate)\n\n        if (name.isEmpty()) throw BadRequestException(ErrorObject(400, \"Name cannot be empty\"))\n        val body = jsonMap()\n        body += buildJsonObject { put(\"name\", name) }\n        if (description != null) body += buildJsonObject { put(\"description\", description) }\n        if (public != null) body += buildJsonObject { put(\"public\", public) }\n        if (collaborative != null) body += buildJsonObject { put(\"collaborative\", collaborative) }\n\n        return post(\n            endpointBuilder(\"/users/${UserUri(user ?: (api as SpotifyClientApi).getUserId()).id.encodeUrl()}/playlists\").toString(),\n            body.mapToJsonString()\n        ).toObject(Playlist.serializer(), api, json)\n    }\n\n    /**\n     * Add a [Playable] to a user’s playlist.\n     *\n     * Adding playables to the current user’s public playlists requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * adding playables to the current user’s private playlist (including collaborative playlists) requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/add-tracks-to-playlist/)**\n     *\n     * @param playlist The id or uri for the playlist.\n     * @param playable Playable uri\n     * @param position The position to insert the playables, a zero-based index. For example, to insert the playables in the\n     * first position: position=0; to insert the playables in the third position: position=2. If omitted, the playables will\n     * be appended to the playlist. Playables are added in the order they are listed in the query string or request body.\n     *\n     * @throws BadRequestException if any invalid playable ids is provided or the playlist is not found\n     */\n    public suspend fun addPlayableToClientPlaylist(\n        playlist: String,\n        playable: PlayableUri,\n        position: Int? = null\n    ): Unit =\n        addPlayablesToClientPlaylist(playlist, playable, position = position)\n\n    /**\n     * Add a [Playable] to a user’s playlist.\n     *\n     * Adding playables to the current user’s public playlists requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * adding playables to the current user’s private playlist (including collaborative playlists) requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/add-tracks-to-playlist/)**\n     *\n     * @param playlist The id or uri for the playlist.\n     * @param playables Playable uris. Max 100 without bulk requesting enabled\n     * @param position The position to insert the playables, a zero-based index. For example, to insert the playables in the\n     * first position: position=0; to insert the playables in the third position: position=2. If omitted, the playables will\n     * be appended to the playlist. Playables are added in the order they are listed in the query string or request body.\n     *\n     * @throws BadRequestException if any invalid playable ids is provided or the playlist is not found\n     */\n    public suspend fun addPlayablesToClientPlaylist(\n        playlist: String,\n        vararg playables: PlayableUri,\n        position: Int? = null\n    ) {\n        requireScopes(SpotifyScope.PlaylistModifyPublic, SpotifyScope.PlaylistModifyPrivate, anyOf = true)\n        checkBulkRequesting(100, playables.size)\n\n        bulkStatefulRequest(100, playables.toList()) { chunk ->\n            val body = jsonMap()\n            body += buildJsonObject {\n                put(\n                    \"uris\",\n                    JsonArray(chunk.map { it.uri }.map(::JsonPrimitive))\n                )\n            }\n            if (position != null) body += buildJsonObject { put(\"position\", position) }\n            post(\n                endpointBuilder(\"/playlists/${PlaylistUri(playlist).id.encodeUrl()}/tracks\").toString(),\n                body.mapToJsonString()\n            )\n        }\n    }\n\n    /**\n     * Change a playlist’s name and public/private state. (The user must, of course, own the playlist.)\n     *\n     * Modifying a public playlist requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * modifying a private playlist (including collaborative playlists) requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/change-playlist-details/)**\n     *\n     * @param playlist The id or uri for the playlist.\n     * @param name Optional. The name to change the playlist to.\n     * @param public Optional. Whether to make the playlist public or not.\n     * @param collaborative Optional. Whether to make the playlist collaborative or not.\n     * @param description Optional. Whether to change the description or not.\n     *\n     * @throws BadRequestException if the playlist is not found or parameters exceed the max length\n     */\n    public suspend fun changeClientPlaylistDetails(\n        playlist: String,\n        name: String? = null,\n        public: Boolean? = null,\n        collaborative: Boolean? = null,\n        description: String? = null\n    ) {\n        requireScopes(SpotifyScope.PlaylistModifyPublic, SpotifyScope.PlaylistModifyPrivate, anyOf = true)\n\n        val body = jsonMap()\n        if (name != null) body += buildJsonObject { put(\"name\", name) }\n        if (public != null) body += buildJsonObject { put(\"public\", public) }\n        if (collaborative != null) body += buildJsonObject { put(\"collaborative\", collaborative) }\n        if (description != null) body += buildJsonObject { put(\"description\", description) }\n        require(body.isNotEmpty()) { \"At least one option must not be null\" }\n        put(endpointBuilder(\"/playlists/${PlaylistUri(playlist).id.encodeUrl()}\").toString(), body.mapToJsonString())\n    }\n\n    /**\n     * Get a list of the playlists owned or followed by a Spotify user.\n     *\n     * Private playlists are only retrievable for the current user and requires the [SpotifyScope.PlaylistReadPrivate] scope\n     * to have been authorized by the user. Note that this scope alone will not return collaborative playlists, even\n     * though they are always private.\n     * Collaborative playlists are only retrievable for the current user and requires the [SpotifyScope.PlaylistReadCollaborative]\n     * scope to have been authorized by the user.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/get-a-list-of-current-users-playlists/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first playable to return. Default: 0. Use with limit to get the next set of playables\n     *\n     * @throws BadRequestException if the filters provided are illegal\n     */\n    public suspend fun getClientPlaylists(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null\n    ): PagingObject<SimplePlaylist> {\n        require(!(limit != null && limit !in 1..50)) { \"Limit must be between 1 and 50. Provided $limit\" }\n        require(!(offset != null && offset !in 0..100000)) { \"Offset must be between 0 and 100,000. Provided $limit\" }\n        return get(endpointBuilder(\"/me/playlists\").with(\"limit\", limit).with(\"offset\", offset).toString())\n            .toNonNullablePagingObject(SimplePlaylist.serializer(), api = api, json = json)\n    }\n\n    /**\n     * Find a client playlist by its id. If you want to find multiple playlists, consider using [getClientPlaylists]\n     *\n     * **Note that** private playlists are only retrievable for the current user and require the [SpotifyScope.PlaylistReadPrivate] scope\n     * to have been authorized by the user. Note that this scope alone will not return a collaborative playlist, even\n     * though they are always private.\n     * Collaborative playlists are only retrievable for the current user and require the [SpotifyScope.PlaylistReadCollaborative]\n     * scope to have been authorized by the user.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/get-a-list-of-current-users-playlists/)**\n     *\n     * @param id Playlist id or uri\n     *\n     * @return A possibly-null [SimplePlaylist] if the playlist doesn't exist\n     */\n    public suspend fun getClientPlaylist(id: String): SimplePlaylist? {\n        val playlists = getClientPlaylists()\n        return playlists.items.find { it.id == id } ?: playlists.getAllItems().find { it?.id == id }\n    }\n\n    /**\n     * This method is equivalent to unfollowing a playlist with the given [playlist].\n     *\n     * Unfortunately, Spotify does not allow **deletion** of playlists themselves\n     *\n     * @param playlist playlist id\n     */\n    public suspend fun deleteClientPlaylist(playlist: String): String =\n        (api as SpotifyClientApi).following.unfollowPlaylist(PlaylistUri(playlist).id)\n\n    /**\n     * Reorder a playable or a group of playables in a playlist.\n     *\n     * When reordering playables, the timestamp indicating when they were added and the user who added them will be kept\n     * untouched. In addition, the users following the playlists won’t be notified about changes in the playlists\n     * when the playables are reordered.\n     *\n     * Reordering playables in the current user’s public playlists requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * reordering playables in the current user’s private playlist (including collaborative playlists) requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/reorder-playlists-tracks/)**\n     *\n     * @param playlist The id or uri for the playlist.\n     * @param reorderRangeStart The position of the first playable to be reordered.\n     * @param reorderRangeLength The amount of playables to be reordered. Defaults to 1 if not set.\n     * The range of playables to be reordered begins from the range_start position, and includes the range_length subsequent playables.\n     * Example: To move the playables at index 9-10 to the start of the playlist, range_start is set to 9, and range_length is set to 2.\n     * @param insertionPoint The position where the playables should be inserted. To reorder the playables to the end of the playlist, simply set insert_before to the position after the last track.\n     * @param snapshotId the playlist snapshot against which to apply this action. **recommended to have**\n     *\n     * @throws BadRequestException if the playlist is not found or illegal filters are applied\n     */\n    public suspend fun reorderClientPlaylistPlayables(\n        playlist: String,\n        reorderRangeStart: Int,\n        reorderRangeLength: Int? = null,\n        insertionPoint: Int,\n        snapshotId: String? = null\n    ): PlaylistSnapshot {\n        requireScopes(SpotifyScope.PlaylistModifyPublic, SpotifyScope.PlaylistModifyPrivate, anyOf = true)\n\n        val body = jsonMap()\n        body += buildJsonObject { put(\"range_start\", reorderRangeStart) }\n        body += buildJsonObject { put(\"insert_before\", insertionPoint) }\n        if (reorderRangeLength != null) body += buildJsonObject { put(\"range_length\", reorderRangeLength) }\n        if (snapshotId != null) body += buildJsonObject { put(\"snapshot_id\", snapshotId) }\n\n        return put(\n            endpointBuilder(\"/playlists/${PlaylistUri(playlist).id.encodeUrl()}/tracks\").toString(),\n            body.mapToJsonString()\n        ).toObject(PlaylistSnapshot.serializer(), api, json)\n    }\n\n    /**\n     * Replace all the playables in a playlist, overwriting its existing playables. This powerful request can be useful\n     * for replacing playables, re-ordering existing playables, or clearing the playlist.\n     *\n     * Setting playables in the current user’s public playlists requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * setting playables in the current user’s private playlist (including collaborative playlists) requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/replace-playlists-tracks/)**\n     *\n     * @param playlist The id or uri for the playlist.\n     * @param playables The Spotify playable uris. Maximum **100** without bulk requesting enabled.\n     *\n     * @throws BadRequestException if playlist is not found or illegal playables are provided\n     */\n    public suspend fun setClientPlaylistPlayables(playlist: String, vararg playables: PlayableUri) {\n        requireScopes(SpotifyScope.PlaylistModifyPublic, SpotifyScope.PlaylistModifyPrivate, anyOf = true)\n\n        val body = jsonMap()\n        body += buildJsonObject {\n            put(\n                \"uris\",\n                JsonArray(playables.map { it.uri }.map(::JsonPrimitive))\n            )\n        }\n        put(\n            endpointBuilder(\"/playlists/${PlaylistUri(playlist).id.encodeUrl()}/tracks\").toString(),\n            body.mapToJsonString()\n        )\n    }\n\n    /**\n     * Replace all the playables in a playlist, overwriting its existing playables. This powerful request can be useful\n     * for replacing playables, re-ordering existing playables, or clearing the playlist.\n     *\n     * Setting playables in the current user’s public playlists requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * setting playables in the current user’s private playlist (including collaborative playlists) requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/replace-playlists-tracks/)**\n     *\n     * @param playlist The id or uri for the playlist.\n     * @param playables The Spotify playable uris. Maximum **100** without bulk requesting enabled.\n     *\n     * @throws BadRequestException if playlist is not found or illegal playables are provided\n     */\n    public suspend fun replaceClientPlaylistPlayables(playlist: String, vararg playables: PlayableUri): Unit =\n        setClientPlaylistPlayables(playlist, *playables)\n\n    /**\n     * Remove all the playables in a playlist\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/replace-playlists-tracks/)**\n     *\n     * @param playlist the id or uri for the playlist.\n     */\n    public suspend fun removeAllClientPlaylistPlayables(playlist: String) {\n        setClientPlaylistPlayables(playlist)\n    }\n\n    /**\n     * Replace the image used to represent a specific playlist. Image type **must** be jpeg.\n     *\n     * You must specify a JPEG image path or image data, maximum payload size is 256 KB\n     *\n     * **Required conditions**: This access token must be tied to the user who owns the playlist, and must have the\n     * scope [ugc-image-upload][SpotifyScope.UgcImageUpload] granted. In addition, the token must also\n     * contain [playlist-modify-public][SpotifyScope.PlaylistModifyPublic] and/or\n     * [playlist-modify-private][SpotifyScope.PlaylistModifyPrivate], depending on the\n     * public status of the playlist you want to update.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/upload-custom-playlist-cover/)**\n     *\n     * @param playlist the id or uri for the playlist.\n     * @param imagePath Optionally specify the full local path to the image\n     * @param imageUrl Optionally specify a URL to the image\n     * @param imageFile Optionally specify the image [VfsFile]. Note that in each platform, there is a [toVfs] method to convert\n     * the platform's file type to a [VfsFile]. For example, `java.util.File.toVfs()` will return a [VfsFile].\n     * @param image Optionally specify the image's [BufferedImage] object\n     * @param imageData Optionally specify the Base64-encoded image data yourself\n     *\n     * @throws BadRequestException if invalid data is provided\n     */\n    public suspend fun uploadClientPlaylistCover(\n        playlist: String,\n        imagePath: String? = null,\n        imageFile: VfsFile? = null,\n        image: BufferedImage? = null,\n        imageData: String? = null,\n        imageUrl: String? = null\n    ) {\n        requireScopes(SpotifyScope.UgcImageUpload)\n        requireScopes(SpotifyScope.PlaylistModifyPublic, SpotifyScope.PlaylistModifyPrivate, anyOf = true)\n\n        val data = imageData ?: when {\n            image != null -> convertBufferedImageToBase64JpegString(image)\n            imageFile != null -> convertBufferedImageToBase64JpegString(convertFileToBufferedImage(imageFile))\n            imageUrl != null -> convertBufferedImageToBase64JpegString(convertUrlPathToBufferedImage(imageUrl))\n            imagePath != null -> convertBufferedImageToBase64JpegString(convertLocalImagePathToBufferedImage(imagePath))\n            else -> throw IllegalArgumentException(\"No cover image was specified\")\n        }\n        put(\n            endpointBuilder(\"/playlists/${PlaylistUri(playlist).id.encodeUrl()}/images\").toString(),\n            data,\n            contentType = \"image/jpeg\"\n        )\n    }\n\n    /**\n     * Remove a playable in the specified positions (zero-based) from the specified playlist.\n     *\n     * Removing playables from a user’s public playlist requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * removing playables from a private playlist requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/remove-tracks-playlist/)**\n     *\n     * @param playlist The playlist id\n     * @param playable The playable uri\n     * @param positions The positions at which the playable is located in the playlist\n     * @param snapshotId The playlist snapshot against which to apply this action. **recommended to have**\n     */\n    public suspend fun removePlayableFromClientPlaylist(\n        playlist: String,\n        playable: PlayableUri,\n        positions: SpotifyPlayablePositions,\n        snapshotId: String? = null\n    ): PlaylistSnapshot = removePlayablesFromClientPlaylist(playlist, playable to positions, snapshotId = snapshotId)\n\n    /**\n     * Remove all occurrences of a playable from the specified playlist.\n     *\n     * Removing playables from a user’s public playlist requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * removing playables from a private playlist requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/remove-tracks-playlist/)**\n     *\n     * @param playlist The playlist id\n     * @param playable The playable uri\n     * @param snapshotId The playlist snapshot against which to apply this action. **recommended to have**\n     */\n    public suspend fun removePlayableFromClientPlaylist(\n        playlist: String,\n        playable: PlayableUri,\n        snapshotId: String? = null\n    ): PlaylistSnapshot = removePlayablesFromClientPlaylist(playlist, playable, snapshotId = snapshotId)\n\n    /**\n     * Remove all occurrences of the specified playables from the given playlist.\n     *\n     * Removing playables from a user’s public playlist requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * removing playables from a private playlist requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/remove-tracks-playlist/)**\n     *\n     * @param playlist The playlist id\n     * @param playables An array of playable uris. Maximum **100** without bulk requesting.\n     * @param snapshotId The playlist snapshot against which to apply this action. **recommended to have**\n     */\n    public suspend fun removePlayablesFromClientPlaylist(\n        playlist: String,\n        vararg playables: PlayableUri,\n        snapshotId: String? = null\n    ): PlaylistSnapshot = removePlaylistPlayablesImpl(playlist, playables.map { it to null }.toTypedArray(), snapshotId)\n\n    /**\n     * Remove playables (each with their own positions) from the given playlist. **Bulk requesting is only available when [snapshotId] is null.**\n     *\n     * Removing playables from a user’s public playlist requires authorization of the [SpotifyScope.PlaylistModifyPublic] scope;\n     * removing playables from a private playlist requires the [SpotifyScope.PlaylistModifyPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/remove-tracks-playlist/)**\n     *\n     * @param playlist The playlist id\n     * @param playables An array of [Pair]s of playable uris *and* playable positions (zero-based). Maximum **100**.\n     * @param snapshotId The playlist snapshot against which to apply this action. **recommended to have**\n     */\n    public suspend fun removePlayablesFromClientPlaylist(\n        playlist: String,\n        vararg playables: Pair<PlayableUri, SpotifyPlayablePositions>,\n        snapshotId: String? = null\n    ): PlaylistSnapshot = removePlaylistPlayablesImpl(playlist, playables.toList().toTypedArray(), snapshotId)\n\n    private suspend fun removePlaylistPlayablesImpl(\n        playlist: String,\n        playables: Array<Pair<PlayableUri, SpotifyPlayablePositions?>>,\n        snapshotId: String?\n    ): PlaylistSnapshot {\n        requireScopes(SpotifyScope.PlaylistModifyPublic, SpotifyScope.PlaylistModifyPrivate, anyOf = true)\n        checkBulkRequesting(100, playables.size)\n        if (snapshotId != null && playables.size > 100) throw BadRequestException(\"You cannot provide both the snapshot id and attempt bulk requesting\")\n\n        return bulkStatefulRequest(100, playables.toList()) { chunk ->\n            val body = jsonMap()\n            if (snapshotId != null) body += buildJsonObject { put(\"snapshot_id\", snapshotId) }\n            body += buildJsonObject {\n                put(\n                    \"tracks\",\n                    JsonArray(\n                        chunk.map { (playable, positions) ->\n                            val json = jsonMap()\n                            json += buildJsonObject { put(\"uri\", playable.uri) }\n                            if (positions?.positions?.isNotEmpty() == true) {\n                                json += buildJsonObject {\n                                    put(\n                                        \"positions\",\n                                        JsonArray(\n                                            positions.positions.map(::JsonPrimitive)\n                                        )\n                                    )\n                                }\n                            }\n                            JsonObject(json)\n                        }\n                    )\n                )\n            }\n            delete(\n                endpointBuilder(\"/playlists/${PlaylistUri(playlist).id}/tracks\").toString(),\n                body = body.mapToJsonString()\n            ).toObject(PlaylistSnapshot.serializer(), api, json)\n        }.last()\n    }\n}\n\n/**\n * Contains the snapshot id, returned from API responses\n *\n * @param snapshotId The playlist state identifier\n */\n@Serializable\npublic data class PlaylistSnapshot(@SerialName(\"snapshot_id\") val snapshotId: String)\n\n/**\n * Represents the positions inside a playlist's playables list of where to locate the playable\n *\n * @param positions Playable positions (zero-based)\n */\npublic class SpotifyPlayablePositions(public vararg val positions: Int)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/client/ClientProfileApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.client\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.endpoints.pub.UserApi\nimport com.adamratzman.spotify.models.SpotifyUserInformation\nimport com.adamratzman.spotify.models.serialization.toObject\n\n/**\n * Endpoints for retrieving information about a user’s profile.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/users-profile/)**\n */\npublic class ClientProfileApi(api: GenericSpotifyApi) : UserApi(api) {\n    /**\n     * Get detailed profile information about the current user (including the current user’s username).\n     *\n     * The access token must have been issued on behalf of the current user.\n     * Reading the user’s email address requires the [SpotifyScope.UserReadEmail] scope;\n     * reading country and product subscription level requires the [SpotifyScope.UserReadPrivate] scope.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/users-profile/get-current-users-profile/)**\n     *\n     * @return Never-null [SpotifyUserInformation] object with possibly-null country, email, subscription and birthday fields\n     */\n    public suspend fun getClientProfile(): SpotifyUserInformation =\n        get(endpointBuilder(\"/me\").toString()).toObject(SpotifyUserInformation.serializer(), api, json)\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/client/ClientShowApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.client\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.endpoints.pub.ShowApi\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.Show\nimport com.adamratzman.spotify.models.ShowList\nimport com.adamratzman.spotify.models.ShowUri\nimport com.adamratzman.spotify.models.SimpleEpisode\nimport com.adamratzman.spotify.models.SimpleShow\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.encodeUrl\n\n/**\n * Endpoints for retrieving information about one or more shows and their episodes from the Spotify catalog.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/shows/)**\n */\npublic class ClientShowApi(api: GenericSpotifyApi) : ShowApi(api) {\n    /**\n     * Get Spotify catalog information for a single show identified by its unique Spotify ID. The [Market] associated with\n     * the user account will be used.\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/tracks/get-track/)**\n     *\n     * @param id The Spotify ID for the show.\n     *\n     * @return possibly-null Show. This behavior is *not the same* as in [getShows]\n     */\n    public suspend fun getShow(id: String): Show? {\n        return catch {\n            get(\n                endpointBuilder(\"/shows/${ShowUri(id).id.encodeUrl()}\").toString()\n            ).toObject(Show.serializer(), api, json)\n        }\n    }\n\n    /**\n     * Get Spotify catalog information for multiple shows based on their Spotify IDs. The [Market] associated with\n     * the user account will be used.\n     *\n     * **Invalid show ids will result in a [BadRequestException]\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/shows/get-several-shows/)**\n     *\n     * @param ids The id or uri for the shows. Maximum **50**.\n     *\n     * @return List of possibly-null [SimpleShow] objects.\n     * @throws BadRequestException If any invalid show id is provided\n     */\n    public suspend fun getShows(vararg ids: String): List<SimpleShow?> {\n        checkBulkRequesting(50, ids.size)\n        return bulkStatelessRequest(50, ids.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/shows\")\n                    .with(\"ids\", chunk.joinToString(\",\") { ShowUri(it).id.encodeUrl() })\n                    .toString()\n            ).toObject(ShowList.serializer(), api, json).shows\n        }.flatten()\n    }\n\n    /**\n     * Get Spotify catalog information about an show’s episodes. The [Market] associated with\n     * the user account will be used.\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/shows/get-shows-episodes/)**\n     *\n     * @param id The Spotify ID for the show.\n     * @param limit The number of objects to return. Default: 20 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @throws BadRequestException if the playlist cannot be found\n     */\n    public suspend fun getShowEpisodes(\n        id: String,\n        limit: Int? = null,\n        offset: Int? = null\n    ): PagingObject<SimpleEpisode> = get(\n        endpointBuilder(\"/shows/${ShowUri(id).id.encodeUrl()}/episodes\").with(\"limit\", limit)\n            .with(\"offset\", offset).toString()\n    ).toNonNullablePagingObject(SimpleEpisode.serializer(), null, api, json)\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/AlbumApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.Album\nimport com.adamratzman.spotify.models.AlbumUri\nimport com.adamratzman.spotify.models.AlbumsResponse\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.SimpleTrack\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.getSpotifyId\n\n/**\n * Endpoints for retrieving information about one or more albums from the Spotify catalog.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/albums/)**\n */\npublic class AlbumApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get Spotify catalog information for a single album.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/albums/get-album/)**\n     *\n     * @param album The id or uri for the album.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     *\n     * @return Full [Album] object if the provided id is found, otherwise null\n     */\n    public suspend fun getAlbum(album: String, market: Market? = null): Album? = catch {\n        get(\n            endpointBuilder(\"/albums/${AlbumUri(album).id}\").with(\n                \"market\",\n                market?.getSpotifyId()\n            ).toString()\n        ).toObject(Album.serializer(), api, json)\n    }\n\n    /**\n     * Get Spotify catalog information for multiple albums identified by their Spotify IDs.\n     * **Albums not found are returned as null inside the ordered list**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/albums/get-several-albums/)**\n     *\n     * @param albums The ids or uris for the albums. Maximum **20**.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     *\n     * @return List of [Album] objects or null if the album could not be found, in the order requested\n     */\n    public suspend fun getAlbums(vararg albums: String, market: Market? = null): List<Album?> {\n        checkBulkRequesting(20, albums.size)\n        return bulkStatelessRequest(20, albums.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/albums\").with(\"ids\", chunk.joinToString(\",\") { AlbumUri(it).id.encodeUrl() })\n                    .with(\"market\", market?.getSpotifyId()).toString()\n            ).toObject(AlbumsResponse.serializer(), api, json).albums\n        }.flatten()\n    }\n\n    /**\n     * Get Spotify catalog information about an album’s tracks. Optional parameters can be used to limit the number of tracks returned.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/albums/get-albums-tracks/)**\n     *\n     * @param album The id or uri for the album.\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     *\n     * @throws [BadRequestException] if the [album] is not found, or positioning of [limit] or [offset] is illegal.\n     * @return [PagingObject] of [SimpleTrack] objects\n     */\n    public suspend fun getAlbumTracks(\n        album: String,\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null\n    ): PagingObject<SimpleTrack> = get(\n        endpointBuilder(\"/albums/${AlbumUri(album).id.encodeUrl()}/tracks\").with(\"limit\", limit).with(\n            \"offset\",\n            offset\n        ).with(\"market\", market?.getSpotifyId())\n            .toString()\n    ).toNonNullablePagingObject(SimpleTrack.serializer(), api = api, json = json)\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/ArtistApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.*\nimport com.adamratzman.spotify.models.serialization.toInnerArray\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.getSpotifyId\nimport kotlinx.serialization.builtins.ListSerializer\n\n/**\n * Endpoints for retrieving information about one or more artists from the Spotify catalog.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/artists/)**\n */\npublic class ArtistApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get Spotify catalog information for a single artist identified by their unique Spotify ID.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/artists/get-artist/)**\n     *\n     * @param artist The id or uri for the artist.\n     *\n     * @return [Artist] if valid artist id is provided, otherwise null\n     */\n    public suspend fun getArtist(artist: String): Artist? = catch {\n        get(endpointBuilder(\"/artists/${ArtistUri(artist).id.encodeUrl()}\").toString()).toObject(\n            Artist.serializer(),\n            api,\n            json\n        )\n    }\n\n    /**\n     * Get Spotify catalog information for several artists based on their Spotify IDs. **Artists not found are returned as null inside the ordered list**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/artists/get-several-artists/)**\n     *\n     * @param artists The ids or uris representing the artists. Maximum **50**.\n     *\n     * @return List of [Artist] objects or null if the artist could not be found, in the order requested.\n     * @throws BadRequestException if any of the [artists] are not found, *if using client api*\n     */\n    public suspend fun getArtists(vararg artists: String): List<Artist?> {\n        checkBulkRequesting(50, artists.size)\n\n        return bulkStatelessRequest(50, artists.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/artists\").with(\n                    \"ids\",\n                    chunk.joinToString(\",\") { ArtistUri(it).id.encodeUrl() }\n                ).toString()\n            ).toObject(ArtistList.serializer(), api, json).artists\n        }.flatten()\n    }\n\n    /**\n     * Get Spotify catalog information about an artist’s albums.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/artists/get-artists-albums/)**\n     *\n     * @param artist The artist id or uri\n     * @param market Supply this parameter to limit the response to one particular geographical market.\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param include List of keywords that will be used to filter the response. If not supplied, all album groups will be returned.\n     *\n     * @throws BadRequestException if [artist] is not found, or filter parameters are illegal\n     * @return [PagingObject] of [SimpleAlbum] objects\n     */\n    public suspend fun getArtistAlbums(\n        artist: String,\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null,\n        vararg include: AlbumInclusionStrategy\n    ): PagingObject<SimpleAlbum> = get(\n        endpointBuilder(\"/artists/${ArtistUri(artist).id.encodeUrl()}/albums\").with(\"limit\", limit).with(\n            \"offset\",\n            offset\n        ).with(\"market\", market?.getSpotifyId())\n            .with(\"include_groups\", include.joinToString(\",\") { it.keyword }).toString()\n    ).toNonNullablePagingObject(SimpleAlbum.serializer(), null, api, json)\n\n    /**\n     * Describes object types to include when finding albums\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/artists/get-artists-albums/)**\n     *\n     * @param keyword The id of the strategy\n     */\n    public enum class AlbumInclusionStrategy(public val keyword: String) {\n        Album(\"album\"),\n        Single(\"single\"),\n        AppearsOn(\"appears_on\"),\n        Compilation(\"compilation\");\n    }\n\n    /**\n     * Get Spotify catalog information about an artist’s top tracks **by country**.\n     *\n     * Contains only up to **10** tracks with *no* [CursorBasedPagingObject] to go between top track pages. Thus, only the top\n     * 10 are exposed\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/artists/get-artists-top-tracks/)**\n     *\n     * @param artist The id or uri for the artist.\n     * @param market The country ([Market]) to search. Unlike endpoints with optional Track Relinking, the Market is **not** optional.\n     *\n     * @throws BadRequestException if tracks are not available in the specified [Market] or the [artist] is not found\n     * @return List of the top [Track]s of an artist in the given market\n     */\n    public suspend fun getArtistTopTracks(artist: String, market: Market = Market.US): List<Track> = get(\n        endpointBuilder(\"/artists/${ArtistUri(artist).id.encodeUrl()}/top-tracks\").with(\n            \"country\",\n            market.getSpotifyId()\n        ).toString()\n    ).toInnerArray(ListSerializer(Track.serializer()), \"tracks\", json)\n\n    /**\n     * Get Spotify catalog information about artists similar to a given artist.\n     * Similarity is based on analysis of the Spotify community’s listening history.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/artists/get-related-artists/)**\n     *\n     * @param artist The id or uri for the artist.\n     *\n     * @throws BadRequestException if the [artist] is not found\n     * @return List of *never-null*, but possibly empty [Artist]s representing similar artists\n     */\n    public suspend fun getRelatedArtists(artist: String): List<Artist> =\n        get(endpointBuilder(\"/artists/${ArtistUri(artist).id.encodeUrl()}/related-artists\").toString())\n            .toObject(ArtistList.serializer(), api, json).artists.filterNotNull()\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/BrowseApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.ArtistUri\nimport com.adamratzman.spotify.models.ErrorObject\nimport com.adamratzman.spotify.models.FeaturedPlaylists\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.PlayableUri\nimport com.adamratzman.spotify.models.RecommendationResponse\nimport com.adamratzman.spotify.models.RecommendationSeed\nimport com.adamratzman.spotify.models.SimpleAlbum\nimport com.adamratzman.spotify.models.SimplePlaylist\nimport com.adamratzman.spotify.models.SimpleTrack\nimport com.adamratzman.spotify.models.SpotifyCategory\nimport com.adamratzman.spotify.models.serialization.toInnerArray\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.*\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.formatDate\nimport kotlinx.serialization.Serializable\nimport kotlinx.serialization.builtins.ListSerializer\nimport kotlinx.serialization.builtins.serializer\nimport kotlin.reflect.KClass\n\n/**\n * Endpoints for getting playlists and new album releases featured on Spotify’s Browse tab.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/)**\n */\npublic class BrowseApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Retrieve a list of available genres seed parameter values for recommendations.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/get-recommendations/)**\n     *\n     * @return List of genre ids\n     */\n    public suspend fun getAvailableGenreSeeds(): List<String> =\n        get(endpointBuilder(\"/recommendations/available-genre-seeds\").toString()).toInnerArray(\n            ListSerializer(String.serializer()),\n            \"genres\",\n            json\n        )\n\n    /**\n     * Get a list of new album releases featured in Spotify (shown, for example, on a Spotify player’s “Browse” tab).\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/get-list-new-releases/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     *\n     * @throws BadRequestException if filter parameters are illegal\n     * @return [PagingObject] of new album released, ordered by release date (descending)\n     */\n    public suspend fun getNewReleases(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null\n    ): PagingObject<SimpleAlbum> = get(\n        endpointBuilder(\"/browse/new-releases\").with(\"limit\", limit)\n            .with(\"offset\", offset).with(\"country\", market?.getSpotifyId()).toString()\n    ).toNonNullablePagingObject(SimpleAlbum.serializer(), \"albums\", api = api, json = json)\n\n    /**\n     * Get a list of Spotify featured playlists (shown, for example, on a Spotify player’s ‘Browse’ tab).\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/get-list-featured-playlists/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param locale The desired language, consisting of a lowercase ISO 639-1 language code and an uppercase ISO 3166-1 alpha-2 country code, joined by an underscore. For example: ES_MX, meaning “Spanish (Mexico)”.\n     * Provide this parameter if you want the results returned in a particular language (where available).\n     * Note that, if locale is not supplied, or if the specified language is not available,\n     * all strings will be returned in the Spotify default language (American English. The locale parameter, combined with the country parameter, may give odd results if not carefully matched.\n     * For example country=SE&locale=DE_DE will return a list of categories relevant to Sweden but as German language strings.\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     * @param timestamp Use this parameter (time in milliseconds) to specify the user’s local time to get results tailored for that specific\n     * date and time in the day. If not provided, the response defaults to the current UTC time.\n     *\n     * @throws BadRequestException if filter parameters are illegal or [locale] does not exist\n     * @return [FeaturedPlaylists] object with the current featured message and featured playlists\n     */\n    public suspend fun getFeaturedPlaylists(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        locale: Locale? = null,\n        market: Market? = null,\n        timestamp: Long? = null\n    ): FeaturedPlaylists = get(\n        endpointBuilder(\"/browse/featured-playlists\").with(\"limit\", limit).with(\"offset\", offset).with(\n            \"market\",\n            market?.getSpotifyId()\n        ).with(\"locale\", locale).with(\"timestamp\", timestamp?.let { formatDate(it) }).toString()\n    ).toObject(FeaturedPlaylists.serializer(), api, json)\n\n    /**\n     * Get a list of categories used to tag items in Spotify (on, for example, the Spotify player’s “Browse” tab).\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/get-list-categories/)**\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param locale The desired language, consisting of a lowercase ISO 639-1 language code and an uppercase ISO 3166-1 alpha-2 country code, joined by an underscore. For example: ES_MX, meaning “Spanish (Mexico)”.\n     * Provide this parameter if you want the results returned in a particular language (where available).\n     * Note that, if locale is not supplied, or if the specified language is not available,\n     * all strings will be returned in the Spotify default language (American English. The locale parameter, combined with the country parameter, may give odd results if not carefully matched.\n     * For example country=SE&locale=DE_DE will return a list of categories relevant to Sweden but as German language strings.\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     *\n     * @return Default category list if [locale] is invalid, otherwise the localized PagingObject\n     */\n    public suspend fun getCategoryList(\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        locale: Locale? = null,\n        market: Market? = null\n    ): PagingObject<SpotifyCategory> = get(\n        endpointBuilder(\"/browse/categories\").with(\"limit\", limit).with(\"offset\", offset).with(\n            \"market\",\n            market?.getSpotifyId()\n        ).with(\"locale\", locale).toString()\n    ).toNonNullablePagingObject(SpotifyCategory.serializer(), \"categories\", api = api, json = json)\n\n    /**\n     * Get a single category used to tag items in Spotify (on, for example, the Spotify player’s “Browse” tab).\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/get-category/)**\n     *\n     * @param locale The desired language, consisting of a lowercase ISO 639-1 language code and an uppercase ISO 3166-1 alpha-2 country code, joined by an underscore. For example: ES_MX, meaning “Spanish (Mexico)”.\n     * Provide this parameter if you want the results returned in a particular language (where available).\n     * Note that, if locale is not supplied, or if the specified language is not available,\n     * all strings will be returned in the Spotify default language (American English. The locale parameter, combined with the country parameter, may give odd results if not carefully matched.\n     * For example country=SE&locale=DE_DE will return a list of categories relevant to Sweden but as German language strings.\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     *\n     * @throws BadRequestException if [categoryId] is not found or [locale] does not exist on Spotify\n     */\n    public suspend fun getCategory(\n        categoryId: String,\n        market: Market? = null,\n        locale: Locale? = null\n    ): SpotifyCategory = get(\n        endpointBuilder(\"/browse/categories/${categoryId.encodeUrl()}\").with(\"market\", market?.getSpotifyId())\n            .with(\"locale\", locale).toString()\n    ).toObject(SpotifyCategory.serializer(), api, json)\n\n    /**\n     * Get a list of Spotify playlists tagged with a particular category.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/get-categorys-playlists/)**\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @throws BadRequestException if [categoryId] is not found or filters are illegal\n     * @return [PagingObject] of top playlists tagged with [categoryId]\n     */\n    public suspend fun getPlaylistsForCategory(\n        categoryId: String,\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null\n    ): PagingObject<SimplePlaylist> = get(\n        endpointBuilder(\"/browse/categories/${categoryId.encodeUrl()}/playlists\")\n            .with(\"limit\", limit)\n            .with(\"offset\", offset)\n            .with(\"country\", market?.getSpotifyId()).toString()\n    ).toNonNullablePagingObject((SimplePlaylist.serializer()), \"playlists\", api = api, json = json)\n\n    /**\n     * Create a playlist-style listening experience based on seed artists, tracks and genres.\n     * Recommendations are generated based on the available information for a given seed entity and matched against similar\n     * artists and tracks. If there is sufficient information about the provided seeds, a list of tracks will be returned\n     * together with pool size details. For artists and tracks that are very new or obscure there might not be enough data\n     * to generate a list of tracks.\n     *\n     * **5** seeds of any combination of [seedArtists], [seedGenres], and [seedTracks] can be provided. AT LEAST 1 seed must be provided.\n     *\n     * **All attributes** are weighted equally.\n     *\n     * See [here](https://developer.spotify.com/documentation/web-api/reference/browse/get-recommendations/#tuneable-track-attributes) for a list\n     * and descriptions of tuneable track attributes and their ranges.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/get-recommendations/)**\n     *\n     * @param seedArtists A possibly null provided list of <b>Artist IDs</b> to be used to generate recommendations\n     * @param seedGenres A possibly null provided list of <b>Genre IDs</b> to be used to generate recommendations. Invalid genres are ignored\n     * @param seedTracks A possibly null provided list of <b>Track IDs</b> to be used to generate recommendations\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     * @param targetAttributes For each of the tunable track attributes a target value may be provided.\n     * Tracks with the attribute values nearest to the target values will be preferred.\n     * @param minAttributes For each tunable track attribute, a hard floor on the selected track attribute’s value can be provided.\n     * @param maxAttributes For each tunable track attribute, a hard ceiling on the selected track attribute’s value can be provided.\n     * For example, setting max instrumentalness equal to 0.35 would filter out most tracks that are likely to be instrumental.\n     *\n     * @return [RecommendationResponse] with [RecommendationSeed]s used and [SimpleTrack]s found\n     *\n     * @throws BadRequestException if any filter is applied illegally\n     */\n    public suspend fun getTrackRecommendations(\n        seedArtists: List<String>? = null,\n        seedGenres: List<String>? = null,\n        seedTracks: List<String>? = null,\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        market: Market? = null,\n        targetAttributes: List<TrackAttribute<*>> = listOf(),\n        minAttributes: List<TrackAttribute<*>> = listOf(),\n        maxAttributes: List<TrackAttribute<*>> = listOf()\n    ): RecommendationResponse =\n        getRecommendations(\n            seedArtists,\n            seedGenres,\n            seedTracks,\n            limit,\n            market,\n            targetAttributes.map { it.tuneableTrackAttribute to it.value }.toMap(),\n            minAttributes.map { it.tuneableTrackAttribute to it.value }.toMap(),\n            maxAttributes.map { it.tuneableTrackAttribute to it.value }.toMap()\n        )\n\n    /**\n     * Create a playlist-style listening experience based on seed artists, tracks and genres.\n     * Recommendations are generated based on the available information for a given seed entity and matched against similar\n     * artists and tracks. If there is sufficient information about the provided seeds, a list of tracks will be returned\n     * together with pool size details. For artists and tracks that are very new or obscure there might not be enough data\n     * to generate a list of tracks.\n     *\n     * **5** seeds of any combination of [seedArtists], [seedGenres], and [seedTracks] can be provided. AT LEAST 1 seed must be provided.\n     *\n     * **All attributes** are weighted equally.\n     *\n     * See [here](https://developer.spotify.com/documentation/web-api/reference/browse/get-recommendations/#tuneable-track-attributes) for a list\n     * and descriptions of tuneable track attributes and their ranges.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/get-recommendations/)**\n     *\n     * @param seedArtists A possibly null provided list of <b>Artist IDs</b> to be used to generate recommendations\n     * @param seedGenres A possibly null provided list of <b>Genre IDs</b> to be used to generate recommendations. Invalid genres are ignored\n     * @param seedTracks A possibly null provided list of <b>Track IDs</b> to be used to generate recommendations\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     * @param targetAttributes For each of the tunable track attributes a target value may be provided.\n     * Tracks with the attribute values nearest to the target values will be preferred.\n     * @param minAttributes For each tunable track attribute, a hard floor on the selected track attribute’s value can be provided.\n     * @param maxAttributes For each tunable track attribute, a hard ceiling on the selected track attribute’s value can be provided.\n     * For example, setting max instrumentalness equal to 0.35 would filter out most tracks that are likely to be instrumental.\n     *\n     * @return [RecommendationResponse] with [RecommendationSeed]s used and [SimpleTrack]s found\n     *\n     * @throws BadRequestException if any filter is applied illegally\n     *\n     */\n    public suspend fun getRecommendations(\n        seedArtists: List<String>? = null,\n        seedGenres: List<String>? = null,\n        seedTracks: List<String>? = null,\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        market: Market? = null,\n        targetAttributes: Map<TuneableTrackAttribute<*>, Number> = mapOf(),\n        minAttributes: Map<TuneableTrackAttribute<*>, Number> = mapOf(),\n        maxAttributes: Map<TuneableTrackAttribute<*>, Number> = mapOf()\n    ): RecommendationResponse {\n        if (seedArtists?.isEmpty() != false && seedGenres?.isEmpty() != false && seedTracks?.isEmpty() != false) {\n            throw BadRequestException(\n                ErrorObject(\n                    400,\n                    \"At least one seed (genre, artist, track) must be provided.\"\n                )\n            )\n        }\n\n        val builder = endpointBuilder(\"/recommendations\").with(\"limit\", limit).with(\"market\", market?.getSpotifyId())\n            .with(\"seed_artists\", seedArtists?.joinToString(\",\") { ArtistUri(it).id.encodeUrl() })\n            .with(\"seed_genres\", seedGenres?.joinToString(\",\") { it.encodeUrl() })\n            .with(\"seed_tracks\", seedTracks?.joinToString(\",\") { PlayableUri(it).id.encodeUrl() })\n        targetAttributes.forEach { (attribute, value) -> builder.with(\"target_$attribute\", value) }\n        minAttributes.forEach { (attribute, value) -> builder.with(\"min_$attribute\", value) }\n        maxAttributes.forEach { (attribute, value) -> builder.with(\"max_$attribute\", value) }\n        return get(builder.toString()).toObject(RecommendationResponse.serializer(), api, json)\n    }\n}\n\n/**\n * Describes a track attribute\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/browse/get-recommendations/)**\n *\n * @param attribute The spotify id for the track attribute.\n * @param integerOnly Whether this attribute can only take integers.\n * @param min The minimum value allowed for this attribute.\n * @param max The maximum value allowed for this attribute.\n * @param typeClass The type, a subclass of [Number], one of [Float] or [Int] that corresponds to this attribute.\n */\n@Serializable\npublic sealed class TuneableTrackAttribute<T : Number>(\n    public val attribute: String,\n    public val integerOnly: Boolean,\n    public val min: T?,\n    public val max: T?,\n    public val typeClass: KClass<T>\n) {\n    /**\n     * A confidence measure from 0.0 to 1.0 of whether the track is acoustic.\n     * 1.0 represents high confidence the track is acoustic.\n     */\n    public object Acousticness : TuneableTrackAttribute<Float>(\"acousticness\", false, 0f, 1f, Float::class)\n\n    /**\n     * Danceability describes how suitable a track is for dancing based on a combination of musical\n     * elements including tempo, rhythm stability, beat strength, and overall regularity. A value of 0.0 is\n     * least danceable and 1.0 is most danceable.\n     */\n    public object Danceability : TuneableTrackAttribute<Float>(\"danceability\", false, 0f, 1f, Float::class)\n\n    /**\n     * The duration of the track in milliseconds.\n     */\n    public object DurationInMilliseconds : TuneableTrackAttribute<Int>(\"duration_ms\", true, 0, null, Int::class)\n\n    /**\n     * Energy is a measure from 0.0 to 1.0 and represents a perceptual measure of intensity and activity.\n     * Typically, energetic tracks feel fast, loud, and noisy. For example, death metal has high energy,\n     * while a Bach prelude scores low on the scale. Perceptual features contributing to this attribute\n     * include dynamic range, perceived loudness, timbre, onset rate, and general entropy.\n     */\n    public object Energy : TuneableTrackAttribute<Float>(\"energy\", false, 0f, 1f, Float::class)\n\n    /**\n     * Predicts whether a track contains no vocals. “Ooh” and “aah” sounds are treated as\n     * instrumental in this context. Rap or spoken word tracks are clearly “vocal”. The\n     * closer the instrumentalness value is to 1.0, the greater likelihood the track contains\n     * no vocal content. Values above 0.5 are intended to represent instrumental tracks, but\n     * confidence is higher as the value approaches 1.0.\n     */\n    public object Instrumentalness : TuneableTrackAttribute<Float>(\"instrumentalness\", false, 0f, 1f, Float::class)\n\n    /**\n     * The key the track is in. Integers map to pitches using standard Pitch Class notation.\n     * E.g. 0 = C, 1 = C♯/D♭, 2 = D, and so on.\n     */\n    public object Key : TuneableTrackAttribute<Int>(\"key\", true, 0, 11, Int::class)\n\n    /**\n     * Detects the presence of an audience in the recording. Higher liveness values represent an increased\n     * probability that the track was performed live. A value above 0.8 provides strong likelihood\n     * that the track is live.\n     */\n    public object Liveness : TuneableTrackAttribute<Float>(\"liveness\", false, 0f, 1f, Float::class)\n\n    /**\n     * The overall loudness of a track in decibels (dB). Loudness values are averaged across the\n     * entire track and are useful for comparing relative loudness of tracks. Loudness is the\n     * quality of a sound that is the primary psychological correlate of physical strength (amplitude).\n     * Values typically range between -60 and 0 db.\n     */\n    public object Loudness : TuneableTrackAttribute<Float>(\"loudness\", false, null, null, Float::class)\n\n    /**\n     * Mode indicates the modality (major or minor) of a track, the type of scale from which its\n     * melodic content is derived. Major is represented by 1 and minor is 0.\n     */\n    public object Mode : TuneableTrackAttribute<Int>(\"mode\", true, 0, 1, Int::class)\n\n    /**\n     * The popularity of the track. The value will be between 0 and 100, with 100 being the most popular.\n     * The popularity is calculated by algorithm and is based, in the most part, on the total number of\n     * plays the track has had and how recent those plays are. Note: When applying track relinking via\n     * the market parameter, it is expected to find relinked tracks with popularities that do not match\n     * min_*, max_*and target_* popularities. These relinked tracks are accurate replacements for unplayable tracks with the expected popularity scores. Original, non-relinked tracks are available via the linked_from attribute of the relinked track response.\n     */\n    public object Popularity : TuneableTrackAttribute<Int>(\"popularity\", true, 0, 100, Int::class)\n\n    /**\n     * Speechiness detects the presence of spoken words in a track. The more exclusively speech-like the\n     * recording (e.g. talk show, audio book, poetry), the closer to 1.0 the attribute value. Values above\n     * 0.66 describe tracks that are probably made entirely of spoken words. Values between 0.33 and 0.66\n     * describe tracks that may contain both music and speech, either in sections or layered, including\n     * such cases as rap music. Values below 0.33 most likely represent music and other non-speech-like\n     * tracks.\n     */\n    public object Speechiness : TuneableTrackAttribute<Float>(\"speechiness\", false, 0f, 1f, Float::class)\n\n    /**\n     * The overall estimated tempo of a track in beats per minute (BPM). In musical terminology, tempo is the\n     * speed or pace of a given piece and derives directly from the average beat duration.\n     */\n    public object Tempo : TuneableTrackAttribute<Float>(\"tempo\", false, 0f, null, Float::class)\n\n    /**\n     * An estimated overall time signature of a track. The time signature (meter)\n     * is a notational convention to specify how many beats are in each bar (or measure).\n     * The time signature ranges from 3 to 7 indicating time signatures of 3/4, to 7/4.\n     * A value of -1 may indicate no time signature, while a value of 1 indicates a rather complex or changing time signature.\n     */\n    public object TimeSignature : TuneableTrackAttribute<Int>(\"time_signature\", true, -1, 7, Int::class)\n\n    /**\n     * A measure from 0.0 to 1.0 describing the musical positiveness conveyed by a track. Tracks with high\n     * valence sound more positive (e.g. happy, cheerful, euphoric), while tracks with low valence\n     * sound more negative (e.g. sad, depressed, angry).\n     */\n    public object Valence : TuneableTrackAttribute<Float>(\"valence\", false, 0f, 1f, Float::class)\n\n    override fun toString(): String = attribute\n\n    public fun <V : Number> asTrackAttribute(value: V): TrackAttribute<T> {\n        require(!(min != null && min.toDouble() > value.toDouble())) { \"Attribute value for $this must be greater than $min!\" }\n        require(!(max != null && max.toDouble() < value.toDouble())) { \"Attribute value for $this must be less than $max!\" }\n\n        @Suppress(\"UNCHECKED_CAST\")\n        return TrackAttribute(\n            this,\n            when (typeClass) {\n                Int::class -> value.toInt() as T\n                Float::class -> value.toFloat() as T\n                Double::class -> value.toDouble() as T\n                else -> value.toDouble() as T\n            }\n        )\n    }\n\n    public companion object {\n        public fun values(): List<TuneableTrackAttribute<*>> = listOf(\n            Acousticness,\n            Danceability,\n            DurationInMilliseconds,\n            Energy,\n            Instrumentalness,\n            Key,\n            Liveness,\n            Loudness,\n            Mode,\n            Popularity,\n            Speechiness,\n            Tempo,\n            TimeSignature,\n            Valence\n        )\n    }\n}\n\n/**\n * The track attribute wrapper contains a set value for a specific [TuneableTrackAttribute]\n *\n * @param tuneableTrackAttribute The [TuneableTrackAttribute] that this [TrackAttribute] will correspond to.\n * @param value The value of the [tuneableTrackAttribute].\n */\n@Serializable\npublic data class TrackAttribute<T : Number>(val tuneableTrackAttribute: TuneableTrackAttribute<T>, val value: T) {\n    public companion object {\n        public fun <T : Number> create(tuneableTrackAttribute: TuneableTrackAttribute<T>, value: T): TrackAttribute<T> =\n            tuneableTrackAttribute.asTrackAttribute(value)\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/EpisodeApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyAppApi\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.Episode\nimport com.adamratzman.spotify.models.EpisodeList\nimport com.adamratzman.spotify.models.EpisodeUri\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.getSpotifyId\n\n/**\n * Endpoints for retrieving information about one or more episodes from the Spotify catalog.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/episodes/)**\n */\npublic open class EpisodeApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get Spotify catalog information for a single episode identified by its unique Spotify ID.\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/episodes/get-an-episode/)**\n     *\n     * @param id The Spotify ID for the episode.\n     * @param market If a country code is specified, only shows and episodes that are available in that market will be returned.\n     * If a valid user access token is specified in the request header, the country associated with the user account will take priority over this parameter.\n     * Note: If neither market or user country are provided, the content is considered unavailable for the client.\n     * Users can view the country that is associated with their account in the account settings. Required for [SpotifyAppApi], but **you may use [Market.FROM_TOKEN] to get the user market**\n     *\n     * @return possibly-null [Episode].\n     */\n    public suspend fun getEpisode(id: String, market: Market): Episode? {\n        return catch {\n            get(\n                endpointBuilder(\"/episodes/${EpisodeUri(id).id.encodeUrl()}\").with(\"market\", market.getSpotifyId()).toString()\n            ).toObject(Episode.serializer(), api, json)\n        }\n    }\n\n    /**\n     * Get Spotify catalog information for multiple episodes based on their Spotify IDs.\n     *\n     * **Invalid episode ids will result in a [BadRequestException]\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/episodes/get-several-episodes/)**\n     *\n     * @param ids The id or uri for the episodes. Maximum **50**.\n     * @param market If a country code is specified, only shows and episodes that are available in that market will be returned.\n     * If a valid user access token is specified in the request header, the country associated with the user account will take priority over this parameter.\n     * Note: If neither market or user country are provided, the content is considered unavailable for the client.\n     * Users can view the country that is associated with their account in the account settings. Required for [SpotifyAppApi], but **you may use [Market.FROM_TOKEN] to get the user market**\n     *\n     * @return List of possibly-null [Episode] objects.\n     * @throws BadRequestException If any invalid show id is provided, if this is a [SpotifyClientApi]\n     */\n    public suspend fun getEpisodes(vararg ids: String, market: Market): List<Episode?> {\n        checkBulkRequesting(50, ids.size)\n\n        return bulkStatelessRequest(50, ids.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/episodes\").with(\"ids\", chunk.joinToString(\",\") { EpisodeUri(it).id.encodeUrl() })\n                    .with(\"market\", market.getSpotifyId()).toString()\n            ).toObject(EpisodeList.serializer(), api, json).episodes\n        }.flatten()\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/FollowingApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.PlaylistUri\nimport com.adamratzman.spotify.models.UserUri\nimport com.adamratzman.spotify.models.serialization.toList\nimport com.adamratzman.spotify.utils.encodeUrl\nimport kotlinx.serialization.builtins.ListSerializer\nimport kotlinx.serialization.builtins.serializer\n\n/**\n * This endpoint allow you check the playlists that a Spotify user follows.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/)**\n */\npublic open class FollowingApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Check to see if one or more Spotify users are following a specified playlist.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/check-user-following-playlist/)**\n     *\n     * @param playlist playlist id or uri\n     * @param users user ids or uris to check. Maximum **5**.\n     *\n     * @return List of Booleans representing whether the user follows the playlist. User IDs **not** found will return false\n     *\n     * @throws [BadRequestException] if the playlist is not found OR any user in the list does not exist\n     */\n    public suspend fun areFollowingPlaylist(\n        playlist: String,\n        vararg users: String\n    ): List<Boolean> {\n        checkBulkRequesting(5, users.size)\n\n        return bulkStatelessRequest(5, users.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/playlists/${PlaylistUri(playlist).id.encodeUrl()}/followers/contains\")\n                    .with(\"ids\", chunk.joinToString(\",\") { UserUri(it).id.encodeUrl() }).toString()\n            ).toList(ListSerializer(Boolean.serializer()), api, json)\n        }.flatten()\n    }\n\n    /**\n     * Check to see if a specific Spotify user is following the specified playlist.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/follow/check-user-following-playlist/)**\n     *\n     * @param playlist playlist id or uri\n     * @param user Spotify user id\n     *\n     * @return booleans representing whether the user follows the playlist. User IDs **not** found will return false\n     *\n     * @throws [BadRequestException] if the playlist is not found or if the user does not exist\n     */\n    public suspend fun isFollowingPlaylist(playlist: String, user: String): Boolean = areFollowingPlaylist(\n        playlist,\n        users = arrayOf(user)\n    )[0]\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/MarketsApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.serialization.toInnerArray\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.serialization.builtins.ListSerializer\nimport kotlinx.serialization.builtins.serializer\n\npublic class MarketsApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get the list of markets where Spotify is available.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/#category-markets)**\n     *\n     * @return List of [Market]\n     */\n    public suspend fun getAvailableMarkets(): List<Market> {\n        return get(endpointBuilder(\"/markets\").toString()).toInnerArray(\n            ListSerializer(String.serializer()),\n            \"markets\",\n            json\n        ).map { Market.valueOf(it.uppercase()) }\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/PlaylistApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyAppApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.Playlist\nimport com.adamratzman.spotify.models.PlaylistTrack\nimport com.adamratzman.spotify.models.PlaylistUri\nimport com.adamratzman.spotify.models.SimplePlaylist\nimport com.adamratzman.spotify.models.SpotifyImage\nimport com.adamratzman.spotify.models.UserUri\nimport com.adamratzman.spotify.models.serialization.toList\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.getSpotifyId\nimport kotlinx.serialization.builtins.ListSerializer\n\n/**\n * Endpoints for retrieving information about a user’s playlists\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/)**\n */\npublic open class PlaylistApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get a list of the playlists owned or followed by a Spotify user. Lookups for non-existant users return an empty\n     * [PagingObject] (blame Spotify)\n     *\n     * **Note that** private playlists are only retrievable for the current user and require the [SpotifyScope.PlaylistReadPrivate] scope\n     * to have been authorized by the user. Note that this scope alone will not return a collaborative playlist, even\n     * though they are always private.\n     * Collaborative playlists are only retrievable for the current user and require the [SpotifyScope.PlaylistReadCollaborative]\n     * scope to have been authorized by the user.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/get-list-users-playlists/)**\n     *\n     * @param user The user’s Spotify user ID.\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @return [PagingObject] of [SimplePlaylist]s **ONLY if** the user can be found. Otherwise, an empty paging object is returned.\n     * This does not have the detail of full [Playlist] objects.\n     *\n     * @throws BadRequestException if the user is not found (404)\n     *\n     */\n    public suspend fun getUserPlaylists(\n        user: String,\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null\n    ): PagingObject<SimplePlaylist> = get(\n        endpointBuilder(\"/users/${UserUri(user).id.encodeUrl()}/playlists\").with(\"limit\", limit).with(\n            \"offset\",\n            offset\n        ).toString()\n    ).toNonNullablePagingObject(SimplePlaylist.serializer(), api = api, json = json)\n\n    /**\n     * Get a playlist owned by a Spotify user.\n     *\n     * **Note that** both Public and Private playlists belonging to any user are retrievable on provision of a valid access token.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/get-playlist/)**\n     *\n     * @param playlist The id or uri for the playlist.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     *\n     * @throws BadRequestException if the playlist is not found\n     */\n    public suspend fun getPlaylist(playlist: String, market: Market? = null): Playlist? = catch {\n        get(\n            endpointBuilder(\"/playlists/${PlaylistUri(playlist).id.encodeUrl()}\")\n                .with(\"market\", market?.getSpotifyId()).toString()\n        ).toObject(Playlist.serializer(), api, json)\n    }\n\n    /**\n     * Get full details of the tracks of a playlist owned by a Spotify user.\n     *\n     * **Note that** both Public and Private playlists belonging to any user are retrievable on provision of a valid access token.\n     *\n     * **Warning:** if the playlist contains podcasts, the tracks will be null if you are using [SpotifyAppApi].\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/get-playlists-tracks/)**\n     *\n     * @param playlist The id or uri for the playlist.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @throws BadRequestException if the playlist cannot be found\n     */\n    public suspend fun getPlaylistTracks(\n        playlist: String,\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null\n    ): PagingObject<PlaylistTrack> = get(\n        endpointBuilder(\"/playlists/${PlaylistUri(playlist).id.encodeUrl()}/tracks\").with(\"limit\", limit)\n            .with(\"offset\", offset).with(\"market\", market?.getSpotifyId()).toString()\n    )\n        .toNonNullablePagingObject(PlaylistTrack.serializer(), null, api, json)\n\n    /**\n     * Get the current image(s) associated with a specific playlist.\n     *\n     * This access token must be issued on behalf of the user. Current playlist image for both Public and Private\n     * playlists of any user are retrievable on provision of a valid access token.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/playlists/get-playlist-cover/)**\n     *\n     * @param playlist The id or uri for the playlist.\n     *\n     * @throws BadRequestException if the playlist cannot be found\n     */\n    public suspend fun getPlaylistCovers(playlist: String): List<SpotifyImage> =\n        get(endpointBuilder(\"/playlists/${PlaylistUri(playlist).id.encodeUrl()}/images\").toString())\n            .toList(ListSerializer(SpotifyImage.serializer()), api, json).toList()\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/SearchApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.Artist\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.Playlist\nimport com.adamratzman.spotify.models.SearchFilter\nimport com.adamratzman.spotify.models.SimpleAlbum\nimport com.adamratzman.spotify.models.SimpleEpisode\nimport com.adamratzman.spotify.models.SimplePlaylist\nimport com.adamratzman.spotify.models.SimpleShow\nimport com.adamratzman.spotify.models.SimpleTrack\nimport com.adamratzman.spotify.models.SpotifySearchResult\nimport com.adamratzman.spotify.models.Track\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport com.adamratzman.spotify.models.serialization.toNullablePagingObject\nimport com.adamratzman.spotify.utils.Language\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.getSpotifyId\nimport kotlinx.serialization.builtins.MapSerializer\nimport kotlinx.serialization.builtins.serializer\nimport kotlinx.serialization.json.JsonObject\n\n/**\n * Get Spotify catalog information about artists, albums, tracks or playlists that match a keyword string.\n * It is possible to have 0 results and no exception thrown with these methods. Check the size of items returned.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n */\npublic open class SearchApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Describes which object to search for\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n     *\n     * @param id The internal id\n     */\n    public enum class SearchType(public val id: String) {\n        Album(\"album\"),\n        Track(\"track\"),\n        Artist(\"artist\"),\n        Playlist(\"playlist\"),\n        Show(\"show\"),\n        Episode(\"episode\");\n        //Audiobook(\"audiobook\"); // TODO Spotify API returns 502 when including this in a search\n    }\n\n    /**\n     * Get Spotify Catalog information about artists, albums, tracks and/or playlists that match a keyword string.\n     *\n     * **Information from Spotify**:\n     * Writing a Query - Guidelines\n     *\n     * Keyword matching:\n     *\n     * Matching of search keywords is not case-sensitive. Operators, however, should be specified in uppercase. Unless surrounded by double quotation marks, keywords are matched in any order. For example: q=roadhouse&20blues matches both “Blues Roadhouse” and “Roadhouse of the Blues”. q=\"roadhouse&20blues\" matches “My Roadhouse Blues” but not “Roadhouse of the Blues”.\n     *\n     * Searching for playlists returns results where the query keyword(s) match any part of the playlist’s name or description. Only popular public playlists are returned.\n     *\n     * Operator: The operator NOT can be used to exclude results.\n     *\n     * For example: q=roadhouse%20NOT%20blues returns items that match “roadhouse” but excludes those that also contain the keyword “blues”.\n     *\n     * Similarly, the OR operator can be used to broaden the search: q=roadhouse%20OR%20blues returns all the results that include either of the terms. Only one OR operator can be used in a query.\n     *\n     * Note: Operators must be specified in uppercase. Otherwise, they are handled as normal keywords to be matched.\n     *\n     * Wildcards: The asterisk (*) character can, with some limitations, be used as a wildcard (maximum: 2 per query). It matches a variable number of non-white-space characters. It cannot be used:\n    - in a quoted phrase\n    - in a field filter\n    - when there is a dash (“-“) in the query\n    - or as the first character of the keyword string Field filters: By default, results are returned when a match is found in any field of the target object type. Searches can be made more specific by specifying an album, artist or track field filter.\n     *\n     * For example: The query q=album:gold%20artist:abba&type=album returns only albums with the text “gold” in the album name and the text “abba” in the artist name.\n     *\n     * To limit the results to a particular year, use the field filter year with album, artist, and track searches.\n     *\n     * For example: q=bob%20year:2014\n     *\n     * Or with a date range. For example: q=bob%20year:1980-2020 To retrieve only albums released in the last two weeks, use the field filter tag:new in album searches.\n     *\n     * To retrieve only albums with the lowest 10% popularity, use the field filter tag:hipster in album searches. Note: This field filter only works with album searches.\n     *\n     * Depending on object types being searched for, other field filters, include genre (applicable to tracks and artists), upc, and isrc. For example: q=lil%20genre:%22southern%20hip%20hop%22&type=artist. Use double quotation marks around the genre keyword string if it contains spaces.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n     *\n     * @param query Search query keywords and optional field filters and operators (filters and operators can be provided in [filters]). You can narrow down your search using field filters. The available filters are album, artist, track, year, upc, tag:hipster, tag:new, isrc, and genre. Each field filter only applies to certain result types.\n\n    The artist filter can be used while searching albums, artists or tracks.\n    The album and year filters can be used while searching albums or tracks. You can filter on a single year or a range (e.g. 1955-1960).\n    The genre filter can be use while searching tracks and artists.\n    The isrc and track filters can be used while searching tracks.\n    The upc, tag:new and tag:hipster filters can only be used while searching albums. The tag:new filter will return albums released in the past two weeks and tag:hipster can be used to return only albums with the lowest 10% popularity.\n\n    You can also use the NOT operator to exclude keywords from your search.\n\n    Example value:\n    \"remaster%20track:Doxy+artist:Miles%20Davis\"\n     * @param filters Optional list of [SearchFilter] to apply to this search.\n     * @param searchTypes A list of item types to search across. Search results include hits from all the specified item types.\n     * @param limit Maximum number of results to return.\n    Default: 20\n    Minimum: 1\n    Maximum: 50\n    Note: The limit is applied within each type, not on the total response.\n    For example, if the limit value is 3 and the type is artist,album, the response contains 3 artists and 3 albums.\n     * @param offset The index of the first result to return.\n    Default: 0 (the first result).\n    Maximum offset (including limit): 10,00.\n    Use with limit to get the next page of search results.\n     * @param market If a country code is specified, only artists, albums, and tracks with content that is playable in that market is returned. Note:\n    - Playlist results are not affected by the market parameter.\n    - If market is set to from_token, and a valid access token is specified in the request header, only content playable in the country associated with the user account, is returned.\n    - Users can view the country that is associated with their account in the account settings. A user must grant access to the [SpotifyScope.UserReadPrivate] scope prior to when the access token is issued.\n     **Note**: episodes will not be returned if this is NOT specified\n     * @param includeExternal If true, the response will include any relevant audio content that is hosted externally. By default external content is filtered out from responses.\n     *\n     * @throws IllegalArgumentException if no search types are provided, or if [SearchType.Episode] is provided but [market] is not\n     */\n    public suspend fun search(\n        query: String,\n        vararg searchTypes: SearchType,\n        filters: List<SearchFilter> = listOf(),\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null,\n        includeExternal: Boolean? = null,\n        language: Language? = null\n    ): SpotifySearchResult {\n        require(searchTypes.isNotEmpty()) { \"At least one search type must be provided\" }\n        if (SearchType.Episode in searchTypes) {\n            requireNotNull(market) { \"Market must be provided when SearchType.EPISODE is requested\" }\n        }\n\n        val jsonString =\n            get(build(query, market, limit, offset, filters, *searchTypes, includeExternal = includeExternal, language = language))\n        val map = json.decodeFromString(MapSerializer(String.serializer(), JsonObject.serializer()), jsonString)\n\n        return SpotifySearchResult(\n            map[\"albums\"]?.toString()?.toNonNullablePagingObject(SimpleAlbum.serializer(), api = api, json = json),\n            map[\"artists\"]?.toString()?.toNonNullablePagingObject(Artist.serializer(), api = api, json = json),\n            map[\"playlists\"]?.toString()\n                ?.toNonNullablePagingObject(SimplePlaylist.serializer(), api = api, json = json),\n            map[\"tracks\"]?.toString()?.toNonNullablePagingObject(Track.serializer(), api = api, json = json),\n            map[\"episodes\"]?.toString()\n                ?.toNullablePagingObject(SimpleEpisode.serializer(), api = api, json = json),\n            map[\"shows\"]?.toString()?.toNullablePagingObject(SimpleShow.serializer(), api = api, json = json)\n        )\n    }\n\n    /**\n     * Get Spotify Catalog information about playlists that match the keyword string. See [SearchApi.search] for more information\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n     *\n     * @param query Search query keywords *without filters*.\n     * @param filters Optional list of [SearchFilter] to apply to this search.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @see [SearchApi.search]\n     *\n     * @return [PagingObject] of full [Playlist] objects ordered by likelihood of correct match\n     * @throws BadRequestException if filters are illegal or query is malformed\n     */\n    public suspend fun searchPlaylist(\n        query: String,\n        filters: List<SearchFilter> = listOf(),\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null,\n        language: Language? = null\n    ): PagingObject<SimplePlaylist> = get(build(query, market, limit, offset, filters, SearchType.Playlist, language = language))\n        .toNonNullablePagingObject(SimplePlaylist.serializer(), \"playlists\", api, json)\n\n    /**\n     * Get Spotify Catalog information about artists that match the keyword string. See [SearchApi.search] for more information\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n     *\n     * @param query Search query keywords *without filters*.\n     * @param filters Optional list of [SearchFilter] to apply to this search.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @see [SearchApi.search]\n     *\n     * @return [PagingObject] of full [Artist] objects ordered by likelihood of correct match\n     *\n     * @throws BadRequestException if filters are illegal or query is malformed\n     */\n    public suspend fun searchArtist(\n        query: String,\n        filters: List<SearchFilter> = listOf(),\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null,\n        language: Language? = null\n    ): PagingObject<Artist> = get(build(query, market, limit, offset, filters, SearchType.Artist, language = language))\n        .toNonNullablePagingObject(Artist.serializer(), \"artists\", api, json)\n\n    /**\n     * Get Spotify Catalog information about albums that match the keyword string. See [SearchApi.search] for more information\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n     *\n     * @param query Search query keywords *without filters*.\n     * @param filters Optional list of [SearchFilter] to apply to this search.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @see [SearchApi.search]\n     *\n     * @return [PagingObject] of non-full [SimpleAlbum] objects ordered by likelihood of correct match\n     *\n     * @throws BadRequestException if filters are illegal or query is malformed\n     */\n    public suspend fun searchAlbum(\n        query: String,\n        filters: List<SearchFilter> = listOf(),\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null,\n        language: Language? = null\n    ): PagingObject<SimpleAlbum> = get(build(query, market, limit, offset, filters, SearchType.Album, language = language))\n        .toNonNullablePagingObject(SimpleAlbum.serializer(), \"albums\", api, json)\n\n    /**\n     * Get Spotify Catalog information about tracks that match the keyword string. See [SearchApi.search] for more information\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n     *\n     * @param query Search query keywords *without filters*.\n     * @param filters Optional list of [SearchFilter] to apply to this search.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @see [SearchApi.search]\n     *\n     * @return [PagingObject] of non-full [SimpleTrack] objects ordered by likelihood of correct match\n     *\n     * @throws BadRequestException if filters are illegal or query is malformed\n     */\n    public suspend fun searchTrack(\n        query: String,\n        filters: List<SearchFilter> = listOf(),\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market? = null,\n        language: Language? = null\n    ): PagingObject<Track> = get(build(query, market, limit, offset, filters, SearchType.Track, language = language))\n        .toNonNullablePagingObject(Track.serializer(), \"tracks\", api, json)\n\n    /**\n     * Get Spotify Catalog information about shows that match the keyword string. See [SearchApi.search] for more information\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n     *\n     * @param query Search query keywords *without filters*.\n     * @param filters Optional list of [SearchFilter] to apply to this search.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @see [SearchApi.search]\n     *\n     * @return [PagingObject] of non-full [SimpleShow] objects ordered by likelihood of correct match\n     *\n     * @throws BadRequestException if filters are illegal or query is malformed\n     */\n    public suspend fun searchShow(\n        query: String,\n        filters: List<SearchFilter> = listOf(),\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market,\n        language: Language? = null\n    ): PagingObject<SimpleShow> = get(build(query, market, limit, offset, filters, SearchType.Show, language = language))\n        .toNonNullablePagingObject(SimpleShow.serializer(), \"shows\", api, json)\n\n    /**\n     * Get Spotify Catalog information about episodes that match the keyword string. See [SearchApi.search] for more information\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n     *\n     * @param query Search query keywords *without filters*.\n     * @param filters Optional list of [SearchFilter] to apply to this search.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @see [SearchApi.search]\n     *\n     * @return [PagingObject] of non-full [SimpleEpisode] objects ordered by likelihood of correct match\n     *\n     * @throws BadRequestException if filters are illegal or query is malformed\n     */\n    public suspend fun searchEpisode(\n        query: String,\n        filters: List<SearchFilter> = listOf(),\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market,\n        language: Language? = null\n    ): PagingObject<SimpleEpisode> = get(build(query, market, limit, offset, filters, SearchType.Episode, language = language))\n        .toNonNullablePagingObject(SimpleEpisode.serializer(), \"episodes\", api, json)\n\n    /**\n     * Get Spotify Catalog information about any searchable type that match the keyword string. See [SearchApi.search] for more information\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/search/search/)**\n     *\n     * @param query Search query keywords *without filters*.\n     * @param filters Optional list of [SearchFilter] to apply to this search.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @see [SearchApi.search]\n     *\n     * @throws BadRequestException if filters are illegal or query is malformed\n     */\n    public suspend fun searchAllTypes(\n        query: String,\n        filters: List<SearchFilter> = listOf(),\n        limit: Int? = api.spotifyApiOptions.defaultLimit,\n        offset: Int? = null,\n        market: Market,\n        language: Language? = null\n    ): SpotifySearchResult =\n        search(query, filters = filters, searchTypes = SearchType.entries.toTypedArray(), limit = limit, offset = offset, market = market, language = language)\n\n    protected fun build(\n        query: String,\n        market: Market?,\n        limit: Int?,\n        offset: Int?,\n        filters: List<SearchFilter> = listOf(),\n        vararg types: SearchType,\n        includeExternal: Boolean? = null,\n        language: Language? = null\n    ): String {\n        val queryString = if (filters.isEmpty()) query\n        else \"$query ${filters.joinToString(\" \") { \"${it.filterType.id}:${it.filterValue}\" }}\"\n\n        return endpointBuilder(\"/search\")\n            .with(\"q\", queryString.encodeUrl())\n            .with(\"type\", types.joinToString(\",\") { it.id })\n            .with(\"market\", market?.getSpotifyId()).with(\"limit\", limit).with(\"offset\", offset)\n            .with(\"locale\", language?.name)\n            .with(\"include_external\", if (includeExternal == true) \"audio\" else null).toString()\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/ShowApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyAppApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.Show\nimport com.adamratzman.spotify.models.ShowList\nimport com.adamratzman.spotify.models.ShowUri\nimport com.adamratzman.spotify.models.SimpleEpisode\nimport com.adamratzman.spotify.models.SimpleShow\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.getSpotifyId\n\n/**\n * Endpoints for retrieving information about one or more shows and their episodes from the Spotify catalog.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/shows/)**\n */\npublic open class ShowApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get Spotify catalog information for a single show identified by its unique Spotify ID.\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/tracks/get-track/)**\n     *\n     * @param id The Spotify ID for the show.\n     * @param market If a country code is specified, only shows and episodes that are available in that market will be returned.\n     * If a valid user access token is specified in the request header, the country associated with the user account will take priority over this parameter.\n     * Note: If neither market or user country are provided, the content is considered unavailable for the client.\n     * Users can view the country that is associated with their account in the account settings. Required for [SpotifyAppApi], but **you may use [Market.FROM_TOKEN] to get the user market**\n     *\n     * @return possibly-null Show. This behavior is *not the same* as in [getShows]\n     */\n    public suspend fun getShow(id: String, market: Market): Show? {\n        return catch {\n            get(\n                endpointBuilder(\"/shows/${ShowUri(id).id.encodeUrl()}\").with(\"market\", market.getSpotifyId()).toString()\n            ).toObject(Show.serializer(), api, json)\n        }\n    }\n\n    /**\n     * Get Spotify catalog information for multiple shows based on their Spotify IDs.\n     *\n     * **Invalid show ids will result in a [BadRequestException]\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/shows/get-several-shows/)**\n     *\n     * @param ids The id or uri for the shows. Maximum **50**.\n     * @param market If a country code is specified, only shows and episodes that are available in that market will be returned.\n     * If a valid user access token is specified in the request header, the country associated with the user account will take priority over this parameter.\n     * Note: If neither market or user country are provided, the content is considered unavailable for the client.\n     * Users can view the country that is associated with their account in the account settings. Required for [SpotifyAppApi], but **you may use [Market.FROM_TOKEN] to get the user market**\n     *\n     * @return List of possibly-null [SimpleShow] objects, if the show was not found or invalid ids were provided.\n     */\n    public suspend fun getShows(vararg ids: String, market: Market): List<SimpleShow?> {\n        checkBulkRequesting(50, ids.size)\n        return bulkStatelessRequest(50, ids.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/shows\").with(\"ids\", chunk.joinToString(\",\") { ShowUri(it).id.encodeUrl() })\n                    .with(\"market\", market.getSpotifyId()).toString()\n            ).toObject(ShowList.serializer(), api, json).shows\n        }.flatten()\n    }\n\n    /**\n     * Get Spotify catalog information about an show’s episodes.\n     *\n     * **Reading the user’s resume points on episode objects requires the [SpotifyScope.UserReadPlaybackPosition] scope**\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/shows/get-shows-episodes/)**\n     *\n     * @param id The Spotify ID for the show.\n     * @param market If a country code is specified, only shows and episodes that are available in that market will be returned.\n     * If a valid user access token is specified in the request header, the country associated with the user account will take priority over this parameter.\n     * Note: If neither market or user country are provided, the content is considered unavailable for the client.\n     * Users can view the country that is associated with their account in the account settings. Required for [SpotifyAppApi], but **you may use [Market.FROM_TOKEN] to get the user market**\n     * @param limit The number of objects to return. Default: 20 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     *\n     * @throws BadRequestException if the playlist cannot be found\n     */\n    public suspend fun getShowEpisodes(\n        id: String,\n        limit: Int? = null,\n        offset: Int? = null,\n        market: Market\n    ): PagingObject<SimpleEpisode> = get(\n        endpointBuilder(\"/shows/${ShowUri(id).id.encodeUrl()}/episodes\").with(\"limit\", limit)\n            .with(\"offset\", offset).with(\"market\", market.getSpotifyId()).toString()\n    ).toNonNullablePagingObject(SimpleEpisode.serializer(), null, api, json)\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/TrackApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.AudioAnalysis\nimport com.adamratzman.spotify.models.AudioFeatures\nimport com.adamratzman.spotify.models.AudioFeaturesResponse\nimport com.adamratzman.spotify.models.PlayableUri\nimport com.adamratzman.spotify.models.Track\nimport com.adamratzman.spotify.models.TrackList\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.encodeUrl\nimport com.adamratzman.spotify.utils.getSpotifyId\n\n/**\n * Endpoints for retrieving information about one or more tracks from the Spotify catalog.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/tracks/)**\n */\npublic class TrackApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get Spotify catalog information for a single track identified by its unique Spotify ID.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/tracks/get-track/)**\n     *\n     * @param track The id or uri for the track.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     *\n     * @return possibly-null Track. This behavior is *the same* as in [getTracks]\n     */\n    public suspend fun getTrack(track: String, market: Market? = null): Track? = catch {\n        get(\n            endpointBuilder(\"/tracks/${PlayableUri(track).id.encodeUrl()}\").with(\n                \"market\",\n                market?.getSpotifyId()\n            ).toString()\n        ).toObject(Track.serializer(), api, json)\n    }\n\n    /**\n     * Get Spotify catalog information for multiple tracks based on their Spotify IDs.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/tracks/get-several-tracks/)**\n     *\n     * @param tracks The id or uri for the tracks. Maximum **50**.\n     * @param market Provide this parameter if you want to apply [Track Relinking](https://github.com/adamint/spotify-web-api-kotlin#track-relinking)\n     *\n     * @return List of possibly-null full [Track] objects.\n     */\n    public suspend fun getTracks(vararg tracks: String, market: Market? = null): List<Track?> {\n        checkBulkRequesting(50, tracks.size)\n        return bulkStatelessRequest(50, tracks.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/tracks\").with(\"ids\", chunk.joinToString(\",\") { PlayableUri(it).id.encodeUrl() })\n                    .with(\"market\", market?.getSpotifyId()).toString()\n            ).toObject(TrackList.serializer(), api, json).tracks\n        }.flatten()\n    }\n\n    /**\n     * Get a detailed audio analysis for a single track identified by its unique Spotify ID.\n     *\n     * The Audio Analysis endpoint provides low-level audio analysis for all of the tracks in the Spotify catalog.\n     * The Audio Analysis describes the track’s structure and musical content, including rhythm, pitch, and timbre.\n     * All information is precise to the audio sample.\n     *\n     * Many elements of analysis include confidence values, a floating-point number ranging from 0.0 to 1.0.\n     * Confidence indicates the reliability of its corresponding attribute. Elements carrying a small confidence value\n     * should be considered speculative. There may not be sufficient data in the audio to compute the attribute with\n     * high certainty.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/tracks/get-audio-analysis/)**\n     *\n     * @param track The id or uri for the track.\n     *\n     * @throws BadRequestException if [track] cannot be found\n     */\n    public suspend fun getAudioAnalysis(track: String): AudioAnalysis =\n        get(endpointBuilder(\"/audio-analysis/${PlayableUri(track).id.encodeUrl()}\").toString())\n            .toObject(AudioAnalysis.serializer(), api, json)\n\n    /**\n     * Get audio feature information for a single track identified by its unique Spotify ID.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/tracks/get-audio-features/)**\n     *\n     * @param track The id or uri for the track.\n     *\n     * @throws BadRequestException if [track] cannot be found\n     */\n    public suspend fun getAudioFeatures(track: String): AudioFeatures =\n        get(endpointBuilder(\"/audio-features/${PlayableUri(track).id.encodeUrl()}\").toString())\n            .toObject(AudioFeatures.serializer(), api, json)\n\n    /**\n     * Get audio features for multiple tracks based on their Spotify IDs.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/tracks/get-several-audio-features/)**\n     *\n     * @param tracks vararg of track ids or uris. Maximum **100**.\n     *\n     * @return Ordered list of possibly-null [AudioFeatures] objects.\n     */\n    public suspend fun getAudioFeatures(vararg tracks: String): List<AudioFeatures?> {\n        checkBulkRequesting(100, tracks.size)\n        return bulkStatelessRequest(100, tracks.toList()) { chunk ->\n            get(\n                endpointBuilder(\"/audio-features\").with(\n                    \"ids\",\n                    chunk.joinToString(\",\") { PlayableUri(it).id.encodeUrl() }\n                ).toString()\n            )\n                .toObject(AudioFeaturesResponse.serializer(), api, json).audioFeatures\n        }.flatten()\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/endpoints/pub/UserApi.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.endpoints.pub\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.http.SpotifyEndpoint\nimport com.adamratzman.spotify.models.SpotifyPublicUser\nimport com.adamratzman.spotify.models.UserUri\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.catch\nimport com.adamratzman.spotify.utils.encodeUrl\n\n/**\n * Endpoints for retrieving information about a user’s profile.\n *\n * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/users-profile/)**\n */\npublic open class UserApi(api: GenericSpotifyApi) : SpotifyEndpoint(api) {\n    /**\n     * Get public profile information about a Spotify user.\n     *\n     * **[Api Reference](https://developer.spotify.com/documentation/web-api/reference/users-profile/get-users-profile/)**\n     *\n     * @param user The user’s Spotify user ID.\n     *\n     * @return All publicly-available information about the user\n     */\n    public suspend fun getProfile(user: String): SpotifyPublicUser? = catch(/* some incorrect user ids will return 500 */ catchInternalServerError = true) {\n        get(endpointBuilder(\"/users/${UserUri(user).id.encodeUrl()}\").toString())\n            .toObject(SpotifyPublicUser.serializer(), api, json)\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/http/Endpoints.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.http\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyException.TimeoutException\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.models.ErrorObject\nimport com.adamratzman.spotify.models.ErrorResponse\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.adamratzman.spotify.utils.ConcurrentHashMap\nimport com.adamratzman.spotify.utils.getCurrentTimeMs\nimport io.ktor.http.HttpStatusCode\nimport kotlinx.coroutines.*\nimport kotlinx.serialization.Serializable\nimport kotlinx.serialization.Transient\nimport kotlin.math.ceil\n\npublic abstract class SpotifyEndpoint(public val api: GenericSpotifyApi) {\n    public val cache: SpotifyCache = SpotifyCache()\n    internal val json get() = api.spotifyApiOptions.json\n\n    internal fun endpointBuilder(path: String) = EndpointBuilder(path, api)\n\n    protected fun checkBulkRequesting(maxSize: Int, itemSize: Int) {\n        if (itemSize > maxSize && !api.spotifyApiOptions.allowBulkRequests) {\n            throw BadRequestException(\n                \"Too many items ($itemSize) provided, only $maxSize allowed\",\n                IllegalArgumentException(\"Bulk requests (SpotifyApi.spotifyApiOptions.allowBulkRequests) are not turned on, and too many items were provided\")\n            )\n        }\n        if (itemSize == 0) throw BadRequestException(\"No items provided!\")\n    }\n\n    protected fun requireScopes(vararg requiredScopes: SpotifyScope, anyOf: Boolean = false) {\n        val scopes = api.token.scopes ?: return\n        val notFoundScopes = requiredScopes.filter { it !in scopes }\n        if ((!anyOf && notFoundScopes.isNotEmpty()) || (anyOf && scopes.none { it in requiredScopes })) {\n            throw SpotifyException.SpotifyScopesNeededException(missingScopes = notFoundScopes)\n        }\n    }\n\n    /**\n     * Allow support for parallel execution of chunked requests\n     */\n    protected suspend fun <T, R> bulkStatelessRequest(\n        chunkSize: Int,\n        items: List<T>,\n        producer: suspend (List<T>) -> R\n    ): List<R> {\n        return coroutineScope {\n            items.chunked(chunkSize).map { chunk ->\n                async {\n                    producer(chunk)\n                }\n            }.awaitAll()\n        }\n    }\n\n    /**\n     * Allow sequential execution of chunked requests for stateful requests\n     */\n    protected suspend fun <T, R> bulkStatefulRequest(\n        chunkSize: Int,\n        items: List<T>,\n        producer: suspend (List<T>) -> R\n    ): List<R> {\n        return coroutineScope {\n            items.chunked(chunkSize).map { chunk -> producer(chunk) }\n        }\n    }\n\n    internal open suspend fun get(url: String): String {\n        return execute<String>(url)\n    }\n\n    internal suspend fun getNullable(url: String): String? {\n        return execute(url, retryOnNull = false)\n    }\n\n    internal open suspend fun post(url: String, body: String? = null, contentType: String? = null): String {\n        return execute(url, body, HttpRequestMethod.POST, contentType = contentType, retryOnNull = false)\n    }\n\n    internal open suspend fun put(url: String, body: String? = null, contentType: String? = null): String {\n        return execute(url, body, HttpRequestMethod.PUT, contentType = contentType, retryOnNull = false)\n    }\n\n    internal suspend fun delete(\n        url: String,\n        body: String? = null,\n        contentType: String? = null\n    ): String {\n        return execute(url, body, HttpRequestMethod.DELETE, contentType = contentType, retryOnNull = false)\n    }\n\n    @Suppress(\"UNCHECKED_CAST\")\n    internal open suspend fun <ReturnType : String?> execute(\n        url: String,\n        body: String? = null,\n        method: HttpRequestMethod = HttpRequestMethod.GET,\n        retry202: Boolean = true,\n        contentType: String? = null,\n        attemptedRefresh: Boolean = false,\n        retryOnNull: Boolean = true\n    ): ReturnType {\n        if (api.token.shouldRefresh()) {\n            if (!api.spotifyApiOptions.automaticRefresh) {\n                throw SpotifyException.ReAuthenticationNeededException(message = \"The access token has expired.\")\n            } else {\n                api.refreshToken()\n            }\n        }\n\n        val spotifyRequest = SpotifyRequest(url, method, body, api)\n        val cacheState = if (api.useCache) cache[spotifyRequest] else null\n\n        if (cacheState?.isStillValid() == true) {\n            return cacheState.data as ReturnType\n        } else if (cacheState?.let { it.eTag == null } == true) {\n            cache -= spotifyRequest\n        }\n\n        try {\n            return withTimeout(api.spotifyApiOptions.requestTimeoutMillis ?: (100 * 1000L)) {\n                try {\n                    val httpRequest = createConnection(url, body, method, contentType)\n                    val document = httpRequest.execute(\n                        additionalHeaders = cacheState?.eTag?.let {\n                            listOf(HttpHeader(\"If-None-Match\", it))\n                        },\n                        retryIfInternalServerErrorLeft = api.spotifyApiOptions.retryOnInternalServerErrorTimes\n                    )\n\n                    val response = handleResponse(document, cacheState, spotifyRequest, retry202) ?: run {\n                        if (retryOnNull) {\n                            execute<ReturnType>(url, body, method, false, contentType, retryOnNull)\n                        } else {\n                            null\n                        }\n                    }\n\n                    api.spotifyApiOptions.httpResponseSubscriber?.let { subscriber ->\n                        launch(currentCoroutineContext()) {\n                            subscriber(httpRequest, document)\n                        }\n                    }\n\n                    response\n                } catch (e: BadRequestException) {\n                    if (e.statusCode == 401 && !attemptedRefresh) {\n                        api.refreshToken()\n\n                        execute<ReturnType>(\n                            url,\n                            body,\n                            method,\n                            retry202,\n                            contentType,\n                            true,\n                            retryOnNull\n                        )\n                    } else {\n                        throw e\n                    }\n                }\n            } as ReturnType\n        } catch (e: CancellationException) {\n            throw TimeoutException(\n                e.message\n                    ?: \"The request $spotifyRequest timed out after (${api.spotifyApiOptions.requestTimeoutMillis ?: (100_000)}ms.\",\n                e\n            )\n        }\n    }\n\n    private fun handleResponse(\n        document: HttpResponse,\n        cacheState: CacheState?,\n        spotifyRequest: SpotifyRequest,\n        retry202: Boolean\n    ): String? {\n        val statusCode = document.responseCode\n\n        if (statusCode == HttpStatusCode.NotModified.value) {\n            requireNotNull(cacheState?.eTag) { \"304 status only allowed on Etag-able endpoints\" }\n            return cacheState?.data\n        } else if (statusCode == HttpStatusCode.NoContent.value) {\n            return null\n        }\n\n        val responseBody = document.body\n\n        document.headers.find { it.key.equals(\"Cache-Control\", true) }?.also { cacheControlHeader ->\n            if (api.useCache) {\n                cache[spotifyRequest] = (\n                    cacheState ?: CacheState(\n                        responseBody,\n                        document.headers\n                            .find { it.key.equals(\"ETag\", true) }?.value\n                    )\n                    ).update(cacheControlHeader.value)\n            }\n        }\n\n        if (document.responseCode !in 200..399 /* Check if status is not 2xx or 3xx */) {\n            val response = try {\n                document.body.toObject(ErrorResponse.serializer(), api, api.spotifyApiOptions.json)\n            } catch (e: Exception) {\n                ErrorResponse(ErrorObject(400, \"malformed request sent\"), e)\n            }\n            throw BadRequestException(response.error)\n        } else if (document.responseCode == 202 && retry202) return null\n        return responseBody\n    }\n\n    private fun createConnection(\n        url: String,\n        body: String? = null,\n        method: HttpRequestMethod = HttpRequestMethod.GET,\n        contentType: String? = null\n    ) = HttpRequest(\n        url,\n        method,\n        null,\n        body,\n        contentType,\n        listOf(HttpHeader(\"Authorization\", \"Bearer ${api.token.accessToken}\")),\n        api\n    )\n}\n\ninternal class EndpointBuilder(private val path: String, api: GenericSpotifyApi) {\n    val base = api.spotifyApiOptions.proxyBaseUrl ?: api.spotifyApiBase\n    private val builder = StringBuilder(base + path)\n\n    fun with(key: String, value: Any?): EndpointBuilder {\n        if (value != null && (value !is String || value.isNotEmpty())) {\n            if (builder.toString() == base + path) {\n                builder.append(\"?\")\n            } else {\n                builder.append(\"&\")\n            }\n            builder.append(key).append(\"=\").append(value.toString())\n        }\n        return this\n    }\n\n    override fun toString() = builder.toString()\n}\n\npublic class SpotifyCache {\n    public val cachedRequests: ConcurrentHashMap<SpotifyRequest, CacheState> = ConcurrentHashMap()\n\n    internal operator fun get(request: SpotifyRequest): CacheState? {\n        checkCache(request)\n        return cachedRequests[request]\n    }\n\n    internal operator fun set(request: SpotifyRequest, state: CacheState) {\n        if (request.api.useCache) cachedRequests.put(request, state)\n\n        checkCache(request)\n    }\n\n    internal operator fun minusAssign(request: SpotifyRequest) {\n        checkCache(request)\n        cachedRequests.remove(request)\n    }\n\n    public fun clear(): Unit = cachedRequests.clear()\n\n    private fun checkCache(request: SpotifyRequest) {\n        if (!request.api.useCache) {\n            clear()\n        } else {\n            cachedRequests.entries.removeAll { !it.value.isStillValid() }\n\n            val cacheLimit = request.api.spotifyApiOptions.cacheLimit\n            val cacheUse = cachedRequests.size\n\n            if (cacheLimit != null && cacheUse > cacheLimit) {\n                val amountRemoveFromEach = ceil((cacheUse - cacheLimit).toDouble() / request.api.endpoints.size).toInt()\n\n                val entries = cachedRequests.entries\n\n                val toRemove = entries.sortedBy { it.value.expireBy }.take(amountRemoveFromEach)\n\n                if (toRemove.isNotEmpty()) entries.removeAll(toRemove)\n            }\n        }\n    }\n}\n\npublic data class SpotifyRequest(\n    val url: String,\n    val method: HttpRequestMethod,\n    val body: String?,\n    val api: GenericSpotifyApi\n)\n\n@Serializable\npublic data class CacheState(val data: String, val eTag: String?, val expireBy: Long = 0) {\n    @Transient\n    private val cacheRegex = \"max-age=(\\\\d+)\".toRegex()\n    internal fun isStillValid(): Boolean = getCurrentTimeMs() <= this.expireBy\n\n    internal fun update(expireBy: String): CacheState {\n        val group = cacheRegex.find(expireBy)?.groupValues\n        val time =\n            group?.getOrNull(1)?.toLongOrNull() ?: throw BadRequestException(\"Unable to match regex\")\n\n        return this.copy(\n            expireBy = getCurrentTimeMs() + 1000 * time\n        )\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/http/HttpRequest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.http\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyApiOptions\nimport com.adamratzman.spotify.SpotifyException.AuthenticationException\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.SpotifyException.ParseException\nimport com.adamratzman.spotify.models.AuthenticationError\nimport com.adamratzman.spotify.models.ErrorResponse\nimport com.adamratzman.spotify.models.SpotifyRatelimitedException\nimport com.adamratzman.spotify.models.serialization.nonstrictJson\nimport com.adamratzman.spotify.models.serialization.toObject\nimport com.soywiz.klogger.Console\nimport com.soywiz.korio.async.launch\nimport io.ktor.client.HttpClient\nimport io.ktor.client.plugins.ResponseException\nimport io.ktor.client.request.HttpRequestBuilder\nimport io.ktor.client.request.header\nimport io.ktor.client.request.request\nimport io.ktor.client.request.setBody\nimport io.ktor.client.request.url\nimport io.ktor.client.statement.bodyAsText\nimport io.ktor.http.ContentType\nimport io.ktor.http.HttpMethod\nimport io.ktor.http.content.ByteArrayContent\nimport io.ktor.utils.io.core.toByteArray\nimport kotlinx.coroutines.CancellationException\nimport kotlinx.coroutines.currentCoroutineContext\nimport kotlinx.coroutines.delay\nimport kotlinx.serialization.Serializable\n\npublic enum class HttpRequestMethod(internal val externalMethod: HttpMethod) {\n    GET(HttpMethod.Get),\n    POST(HttpMethod.Post),\n    PUT(HttpMethod.Put),\n    DELETE(HttpMethod.Delete);\n}\n\n@Serializable\npublic data class HttpHeader(val key: String, val value: String)\n\n@Serializable\npublic data class HttpResponse(val responseCode: Int, val body: String, val headers: List<HttpHeader>)\n\npublic typealias HttpConnection = HttpRequest\n\n/**\n * Provides a fast, easy, and slim way to execute and retrieve HTTP GET, POST, PUT, and DELETE requests\n */\npublic class HttpRequest constructor(\n    public val url: String,\n    public val method: HttpRequestMethod,\n    public val bodyMap: Map<*, *>?,\n    public val bodyString: String?,\n    contentType: String?,\n    public val headers: List<HttpHeader> = listOf(),\n    public val api: GenericSpotifyApi? = null\n) {\n    public val contentType: ContentType = contentType?.let { ContentType.parse(it) } ?: ContentType.Application.Json\n\n    public fun String?.toByteArrayContent(): ByteArrayContent? {\n        return if (this == null) null else ByteArrayContent(this.toByteArray(), contentType)\n    }\n\n    public fun buildRequest(additionalHeaders: List<HttpHeader>?): HttpRequestBuilder = HttpRequestBuilder().apply {\n        url(this@HttpRequest.url)\n        method = this@HttpRequest.method.externalMethod\n\n        setBody(\n            when (this@HttpRequest.method) {\n                HttpRequestMethod.DELETE -> {\n                    bodyString.toByteArrayContent() ?: body\n                }\n\n                HttpRequestMethod.PUT, HttpRequestMethod.POST -> {\n                    val contentString = if (contentType == ContentType.Application.FormUrlEncoded) {\n                        bodyMap?.map { \"${it.key}=${it.value}\" }?.joinToString(\"&\") ?: bodyString\n                    } else {\n                        bodyString\n                    }\n\n                    contentString.toByteArrayContent() ?: ByteArrayContent(\"\".toByteArray(), contentType)\n                }\n\n                else -> body\n            }\n        )\n\n        // let additionalHeaders overwrite headers\n        val allHeaders = if (additionalHeaders == null) {\n            this@HttpRequest.headers\n        } else {\n            this@HttpRequest.headers.filter { oldHeaders -> oldHeaders.key !in additionalHeaders.map { it.key } } + additionalHeaders\n        }\n\n        allHeaders.forEach { (key, value) ->\n            header(key, value)\n        }\n    }\n\n    public suspend fun execute(\n        additionalHeaders: List<HttpHeader>? = null,\n        retryIfInternalServerErrorLeft: Int? = SpotifyApiOptions().retryOnInternalServerErrorTimes // default\n    ): HttpResponse {\n        val httpRequest = buildRequest(additionalHeaders)\n        if (api?.spotifyApiOptions?.enableDebugMode == true) Console.debug(\"Request: $this\")\n        try {\n            return httpClient.request(httpRequest).let { response ->\n                val respCode = response.status.value\n\n                if (respCode in 500..599 && (retryIfInternalServerErrorLeft == null || retryIfInternalServerErrorLeft == -1 || retryIfInternalServerErrorLeft > 0)) {\n                    if (api?.spotifyApiOptions?.enableDebugMode == true) Console.debug(\"Received internal server error $respCode, attempting to retry ($retryIfInternalServerErrorLeft tries left)\")\n                    return@let execute(\n                        additionalHeaders,\n                        retryIfInternalServerErrorLeft =\n                        if (retryIfInternalServerErrorLeft != null && retryIfInternalServerErrorLeft != -1) {\n                            retryIfInternalServerErrorLeft - 1\n                        } else {\n                            retryIfInternalServerErrorLeft\n                        }\n                    )\n                }\n                // otherwise, if it's 5xx and retryIfInternalServerErrorLeft == 0 we just continue and fail\n\n                if (respCode == 429) {\n                    if (api?.spotifyApiOptions?.enableDebugMode == true) Console.debug(\"Received 429, attempting to retry\")\n                    val ratelimit = response.headers[\"Retry-After\"]!!.toLong() + 1L\n                    if (api?.spotifyApiOptions?.retryWhenRateLimited == true) {\n                        delay(ratelimit * 1000)\n                        return@let execute(\n                            additionalHeaders,\n                            retryIfInternalServerErrorLeft = retryIfInternalServerErrorLeft\n                        )\n                    } else {\n                        throw SpotifyRatelimitedException(ratelimit)\n                    }\n                }\n\n                val body: String = response.bodyAsText()\n                if (api?.spotifyApiOptions?.enableDebugMode == true) {\n                    Console.debug(\"Request status: $respCode - body: $body\")\n                }\n\n                if (respCode == 401 && body.contains(\"access token\") && api?.spotifyApiOptions?.automaticRefresh == true) {\n                    api.refreshToken()\n                    val newAdditionalHeaders =\n                        additionalHeaders?.toMutableList()?.filter { it.key != \"Authorization\" }?.toMutableList()\n                            ?: mutableListOf()\n                    newAdditionalHeaders.add(HttpHeader(\"Authorization\", \"Bearer ${api.token.accessToken}\"))\n                    return execute(\n                        newAdditionalHeaders,\n                        retryIfInternalServerErrorLeft = retryIfInternalServerErrorLeft\n                    )\n                }\n\n                val httpResponseToReturn = HttpResponse(\n                    responseCode = respCode,\n                    body = body,\n                    headers = response.headers.entries().map { (key, value) ->\n                        HttpHeader(\n                            key,\n                            value.getOrNull(0) ?: \"null\"\n                        )\n                    }\n                )\n\n                return httpResponseToReturn\n            }\n        } catch (e: CancellationException) {\n            throw e\n        } catch (e: ResponseException) {\n            val errorBody = e.response.bodyAsText()\n            if (api?.spotifyApiOptions?.enableDebugMode == true) Console.debug(\"Error body: $errorBody\")\n            try {\n                val respCode = e.response.status.value\n\n                if (respCode in 500..599 && (retryIfInternalServerErrorLeft == null || retryIfInternalServerErrorLeft == -1 || retryIfInternalServerErrorLeft > 0)) {\n                    return execute(\n                        additionalHeaders,\n                        retryIfInternalServerErrorLeft =\n                        if (retryIfInternalServerErrorLeft != null && retryIfInternalServerErrorLeft != -1) {\n                            retryIfInternalServerErrorLeft - 1\n                        } else {\n                            retryIfInternalServerErrorLeft\n                        }\n                    )\n                }\n\n                if (respCode == 429) {\n                    val ratelimit = e.response.headers[\"Retry-After\"]!!.toLong() + 1L\n                    if (api?.spotifyApiOptions?.retryWhenRateLimited == true) {\n                        // println(\"The request ($url) was ratelimited for $ratelimit seconds at ${getCurrentTimeMs()}\")\n                        delay(ratelimit * 1000)\n                        return execute(\n                            additionalHeaders,\n                            retryIfInternalServerErrorLeft = retryIfInternalServerErrorLeft\n                        )\n                    } else {\n                        throw SpotifyRatelimitedException(ratelimit)\n                    }\n                }\n\n                if (e.response.status.value == 401 && errorBody.contains(\"access token\") &&\n                    api != null && api.spotifyApiOptions.automaticRefresh\n                ) {\n                    api.refreshToken()\n                    val newAdditionalHeaders =\n                        additionalHeaders?.toMutableList()?.filter { it.key != \"Authorization\" }?.toMutableList()\n                            ?: mutableListOf()\n                    newAdditionalHeaders.add(HttpHeader(\"Authorization\", \"Bearer ${api.token.accessToken}\"))\n                    return execute(\n                        newAdditionalHeaders,\n                        retryIfInternalServerErrorLeft = retryIfInternalServerErrorLeft\n                    )\n                }\n\n                val error = errorBody.toObject(\n                    ErrorResponse.serializer(),\n                    api,\n                    api?.spotifyApiOptions?.json ?: nonstrictJson\n                ).error\n                throw BadRequestException(error.copy(reason = (error.reason ?: \"\") + \" URL: $url\"))\n            } catch (ignored: ParseException) {\n                try {\n                    val error = errorBody.toObject(\n                        AuthenticationError.serializer(),\n                        api,\n                        api?.spotifyApiOptions?.json ?: nonstrictJson\n                    )\n                    throw AuthenticationException(error)\n                } catch (ignored: ParseException) {\n                    throw BadRequestException(e)\n                }\n            }\n        }\n    }\n\n    override fun toString(): String {\n        // we don't want to print this sensitive information\n        val headersWithoutAuthorization = headers.filter { it.key != \"Authorization\" }\n        val hasAuthorizationHeader = headersWithoutAuthorization.size != headers.size\n        return \"\"\"HttpConnection(\n            |url=$url,\n            |method=$method,\n            |body=${bodyString ?: bodyMap},\n            |contentType=$contentType,\n            |headers=${headersWithoutAuthorization.toList()}\n            |${if (hasAuthorizationHeader) \"The authorization header was hidden.\" else \"There was no authorization header.\"})\n        \"\"\".trimMargin()\n    }\n\n    internal companion object {\n        internal val httpClient = HttpClient {\n            expectSuccess = false\n        }\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Albums.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyRestAction\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.match\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * Simplified Album object that can be used to retrieve a full [Album]\n *\n * @param href A link to the Web API endpoint providing full details of the album.\n * @param id The Spotify ID for the album.\n * are “album”, “single”, “compilation”, “appears_on”. Compare to album_type this field represents relationship\n * between the artist and the album.\n * @param artists The artists of the album. Each artist object includes a link in href to more detailed information about the artist.\n * that an album is considered available in a market when at least 1 of its tracks is available in that market.\n * @param images The cover art for the album in various sizes, widest first.\n * @param name The name of the album. In case of an album takedown, the value may be an empty string.\n * @param type The object type: “album”\n * it might be shown as 1981-12 or 1981-12-15.\n * @param releaseDatePrecisionString The precision with which release_date value is known: year , month , or day.\n * @param restrictions Part of the response when Track Relinking is applied, the original track is not available\n * in the given market, and Spotify did not have any tracks to relink it with. The track response will still contain\n * metadata for the original track, and a restrictions object containing the reason why the track is not available:\n * \"restrictions\" : {\"reason\" : \"market\"}\n *\n * @property albumGroup Optional. The field is present when getting an artist’s albums. Possible values\n * @property availableMarkets The markets in which the album is available: ISO 3166-1 alpha-2 country codes. Note\n * @property releaseDate The date the album was first released, for example 1981. Depending on the precision,\n * @property albumType The type of the album: one of “album”, “single”, or “compilation”.\n */\n@Serializable\npublic data class SimpleAlbum(\n    @SerialName(\"album_type\") private val albumTypeString: String,\n    @SerialName(\"available_markets\") private val availableMarketsString: List<String> = listOf(),\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    override val uri: SpotifyUri,\n\n    val artists: List<SimpleArtist>,\n    val images: List<SpotifyImage>? = null,\n    val name: String,\n    val type: String,\n    val restrictions: Restrictions? = null,\n    @SerialName(\"release_date\") private val releaseDateString: String? = null,\n    @SerialName(\"release_date_precision\") val releaseDatePrecisionString: String? = null,\n    @SerialName(\"total_tracks\") val totalTracks: Int? = null,\n    @SerialName(\"album_group\") private val albumGroupString: String? = null\n) : CoreObject() {\n    val availableMarkets: List<Market> get() = availableMarketsString.map { Market.valueOf(it) }\n\n    val albumType: AlbumResultType\n        get() = albumTypeString.let { _ ->\n            AlbumResultType.entries.first { it.id.equals(albumTypeString, true) }\n        }\n\n    val releaseDate: ReleaseDate? get() = releaseDateString?.let { getReleaseDate(releaseDateString) }\n\n    val albumGroup: AlbumResultType?\n        get() = albumGroupString?.let { _ ->\n            AlbumResultType.entries.find { it.id == albumGroupString }\n        }\n\n    /**\n     * Converts this [SimpleAlbum] into a full [Album] object with the given\n     * market\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public suspend fun toFullAlbum(market: Market? = null): Album? = api.albums.getAlbum(id, market)\n\n    /**\n     * Converts this [SimpleAlbum] into a full [Album] object with the given\n     * market\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public fun toFullAlbumRestAction(market: Market? = null): SpotifyRestAction<Album?> =\n        SpotifyRestAction { toFullAlbum(market) }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = artists + this\n}\n\n@Serializable\npublic data class ReleaseDate(val year: Int, val month: Int?, val day: Int?)\n\n/**\n * Album search type\n */\npublic enum class AlbumResultType(public val id: String) {\n    Album(\"album\"),\n    Single(\"single\"),\n    Compilation(\"compilation\"),\n    AppearsOn(\"appears_on\");\n}\n\n/**\n * Represents an Album on Spotify\n *\n * @param artists The artists of the album. Each artist object includes a link in href to more detailed\n * information about the artist.\n * ISO 3166-1 alpha-2 country codes. Note that an album is considered\n * available in a market when at least 1 of its tracks is available in that market.\n * @param copyrights The copyright statements of the album.\n * @param genres A list of the genres used to classify the album. For example: \"Prog Rock\" ,\n * \"Post-Grunge\". (If not yet classified, the array is empty.)\n * @param href A link to the Web API endpoint providing full details of the album.\n * @param id The Spotify ID for the album.\n * @param images The cover art for the album in various sizes, widest first.\n * @param label The label for the album.\n * @param name The name of the album. In case of an album takedown, the value may be an empty string.\n * @param popularity The popularity of the album. The value will be between 0 and 100, with 100 being the most\n * popular. The popularity is calculated from the popularity of the album’s individual tracks.\n * it might be shown as 1981-12 or 1981-12-15.\n * @param releaseDatePrecision The precision with which release_date value is known: year , month , or day.\n * @param tracks The tracks of the album.\n * @param type The object type: “album”\n * @param totalTracks the total amount of tracks in this album\n * @param restrictions Part of the response when Track Relinking is applied, the original track is not available\n * in the given market, and Spotify did not have any tracks to relink it with.\n * The track response will still contain metadata for the original track, and a\n * restrictions object containing the reason why the track is not available: \"restrictions\" : {\"reason\" : \"market\"}\n *\n * @property releaseDate The date the album was first released, for example 1981. Depending on the precision,\n * @property externalIds Known external IDs for the album.\n * @property availableMarkets The markets in which the album is available:\n * @property albumType The type of the album: one of \"album\" , \"single\" , or \"compilation\".\n */\n@Serializable\npublic data class Album(\n    @SerialName(\"album_type\") private val albumTypeString: String,\n    @SerialName(\"available_markets\") private val availableMarketsString: List<String> = listOf(),\n    @SerialName(\"external_ids\") private val externalIdsString: Map<String, String> = hashMapOf(),\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String> = mapOf(),\n    override val href: String,\n    override val id: String,\n    override val uri: AlbumUri,\n\n    val artists: List<SimpleArtist>,\n    val copyrights: List<SpotifyCopyright>,\n    val genres: List<String>,\n    val images: List<SpotifyImage>? = null,\n    val label: String,\n    val name: String,\n    val popularity: Double,\n    @SerialName(\"release_date\") private val releaseDateString: String,\n    @SerialName(\"release_date_precision\") val releaseDatePrecision: String,\n    val tracks: PagingObject<SimpleTrack>,\n    val type: String,\n    @SerialName(\"total_tracks\") val totalTracks: Int,\n    val restrictions: Restrictions? = null\n) : CoreObject() {\n    val availableMarkets: List<Market> get() = availableMarketsString.map { Market.valueOf(it) }\n\n    val externalIds: List<ExternalId> get() = externalIdsString.map { ExternalId(it.key, it.value) }\n\n    val albumType: AlbumResultType get() = AlbumResultType.entries.first { it.id == albumTypeString }\n\n    val releaseDate: ReleaseDate get() = getReleaseDate(releaseDateString)\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = artists + tracks + this\n}\n\n/**\n * Describes an album's copyright information\n *\n * @property text The copyright text for this album.\n * @property type The type of copyright: C = the copyright, P = the sound recording (performance) copyright.\n */\n@Serializable\npublic data class SpotifyCopyright(\n    @SerialName(\"text\") private val textString: String,\n    @SerialName(\"type\") private val typeString: String\n) {\n    val text: String\n        get() = textString\n            .removePrefix(\"(P)\")\n            .removePrefix(\"(C)\")\n            .trim()\n\n    val type: CopyrightType get() = CopyrightType.entries.toTypedArray().match(typeString)!!\n}\n\n@Serializable\ninternal data class AlbumsResponse(val albums: List<Album?>)\n\n/**\n * Copyright statement type of an Album\n */\npublic enum class CopyrightType(public val identifier: String) : ResultEnum {\n    Copyright(\"C\"),\n    SoundPerformanceCopyright(\"P\");\n\n    override fun retrieveIdentifier(): String = identifier\n}\n\ninternal fun getReleaseDate(releaseDateString: String) = when (releaseDateString.count { it == '-' }) {\n    0 -> ReleaseDate(releaseDateString.toInt(), null, null)\n    1 -> {\n        val split = releaseDateString.split(\"-\").map { it.toInt() }\n        ReleaseDate(split[0], split[1], null)\n    }\n    2 -> {\n        val split = releaseDateString.split(\"-\").map { it.toInt() }\n        ReleaseDate(split[0], split[1], split[2])\n    }\n    else -> throw IllegalArgumentException()\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Artists.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyRestAction\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * Simplified Artist object that can be used to retrieve a full [Artist]\n *\n * @param href A link to the Web API endpoint providing full details of the artist.\n * @param id The Spotify ID for the artist.\n * @param name The name of the artist\n * @param type The object type: \"artist\"\n */\n@Serializable\npublic data class SimpleArtist(\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    override val uri: SpotifyUri,\n\n    val name: String? = null,\n    val type: String\n) : CoreObject() {\n    /**\n     * Converts this [SimpleArtist] into a full [Artist] object\n     */\n    public suspend fun toFullArtist(): Artist? = api.artists.getArtist(id)\n\n    /**\n     * Converts this [SimpleArtist] into a full [Artist] object\n     */\n    public fun toFullArtistRestAction(): SpotifyRestAction<Artist?> = SpotifyRestAction { toFullArtist() }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(this)\n}\n\n/**\n * Represents an Artist (distinct from a regular user) on Spotify\n *\n * @param followers Information about the followers of the artist.\n * @param genres A list of the genres the artist is associated with. For example: \"Prog Rock\" ,\n * \"Post-Grunge\". (If not yet classified, the array is empty.)\n * @param href A link to the Web API endpoint providing full details of the artist.\n * @param id The Spotify ID for the artist.\n * @param images Images of the artist in various sizes, widest first.\n * @param name The name of the artist\n * @param popularity The popularity of the artist. The value will be between 0 and 100, with 100 being the most\n * popular. The artist’s popularity is calculated from the popularity of all the artist’s tracks.\n * @param type The object type: \"artist\"\n */\n@Serializable\npublic data class Artist(\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    override val uri: ArtistUri,\n\n    val followers: Followers,\n    val genres: List<String>,\n    val images: List<SpotifyImage>? = null,\n    val name: String? = null,\n    val popularity: Double,\n    val type: String\n) : CoreObject() {\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(this)\n}\n\n@Serializable\ninternal data class ArtistList(val artists: List<Artist?>)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Authentication.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyApi\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.utils.getCurrentTimeMs\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\nimport kotlinx.serialization.Transient\n\n/**\n * Represents a Spotify Token, retrieved through instantiating a [SpotifyApi]\n *\n * @param accessToken An access token that can be provided in subsequent calls,\n * for example to Spotify Web API services.\n * @param tokenType How the access token may be used: always Bearer”.\n * @param expiresIn The time period (in seconds) for which the access token is valid.\n * @param refreshToken A token that can be sent to the Spotify Accounts service in place of an authorization code,\n * null if the token was created using a method that does not support token refresh\n *\n * @property scopes A list of scopes granted access for this [accessToken]. An\n * empty list means that the token can only be used to access public information.\n * @property expiresAt The time, in milliseconds, at which this Token expires\n */\n@Serializable\npublic data class Token(\n    @SerialName(\"access_token\") var accessToken: String,\n    @SerialName(\"token_type\") val tokenType: String,\n    @SerialName(\"expires_in\") var expiresIn: Int,\n    @SerialName(\"refresh_token\") var refreshToken: String? = null,\n    @SerialName(\"scope\") internal var scopeString: String? = null\n) {\n    val expiresAt: Long get() = getCurrentTimeMs() + expiresIn * 1000\n\n    val scopes: List<SpotifyScope>? get() = scopeString?.let { str ->\n        str.split(\" \").mapNotNull { scope -> SpotifyScope.entries.find { it.uri.equals(scope, true) } }\n    }\n\n    public fun shouldRefresh(): Boolean = getCurrentTimeMs() > expiresAt\n\n    public companion object {\n        public fun from(accessToken: String?, refreshToken: String?, scopes: List<SpotifyScope>, expiresIn: Int = 1): Token =\n            Token(accessToken ?: \"\", \"Bearer\", expiresIn, refreshToken, scopes.joinToString(\" \") { it.uri })\n    }\n}\n\n@Serializable\npublic data class TokenValidityResponse(\n    val isValid: Boolean,\n    @Transient val exception: Exception? = null\n)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Browse.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * Spotify music category\n *\n * @param href A link to the Web API endpoint returning full details of the category.\n * @param icons The category icon, in various sizes.\n * @param id The Spotify category ID of the category.\n * @param name The name of the category.\n */\n@Serializable\npublic data class SpotifyCategory(\n    override val href: String,\n    override val id: String,\n\n    val icons: List<SpotifyImage>,\n    val name: String\n) : Identifiable()\n\n/**\n * Seed from which the recommendation was constructed\n *\n * @param initialPoolSize The number of recommended tracks available for this seed.\n * @param afterFilteringSize The number of tracks available after min_* and max_* filters have been applied.\n * @param afterRelinkingSize The number of tracks available after relinking for regional availability.\n * @param href A link to the full track or artist data for this seed. For tracks this will be a link to a Track\n * Object. For artists a link to an Artist Object. For genre seeds, this value will be null.\n * @param id The id used to select this seed. This will be the same as the string used in the\n * seed_artists , seed_tracks or seed_genres parameter.\n * @param type The entity type of this seed. One of artist , track or genre.\n */\n@Serializable\npublic data class RecommendationSeed(\n    @SerialName(\"href\") override val href: String? = null,\n    @SerialName(\"id\") override val id: String,\n\n    val initialPoolSize: Int,\n    val afterFilteringSize: Int,\n    val afterRelinkingSize: Int? = null,\n    val type: String\n) : Identifiable()\n\n/**\n * @param seeds An array of recommendation seed objects.\n * @param tracks An array of track object (simplified) ordered according to the parameters supplied.\n */\n@Serializable\npublic data class RecommendationResponse(val seeds: List<RecommendationSeed>, val tracks: List<Track>)\n\n/**\n * Spotify featured playlists (on the Browse tab)\n *\n * @param message the featured message in \"Overview\"\n * @param playlists [PagingObject] of returned items\n */\n@Serializable\npublic data class FeaturedPlaylists(val message: String, val playlists: PagingObject<SimplePlaylist>)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Episode.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyRestAction\nimport com.adamratzman.spotify.SpotifyScope\nimport com.adamratzman.spotify.utils.Locale\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * An episode (podcast) on Spotify\n *\n * @param album The album on which the track appears. The album object includes a link in\n * href to full information about the album.\n * @param artists The artists who performed the track. Each artist object includes a link in href\n * to more detailed information about the artist.\n * @property availableMarkets A list of the countries in which the track can be played, identified by their ISO 3166-1 alpha-2 code.\n * @param discNumber The disc number (usually 1 unless the album consists of more than one disc).\n * @param durationMs The track length in milliseconds.\n *\n * @param explicit Whether or not the track has explicit lyrics ( true = yes it does; false = no it does not OR unknown).\n * @param isLocal Whether or not the track is from a local file.\n * @param isPlayable Part of the response when Track Relinking is applied. If true , the track is playable in the\n * given market. Otherwise false.\n * @param name The name of the track.\n * @param popularity The popularity of the track. The value will be between 0 and 100, with 100 being the most\n * popular. The popularity of a track is a value between 0 and 100, with 100 being the most popular. The popularity\n * is calculated by algorithm and is based, in the most part, on the total number of plays the track has had and how\n * recent those plays are. Generally speaking, songs that are being played a lot now will have a higher popularity\n * than songs that were played a lot in the past. Duplicate tracks (e.g. the same track from a single and an album)\n * are rated independently. Artist and album popularity is derived mathematically from track popularity. Note that\n * the popularity value may lag actual popularity by a few days: the value is not updated in real time.\n * @param previewUrl A link to a 30 second preview (MP3 format) of the track. Can be null.\n * @param track Whether this episode is also a track.\n * @param trackNumber The number of the track. If an album has several discs, the track number is the number on the specified disc.\n * @param type The object type: “episode”.\n *\n */\n@Serializable\npublic data class PodcastEpisodeTrack(\n    val album: SimpleAlbum,\n    val artists: List<SimpleArtist>,\n    @SerialName(\"available_markets\") private val availableMarketsString: List<String> = listOf(),\n    @SerialName(\"disc_number\") val discNumber: Int,\n    @SerialName(\"duration_ms\") val durationMs: Int,\n    val episode: Boolean? = null,\n    val explicit: Boolean,\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    @SerialName(\"external_ids\") private val externalIdsString: Map<String, String> = hashMapOf(),\n    override val href: String,\n    override val id: String,\n    @SerialName(\"is_local\") val isLocal: Boolean? = null,\n    @SerialName(\"is_playable\") val isPlayable: Boolean = true,\n    val name: String,\n    val popularity: Double,\n    @SerialName(\"preview_url\") val previewUrl: String? = null,\n    val track: Boolean? = null,\n    @SerialName(\"track_number\") val trackNumber: Int,\n    override val type: String,\n    override val uri: PlayableUri,\n    override val linkedTrack: LinkedTrack? = null\n) : RelinkingAvailableResponse(), Playable {\n    val availableMarkets: List<Market> get() = availableMarketsString.map { Market.valueOf(it) }\n\n    val externalIds: List<ExternalId> get() = externalIdsString.map { ExternalId(it.key, it.value) }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(album) + artists + linkedTrack + this\n}\n\n/**\n * An episode (podcast) on Spotify\n *\n * @param audioPreviewUrl A URL to a 30 second preview (MP3 format) of the episode. null if not available.\n * @param description A description of the episode.\n * @param durationMs The episode length in milliseconds.\n * @param explicit Whether or not the episode has explicit content (true = yes it does; false = no it does not OR unknown).\n * @param images The cover art for the episode in various sizes, widest first.\n * @param isExternallyHosted True if the episode is hosted outside of Spotify’s CDN.\n * @param isPlayable True if the episode is playable in the given market. Otherwise false.\n * @param name The name of the episode.\n * @param releaseDatePrecisionString The precision with which release_date value is known: \"year\", \"month\", or \"day\".\n * @param resumePoint The user’s most recent position in the episode. Set if the supplied access token is a user token and has the scope [SpotifyScope.UserReadPlaybackPosition].\n * @param type The object type: \"episode\".\n * @param show The show on which the episode belongs.\n *\n * @property languages A list of the languages used in the episode, identified by their ISO 639 code.\n * @property releaseDate The date the episode was first released, for example \"1981-12-15\". Depending on the precision, it might be shown as \"1981\" or \"1981-12\".\n */\n@Serializable\npublic data class Episode(\n    @SerialName(\"audio_preview_url\") val audioPreviewUrl: String? = null,\n    val description: String? = null,\n    @SerialName(\"duration_ms\") val durationMs: Int,\n    val explicit: Boolean,\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    val images: List<SpotifyImage>? = null,\n    @SerialName(\"is_externally_hosted\") val isExternallyHosted: Boolean,\n    @SerialName(\"is_playable\") val isPlayable: Boolean,\n    @Deprecated(\"This field is deprecated and might be removed in the future. Please use the languages field instead\")\n    private val language: String? = null,\n    @SerialName(\"languages\") private val showLanguagesPrivate: List<String>,\n    val name: String,\n    @SerialName(\"release_date\") private val releaseDateString: String? = null,\n    @SerialName(\"release_date_precision\") val releaseDatePrecisionString: String? = null,\n    @SerialName(\"resume_point\") val resumePoint: ResumePoint? = null,\n    val show: SimpleShow,\n    override val type: String,\n    override val uri: EpisodeUri\n) : CoreObject(), Playable {\n    val releaseDate: ReleaseDate? get() = releaseDateString?.let { getReleaseDate(releaseDateString) }\n\n    @Suppress(\"DEPRECATION\")\n    val languages: List<Locale>\n        get() = (language?.let { showLanguagesPrivate + it } ?: showLanguagesPrivate).map { languageString ->\n            Locale.valueOf(languageString.replace(\"-\", \"_\"))\n        }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(show, this)\n}\n\n/**\n * A simplified episode (podcast) on Spotify\n *\n * @param audioPreviewUrl A URL to a 30 second preview (MP3 format) of the episode. null if not available.\n * @param description A description of the episode.\n * @param durationMs The episode length in milliseconds.\n * @param explicit Whether or not the episode has explicit content (true = yes it does; false = no it does not OR unknown).\n * @param images The cover art for the episode in various sizes, widest first.\n * @param isExternallyHosted True if the episode is hosted outside of Spotify’s CDN.\n * @param isPlayable True if the episode is playable in the given market. Otherwise false.\n * @param name The name of the episode.\n * @param releaseDatePrecisionString The precision with which release_date value is known: \"year\", \"month\", or \"day\".\n * @param resumePoint The user’s most recent position in the episode. Set if the supplied access token is a user token and has the scope [SpotifyScope.UserReadPlaybackPosition].\n * @param type The object type: \"episode\".\n *\n * @property languages A list of the languages used in the episode, identified by their ISO 639 code.\n * @property releaseDate The date the episode was first released, for example \"1981-12-15\". Depending on the precision, it might be shown as \"1981\" or \"1981-12\".\n */\n@Serializable\npublic data class SimpleEpisode(\n    @SerialName(\"audio_preview_url\") val audioPreviewUrl: String? = null,\n    val description: String? = null,\n    @SerialName(\"duration_ms\") val durationMs: Int,\n    val explicit: Boolean,\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    val images: List<SpotifyImage>? = null,\n    @SerialName(\"is_externally_hosted\") val isExternallyHosted: Boolean,\n    @SerialName(\"is_playable\") val isPlayable: Boolean,\n    @Deprecated(\"This field is deprecated and might be removed in the future. Please use the languages field instead\")\n    private val language: String? = null,\n    @SerialName(\"languages\") private val showLanguagesPrivate: List<String>,\n    val name: String,\n    @SerialName(\"release_date\") private val releaseDateString: String? = null,\n    @SerialName(\"release_date_precision\") val releaseDatePrecisionString: String? = null,\n    @SerialName(\"resume_point\") val resumePoint: ResumePoint? = null,\n    val type: String,\n    override val uri: SpotifyUri\n) : CoreObject() {\n    val releaseDate: ReleaseDate? get() = releaseDateString?.let { getReleaseDate(releaseDateString) }\n\n    @Suppress(\"DEPRECATION\")\n    val languages: List<Locale>\n        get() = (language?.let { showLanguagesPrivate + it } ?: showLanguagesPrivate)\n            .map { Locale.valueOf(it.replace(\"-\", \"_\")) }\n\n    /**\n     * Converts this [SimpleEpisode] into a full [Episode] object\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public suspend fun toFullEpisode(market: Market): Episode? = api.episodes.getEpisode(id, market)\n\n    /**\n     * Converts this [SimpleEpisode] into a full [Episode] object\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public fun toFullEpisodeRestAction(market: Market): SpotifyRestAction<Episode?> =\n        SpotifyRestAction { toFullEpisode(market) }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(this)\n}\n\n/**\n * Represents the user’s most recent position in the episode. Set if the supplied access token is a user token and has\n * the scope [SpotifyScope.UserReadPlaybackPosition].\n *\n * @param fullyPlayed Whether or not the episode has been fully played by the user.\n * @param resumePositionMs The user’s most recent position in the episode in milliseconds.\n */\n@Serializable\npublic data class ResumePoint(\n    @SerialName(\"fully_played\") val fullyPlayed: Boolean,\n    @SerialName(\"resume_position_ms\") val resumePositionMs: Int\n)\n\n@Serializable\ninternal data class EpisodeList(val episodes: List<Episode?>)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Library.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * Represents an episode saved in a user's library\n *\n * @param addedAt The date and time the album was saved.\n * @param episode Information about the episode.\n */\n@Serializable\npublic data class SavedEpisode(\n    @SerialName(\"added_at\") val addedAt: String,\n    val episode: Episode\n)\n\n/**\n * Represents a show saved in a user's library\n *\n * @param addedAt The date and time the album was saved.\n * @param show Information about the show.\n */\n@Serializable\npublic data class SavedShow(\n    @SerialName(\"added_at\") val addedAt: String,\n    val show: SimpleShow\n)\n\n/**\n * Represents an album saved in a user's library\n *\n * @param addedAt The date and time the album was saved.\n * @param album Information about the album.\n */\n@Serializable\npublic data class SavedAlbum(\n    @SerialName(\"added_at\") val addedAt: String,\n    val album: Album\n)\n\n/**\n * Represents a track saved in a user's library\n *\n * @param addedAt The date and time the track was saved.\n * @param track The track object.\n */\n@Serializable\npublic data class SavedTrack(\n    @SerialName(\"added_at\") val addedAt: String,\n    val track: Track\n)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/LocalTracks.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyRestAction\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * Local artist object (goes with [LocalTrack]) representing an artist on a local track\n *\n * @param name The name of the artist\n * @param type The object type: \"artist\"\n */\n@Serializable\npublic data class SimpleLocalArtist(\n    val name: String,\n    val type: String\n)\n\n/**\n * Local album object that goes with [LocalTrack] - represents the local album it was obtained from (likely \"Local Files\")\n *\n * @param artists The artists of the album.\n * @param name The name of the album. In case of an album takedown, the value may be an empty string.\n * @param type The object type: “album”\n * @param releaseDate The date the album was first released, for example 1981. Depending on the precision,\n * it might be shown as 1981-12 or 1981-12-15.\n * @param releaseDatePrecision The precision with which release_date value is known: year , month , or day.\n * @param albumType The type of the album: one of “album”, “single”, or “compilation”.\n */\n@Serializable\npublic data class SimpleLocalAlbum(\n    @SerialName(\"album_type\") val albumType: String? = null,\n    val artists: List<SimpleLocalArtist> = listOf(),\n    val name: String,\n    @SerialName(\"release_date\") private val releaseDate: String? = null,\n    @SerialName(\"release_date_precision\") val releaseDatePrecision: String? = null,\n    val type: String\n)\n\n/**\n * Local track object that representing a song uploaded from a client locally\n *\n * @param artists The artists who performed the track.\n * @param discNumber The disc number.\n * @param durationMs The track length in milliseconds.\n * @param explicit Whether or not the track has explicit lyrics ( true = yes it does; false = no it does not OR unknown).\n * @param href A link to the Web API endpoint providing full details of the track.\n * @param id The Spotify ID for the track.\n * @param name The name of the track.\n * @param trackNumber The number of the track. If an album has several discs, the track number\n * is the number on the specified disc.\n * @param type The object type: “track”.\n * @param isLocal Whether or not the track is from a local file.\n * @param popularity the popularity of this track. possibly null\n */\n@Serializable\npublic data class LocalTrack(\n    val album: SimpleLocalAlbum,\n    val artists: List<SimpleLocalArtist>,\n    override val href: String? = null,\n    override val id: String? = null,\n    @SerialName(\"disc_number\") val discNumber: String? = null,\n    @SerialName(\"duration_ms\") val durationMs: Int? = null,\n    @SerialName(\"explicit\") val explicit: Boolean? = null,\n    @SerialName(\"is_local\") val isLocal: Boolean = true,\n    val name: String,\n    val popularity: Double? = null,\n    @SerialName(\"track_number\") val trackNumber: Int? = null,\n    override val type: String,\n    override val uri: LocalTrackUri\n) : IdentifiableNullable(), Playable {\n\n    /**\n     * Search for this local track by name in Spotify's track catalog.\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     */\n    public suspend fun searchForSpotifyTrack(\n        limit: Int? = null,\n        offset: Int? = null,\n        market: Market? = null\n    ): PagingObject<Track> = api.search.searchTrack(name, limit = limit, offset = offset, market = market)\n\n    /**\n     * Search for this local track by name in Spotify's track catalog.\n     *\n     * @param limit The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.\n     * @param offset The index of the first item to return. Default: 0. Use with limit to get the next set of items\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     * If omitted, the returned items will be relevant to all countries.\n     */\n    public fun searchForSpotifyTrackRestAction(\n        limit: Int? = null,\n        offset: Int? = null,\n        market: Market? = null\n    ): SpotifyRestAction<PagingObject<Track>> = SpotifyRestAction { searchForSpotifyTrack(limit, offset, market) }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Misc.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport kotlinx.serialization.Serializable\n\n/**\n * A Spotify image\n *\n * @param height The image height in pixels. If unknown: null or not returned.\n * @param url The source URL of the image.\n * @param width The image width in pixels. If unknown: null or not returned.\n */\n@Serializable\npublic data class SpotifyImage(\n    val height: Double? = null,\n    val url: String,\n    val width: Double? = null\n)\n\n/**\n * Contains an explanation of why a track is not available\n *\n * @param reason why the track is not available\n */\n@Serializable\npublic data class Restrictions(val reason: String)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/PagingObjects.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyRestAction\nimport com.adamratzman.spotify.models.PagingTraversalType.BACKWARDS\nimport com.adamratzman.spotify.models.PagingTraversalType.FORWARDS\nimport com.adamratzman.spotify.models.serialization.instantiateAllNeedsApiObjects\nimport com.adamratzman.spotify.models.serialization.instantiateLateinitsForPagingObject\nimport com.adamratzman.spotify.models.serialization.toCursorBasedPagingObject\nimport com.adamratzman.spotify.models.serialization.toNonNullablePagingObject\nimport kotlinx.coroutines.Dispatchers\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.FlowPreview\nimport kotlinx.coroutines.flow.Flow\nimport kotlinx.coroutines.flow.asFlow\nimport kotlinx.coroutines.flow.emitAll\nimport kotlinx.coroutines.flow.flatMapConcat\nimport kotlinx.coroutines.flow.flow\nimport kotlinx.coroutines.flow.flowOn\nimport kotlinx.coroutines.flow.toList\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\nimport kotlinx.serialization.Transient\nimport kotlin.coroutines.CoroutineContext\nimport kotlin.reflect.KClass\n\n/*\n    Types used in PagingObjects and CursorBasedPagingObjects:\n\n    CursorBasedPagingObject:\n       PlayHistory\n       Artist\n\n    PagingObject:\n       SimpleTrack\n       SimpleAlbum\n       SpotifyCategory\n       SimplePlaylist\n       SavedTrack\n       SavedAlbum\n       Artist\n       Track\n       PlaylistTrack\n\n */\n\npublic enum class PagingTraversalType {\n    BACKWARDS,\n    FORWARDS;\n}\n\n/**\n * The offset-based nullable paging object is a container for a set of objects. It contains a key called items\n * (whose value is an array of the requested objects) along with other keys like previous, next and\n * limit that can be useful in future calls. Its items are not guaranteed to be not null\n */\n@Serializable\npublic class NullablePagingObject<T : Any>(\n    override val href: String,\n    override val items: List<T?>,\n    override val limit: Int,\n    override val next: String? = null,\n    override val offset: Int,\n    override val previous: String? = null,\n    override val total: Int = 0\n) : AbstractPagingObject<T, NullablePagingObject<T>>() {\n    public fun toPagingObject(): PagingObject<T> {\n        val pagingObject = PagingObject(\n            href,\n            items.filterNotNull(),\n            limit,\n            next,\n            offset,\n            previous,\n            total\n        )\n        pagingObject.instantiateLateinitsForPagingObject(itemClass, api)\n\n        return pagingObject\n    }\n\n    override fun iterator(): Iterator<T?> = items.iterator()\n    override fun listIterator(): ListIterator<T?> = items.listIterator()\n    override fun listIterator(index: Int): ListIterator<T?> = items.listIterator(index)\n    override fun subList(fromIndex: Int, toIndex: Int): List<T?> = items.subList(fromIndex, toIndex)\n}\n\n/**\n * The offset-based non-nullable paging object is a container for a set of objects. It contains a key called items\n * (whose value is an array of the requested objects) along with other keys like previous, next and\n * limit that can be useful in future calls.\n */\n@Serializable\npublic data class PagingObject<T : Any>(\n    override val href: String,\n    override val items: List<T>,\n    override val limit: Int,\n    override val next: String? = null,\n    override val offset: Int,\n    override val previous: String? = null,\n    override val total: Int = 0\n) : AbstractPagingObject<T, PagingObject<T>>() {\n    override fun get(index: Int): T = super.get(index)!!\n\n    override fun iterator(): Iterator<T> = items.iterator()\n    override fun listIterator(): ListIterator<T> = items.listIterator()\n    override fun listIterator(index: Int): ListIterator<T> = items.listIterator(index)\n    override fun subList(fromIndex: Int, toIndex: Int): List<T> = items.subList(fromIndex, toIndex)\n\n    override suspend fun take(n: Int): List<T> {\n        return super.take(n).filterNotNull()\n    }\n}\n\n/**\n * The offset-based paging object is a container for a set of objects. It contains a key called items\n * (whose value is an array of the requested objects) along with other keys like previous, next and\n * limit that can be useful in future calls.\n *\n * @property href A link to the Web API endpoint returning the full result of the request.\n * @property items The requested data.\n * @property limit The maximum number of items in the response (as set in the query or by default).\n * @property next URL to the next page of items. ( null if none)\n * @property previous URL to the previous page of items. ( null if none)\n * @property total The maximum number of items available to return.\n * @property offset The offset of the items returned (as set in the query or by default).\n */\n@Serializable\npublic abstract class AbstractPagingObject<T : Any, Z : AbstractPagingObject<T, Z>> :\n    PagingObjectBase<T, Z>(),\n    List<T?> {\n    @Suppress(\"UNCHECKED_CAST\")\n    override suspend fun get(type: PagingTraversalType): Z? {\n        return (if (type == FORWARDS) next else previous)?.let { api.defaultEndpoint.get(it) }?.let { json ->\n            when (itemClass) {\n                SimpleTrack::class -> json.toNonNullablePagingObject(\n                    SimpleTrack.serializer(),\n                    null,\n                    api,\n                    api.spotifyApiOptions.json,\n                    true\n                )\n                SpotifyCategory::class -> json.toNonNullablePagingObject(\n                    SpotifyCategory.serializer(),\n                    null,\n                    api,\n                    api.spotifyApiOptions.json,\n                    true\n                )\n                SimpleAlbum::class -> json.toNonNullablePagingObject(\n                    SimpleAlbum.serializer(),\n                    null,\n                    api,\n                    api.spotifyApiOptions.json,\n                    true\n                )\n                SimplePlaylist::class -> json.toNonNullablePagingObject(\n                    SimplePlaylist.serializer(),\n                    null,\n                    api,\n                    api.spotifyApiOptions.json,\n                    true\n                )\n                SavedTrack::class -> json.toNonNullablePagingObject(\n                    SavedTrack.serializer(),\n                    null,\n                    api,\n                    api.spotifyApiOptions.json,\n                    true\n                )\n                SavedAlbum::class -> json.toNonNullablePagingObject(\n                    SavedAlbum.serializer(),\n                    null,\n                    api,\n                    api.spotifyApiOptions.json,\n                    true\n                )\n                Artist::class -> json.toNonNullablePagingObject(\n                    Artist.serializer(),\n                    null,\n                    api,\n                    api.spotifyApiOptions.json,\n                    true\n                )\n                Track::class -> json.toNonNullablePagingObject(\n                    Track.serializer(),\n                    null,\n                    api,\n                    api.spotifyApiOptions.json,\n                    true\n                )\n                PlaylistTrack::class -> json.toNonNullablePagingObject(\n                    PlaylistTrack.serializer(),\n                    null,\n                    api,\n                    api.spotifyApiOptions.json,\n                    true\n                )\n                else -> throw IllegalArgumentException(\"Unknown type ($itemClass) in $href response\")\n            } as? Z\n        }\n    }\n\n    override suspend fun getWithNextTotalPagingObjects(total: Int): List<Z> {\n        @Suppress(\"UNCHECKED_CAST\")\n        val pagingObjects = mutableListOf(this as Z)\n\n        var nxt = next?.let { getNext() }\n        while (pagingObjects.size < total && nxt != null) {\n            pagingObjects.add(nxt)\n            nxt = nxt.next?.let { nxt?.getNext() }\n        }\n\n        return pagingObjects.distinctBy { it.href }\n    }\n\n    override suspend fun getAllPagingObjects(): List<Z> {\n        val pagingObjects = mutableListOf<Z>()\n        var prev = previous?.let { getPrevious() }\n        while (prev != null) {\n            pagingObjects.add(prev)\n            prev = prev.previous?.let { prev?.getPrevious() }\n        }\n        pagingObjects.reverse() // closer we are to current, the further we are from the start\n\n        @Suppress(\"UNCHECKED_CAST\")\n        pagingObjects.add(this as Z)\n        var nxt = next?.let { getNext() }\n        while (nxt != null) {\n            pagingObjects.add(nxt)\n            nxt = nxt.next?.let { nxt?.getNext() }\n        }\n\n        // we don't need to reverse here, as it's in order\n        return pagingObjects\n    }\n\n    /**\n     * Synchronously retrieve the next [total] paging objects associated with this [AbstractPagingObject], including this [AbstractPagingObject].\n     *\n     * @param total The total amount of [AbstractPagingObject] to request, which includes this [AbstractPagingObject].\n     * @since 3.0.0\n     */\n    @Suppress(\"UNCHECKED_CAST\")\n    public suspend fun getWithNext(total: Int): List<Z> = getWithNextTotalPagingObjects(total)\n\n    /**\n     * Get all items of type [T] associated with the request\n     */\n    public override suspend fun getAllItems(): List<T?> = getAllPagingObjects().map { it.items }.flatten()\n}\n\n/**\n * The cursor-based paging object is a container for a set of objects. It contains a key called\n * items (whose value is an array of the requested objects) along with other keys like next and\n * cursors that can be useful in future calls.\n *\n * @param href A link to the Web API endpoint returning the full result of the request.\n * @param items The requested data.\n * @param limit The maximum number of items in the response (as set in the query or by default).\n * @param next URL to the next page of items. ( null if none)\n * @param total The maximum number of items available to return.\n * @param cursor The cursors used to find the next set of items. If [items] is empty, cursor may be null.\n */\n@Serializable\npublic data class CursorBasedPagingObject<T : Any>(\n    override val href: String,\n    override val items: List<T>,\n    override val limit: Int,\n    override val next: String? = null,\n    @SerialName(\"cursors\") public val cursor: Cursor? = null,\n    override val total: Int = 0,\n    override val offset: Int = 0,\n    override val previous: String? = null\n) : PagingObjectBase<T, CursorBasedPagingObject<T>>() {\n    /**\n     * Synchronously retrieve the next [total] paging objects associated with this [CursorBasedPagingObject], including this [CursorBasedPagingObject].\n     *\n     * @param total The total amount of [CursorBasedPagingObject] to request, which includes this [CursorBasedPagingObject].\n     * @since 3.0.0\n     */\n    @Suppress(\"UNCHECKED_CAST\")\n    public suspend fun getWithNext(total: Int): List<CursorBasedPagingObject<T>> = getWithNextTotalPagingObjects(total)\n\n    /**\n     * Get all items of type [T] associated with the request\n     */\n    override suspend fun getAllItems(): List<T?> = getAllPagingObjects().map { it.items }.flatten()\n\n    override suspend fun get(type: PagingTraversalType): CursorBasedPagingObject<T>? {\n        require(type != BACKWARDS) { \"CursorBasedPagingObjects only can go forwards\" }\n        return next?.let { getCursorBasedPagingObject(it) }\n    }\n\n    @Suppress(\"UNCHECKED_CAST\")\n    public suspend fun getCursorBasedPagingObject(url: String): CursorBasedPagingObject<T>? {\n        val json = api.defaultEndpoint.get(url)\n        return when (itemClass) {\n            PlayHistory::class -> json.toCursorBasedPagingObject(\n                PlayHistory::class,\n                PlayHistory.serializer(),\n                null,\n                api,\n                api.spotifyApiOptions.json\n            )\n            Artist::class -> json.toCursorBasedPagingObject(\n                Artist::class,\n                Artist.serializer(),\n                null,\n                api,\n                api.spotifyApiOptions.json\n            )\n            else -> throw IllegalArgumentException(\"Unknown type in $href\")\n        } as? CursorBasedPagingObject<T>\n    }\n\n    override suspend fun getAllPagingObjects(): List<CursorBasedPagingObject<T>> {\n        val pagingObjects = mutableListOf<CursorBasedPagingObject<T>>()\n        var currentPagingObject = this@CursorBasedPagingObject\n        pagingObjects.add(currentPagingObject)\n        while (true) {\n            currentPagingObject = currentPagingObject.get(FORWARDS) ?: break\n            pagingObjects.add(currentPagingObject)\n        }\n        return pagingObjects\n    }\n\n    override suspend fun getWithNextTotalPagingObjects(total: Int): List<CursorBasedPagingObject<T>> {\n        val pagingObjects = mutableListOf(this)\n\n        var nxt = getNext()\n        while (pagingObjects.size < total && nxt != null) {\n            pagingObjects.add(nxt)\n            nxt = nxt.next?.let { nxt?.getNext() }\n        }\n\n        return pagingObjects.distinctBy { it.href }\n    }\n\n    override fun get(index: Int): T = super.get(index)!!\n    override fun iterator(): Iterator<T> = items.iterator()\n    override fun listIterator(): ListIterator<T> = items.listIterator()\n    override fun listIterator(index: Int): ListIterator<T> = items.listIterator(index)\n    override fun subList(fromIndex: Int, toIndex: Int): List<T> = items.subList(fromIndex, toIndex)\n\n    override suspend fun take(n: Int): List<T> {\n        return super.take(n).filterNotNull()\n    }\n}\n\n/**\n * The cursor to use as key to find the next (or previous) page of items.\n *\n * @param before The cursor to use as key to find the previous page of items.\n * @param after The cursor to use as key to find the next page of items.\n */\n@Serializable\npublic data class Cursor(val before: String? = null, val after: String? = null)\n\n/**\n * @property href A link to the Web API endpoint returning the full result of the request.\n * @property items The requested data.\n * @property limit The maximum number of items in the response (as set in the query or by default).\n * @property next URL to the next page of items. ( null if none)\n * @property previous URL to the previous page of items. ( null if none)\n * @property total The maximum number of items available to return.\n * @property offset The offset of the items returned (as set in the query or by default).\n */\n@Serializable\npublic abstract class PagingObjectBase<T : Any, Z : PagingObjectBase<T, Z>> : List<T?>, NeedsApi() {\n    public abstract val href: String\n    public abstract val items: List<T?>\n    public abstract val limit: Int\n    public abstract val next: String?\n    public abstract val offset: Int\n    public abstract val previous: String?\n    public abstract val total: Int\n\n    @Suppress(\"UNCHECKED_CAST\")\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> {\n        return if (items.getOrNull(0) !is NeedsApi) {\n            listOf(this)\n        } else {\n            (items as List<NeedsApi>) + listOf(this)\n        }\n    }\n\n    @Transient\n    internal var itemClass: KClass<T>? = null\n\n    internal abstract suspend fun get(type: PagingTraversalType): Z?\n\n    /**\n     * Retrieve all [PagingObjectBase] associated with this rest action\n     */\n    public abstract suspend fun getAllPagingObjects(): List<Z>\n\n    /**\n     * Retrieve all [PagingObjectBase] associated with this rest action\n     */\n    public fun getAllPagingObjectsRestAction(): SpotifyRestAction<List<Z>> = SpotifyRestAction { getAllPagingObjects() }\n\n    /**\n     * Retrieve all [T] associated with this rest action\n     */\n    public abstract suspend fun getAllItems(): List<T?>\n\n    /**\n     * Retrieve all [T] associated with this rest action\n     */\n    public fun getAllItemsRestAction(): SpotifyRestAction<List<T?>> = SpotifyRestAction { getAllItems() }\n\n    /**\n     * Synchronously retrieve the next [total] paging objects associated with this [PagingObjectBase], including this [PagingObjectBase].\n     *\n     * @param total The total amount of [PagingObjectBase] to request, which includes this [PagingObjectBase].\n     * @since 3.0.0\n     */\n    public abstract suspend fun getWithNextTotalPagingObjects(total: Int): List<Z>\n\n    /**\n     * Synchronously retrieve the next [total] paging objects associated with this [PagingObjectBase], including this [PagingObjectBase].\n     *\n     * @param total The total amount of [PagingObjectBase] to request, which includes this [PagingObjectBase].\n     * @since 3.0.0\n     */\n    public fun getWithNextTotalPagingObjectsRestAction(total: Int): SpotifyRestAction<List<Z>> =\n        SpotifyRestAction { getWithNextTotalPagingObjects(total) }\n\n    public suspend fun getNext(): Z? = get(FORWARDS)\n\n    public fun getNextRestAction(): SpotifyRestAction<Z?> = SpotifyRestAction { getNext() }\n\n    public suspend fun getPrevious(): Z? = get(BACKWARDS)\n\n    public fun getPreviousRestAction(): SpotifyRestAction<Z?> = SpotifyRestAction { getPrevious() }\n\n    /**\n     * Get all items of type [T] associated with the request. Filters out null objects.\n     */\n    public suspend fun getAllItemsNotNull(): List<T> = getAllItems().filterNotNull()\n\n    /**\n     * Get all items of type [T] associated with the request. Filters out null objects.\n     */\n    public fun getAllItemsNotNullRestAction(): SpotifyRestAction<List<T>> = SpotifyRestAction { getAllItemsNotNull() }\n\n    /**\n     * Retrieve the items associated with the next [total] paging objects associated with this rest action, including the current one.\n     *\n     * @param total The total amount of [PagingObjectBase] to request, including the [PagingObjectBase] associated with the current request.\n     * @since 3.0.0\n     */\n    public suspend fun getWithNextItems(total: Int): List<T?> =\n        getWithNextTotalPagingObjects(total).map { it.items }.flatten()\n\n    /**\n     * Retrieve the items associated with the next [total] paging objects associated with this rest action, including the current one.\n     *\n     * @param total The total amount of [PagingObjectBase] to request, including the [PagingObjectBase] associated with the current request.\n     * @since 3.0.0\n     */\n    public fun getWithNextItemsRestAction(total: Int): SpotifyRestAction<List<T?>> =\n        SpotifyRestAction { getWithNextItems(total) }\n\n    /**\n     * Flow from current page backwards.\n     * */\n    public fun flowBackward(): Flow<Z> = flow<Z> {\n        if (previous == null) return@flow\n        var next = getPrevious()\n        while (next != null) {\n            emit(next)\n            next = next.getPrevious()\n        }\n    }.flowOn(Dispatchers.Default)\n\n    /**\n     * Flow from current page forwards.\n     * */\n    @ExperimentalCoroutinesApi\n    public fun flowForward(): Flow<Z> = flow<Z> {\n        if (next == null) return@flow\n        var next = getNext()\n        while (next != null) {\n            emit(next)\n            next = next.getNext()\n        }\n    }.flowOn(Dispatchers.Default)\n\n    @ExperimentalCoroutinesApi\n    public fun flowStartOrdered(): Flow<Z> =\n        flow {\n            if (previous == null) return@flow\n            flowBackward().toList().reversed().also {\n                emitAll(it.asFlow())\n            }\n        }.flowOn(Dispatchers.Default)\n\n    @ExperimentalCoroutinesApi\n    public fun flowEndOrdered(): Flow<Z> = flowForward()\n\n    /**\n     * Flow the paging action ordered. This can be less performant than [flow] if you are in the middle of the pages.\n     * */\n    @FlowPreview\n    @ExperimentalCoroutinesApi\n    public fun flowOrdered(context: CoroutineContext = Dispatchers.Default): Flow<T?> = flow {\n        emitAll(flowPagingObjectsOrdered().flatMapConcat { it.asFlow() })\n    }.flowOn(context)\n\n    /**\n     * Flow the paging objects ordered. This can be less performant than [flowPagingObjects] if you are in the middle of the pages.\n     * */\n    @ExperimentalCoroutinesApi\n    public fun flowPagingObjectsOrdered(context: CoroutineContext = Dispatchers.Default): Flow<Z> =\n        flow {\n            this@PagingObjectBase.also { master ->\n                emitAll(master.flowStartOrdered())\n                @Suppress(\"UNCHECKED_CAST\")\n                emit(master as Z)\n                emitAll(master.flowEndOrdered())\n            }\n        }.flowOn(context)\n\n    /**\n     * Flow the Paging action.\n     * */\n    @FlowPreview\n    @ExperimentalCoroutinesApi\n    public fun flow(context: CoroutineContext = Dispatchers.Default): Flow<T?> = flow {\n        emitAll(flowPagingObjects().flatMapConcat { it.asFlow() })\n    }.flowOn(context)\n\n    /**\n     * Flow the paging objects.\n     * */\n    @ExperimentalCoroutinesApi\n    public fun flowPagingObjects(context: CoroutineContext = Dispatchers.Default): Flow<Z> =\n        flow {\n            this@PagingObjectBase.also { master ->\n                emitAll(master.flowBackward())\n                @Suppress(\"UNCHECKED_CAST\")\n                emit(master as Z)\n                emitAll(master.flowForward())\n            }\n        }.flowOn(context)\n\n    override val size: Int get() = items.size\n    override fun contains(element: T?): Boolean = items.contains(element)\n    override fun containsAll(elements: Collection<T?>): Boolean = items.containsAll(elements)\n    override fun indexOf(element: T?): Int = items.indexOf(element)\n    override fun isEmpty(): Boolean = items.isEmpty()\n    override fun lastIndexOf(element: T?): Int = items.lastIndexOf(element)\n    override fun get(index: Int): T? = items[index]\n\n    /**\n     * Returns a list containing at most first [n] elements. Note that additional requests may be performed.\n     * The [limit] used in the request used to produce this [PagingObjectBase] will be respected, so choose [limit] carefully.\n     */\n    public open suspend fun take(n: Int): List<T?> {\n        if (n < 0) throw IllegalArgumentException(\"n must be non-negative.\")\n        if (n in items.indices) return items.take(n)\n        return items + (getNext()?.take(n - size) ?: listOf())\n    }\n}\n\ninternal fun Any.instantiateLateinitsIfPagingObjects(api: GenericSpotifyApi) = when (this) {\n    is FeaturedPlaylists -> {\n        this.playlists.itemClass = SimplePlaylist::class\n        listOf(this.playlists)\n    }\n    is Show -> {\n        this.episodes.itemClass = SimpleEpisode::class\n        listOf(this.episodes)\n    }\n    is Album -> {\n        this.tracks.itemClass = SimpleTrack::class\n        listOf(this.tracks)\n    }\n    is Playlist -> {\n        this.tracks.itemClass = PlaylistTrack::class\n        listOf(this.tracks)\n    }\n    is SpotifySearchResult -> {\n        this.albums?.itemClass = SimpleAlbum::class\n        this.artists?.itemClass = Artist::class\n        this.episodes?.itemClass = SimpleEpisode::class\n        this.playlists?.itemClass = SimplePlaylist::class\n        this.shows?.itemClass = SimpleShow::class\n        this.tracks?.itemClass = Track::class\n        listOfNotNull(albums, artists, episodes, playlists, shows, tracks)\n    }\n    else -> null\n}?.let { objs ->\n    objs.forEach { obj ->\n        obj.api = api\n        obj.getMembersThatNeedApiInstantiation().instantiateAllNeedsApiObjects(api)\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Playable.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport kotlinx.serialization.KSerializer\nimport kotlinx.serialization.Serializable\nimport kotlinx.serialization.json.JsonContentPolymorphicSerializer\nimport kotlinx.serialization.json.JsonElement\nimport kotlinx.serialization.json.JsonObject\nimport kotlinx.serialization.json.contentOrNull\nimport kotlinx.serialization.json.jsonPrimitive\n\n/**\n * A local track, episode, or track. Serialized with [PlayableSerializer]\n *\n * @property href A link to the Web API endpoint providing full details of the playable.\n * @property id The Spotify ID for the playable.\n * @property uri The URI associated with the object.\n * @property type The type of the playable.\n *\n */\n@Serializable(with = PlayableSerializer::class)\npublic interface Playable {\n    public val href: String?\n    public val id: String?\n    public val uri: PlayableUri\n    public val type: String\n\n    /**\n     * This Playable as a local track, or else null if it is an episode or track.\n     *\n     */\n    public val asLocalTrack: LocalTrack? get() = this as? LocalTrack\n\n    /**\n     * This Playable as an episode (podcast), or else null if it is a local track or track.\n     *\n     */\n    public val asPodcastEpisodeTrack: PodcastEpisodeTrack? get() = this as? PodcastEpisodeTrack\n\n    /**\n     * This Playable as a track, or else null if it is a local track or episode (podcast).\n     *\n     */\n    public val asTrack: Track? get() = this as? Track\n}\n\npublic object PlayableSerializer :\n    KSerializer<Playable> by object : JsonContentPolymorphicSerializer<Playable>(Playable::class) {\n        override fun selectDeserializer(element: JsonElement): KSerializer<out Playable> {\n            return when (\n                val uri: PlayableUri? =\n                    (element as? JsonObject)?.get(\"uri\")?.jsonPrimitive?.contentOrNull?.let { PlayableUri(it) }\n            ) {\n                is LocalTrackUri -> LocalTrack.serializer()\n                is EpisodeUri -> {\n                    if ((element as? JsonObject)?.get(\"show\") != null) {\n                        Episode.serializer()\n                    } else {\n                        PodcastEpisodeTrack.serializer()\n                    }\n                }\n                is SpotifyTrackUri -> Track.serializer()\n                null -> throw IllegalStateException(\"Couldn't find a serializer for uri $uri\")\n            }\n        }\n    }\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Player.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.endpoints.client.ClientPlayerApi\nimport com.adamratzman.spotify.utils.getExternalUrls\nimport com.adamratzman.spotify.utils.match\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * Context in which a track was played\n *\n * @param uri The Spotify URI for the context.\n * @param href A link to the Web API endpoint providing full details of the track.\n * @param typeString The object type, e.g. “artist”, “playlist”, “album”, “show”.\n *\n * @property type The object type, e.g. “artist”, “playlist”, “album”, “show”.\n * @property externalUrls Known external URLs for this object\n */\n@Serializable\npublic data class SpotifyContext(\n    @SerialName(\"external_urls\") private val externalUrlsString: Map<String, String>,\n    val href: String,\n    val uri: ContextUri,\n    @SerialName(\"type\") val typeString: String\n) {\n    val type: SpotifyContextType get() = SpotifyContextType.entries.toTypedArray().match(typeString)!!\n    val externalUrls: List<ExternalUrl> get() = getExternalUrls(externalUrlsString)\n}\n\n/**\n * Information about a previously-played track\n *\n * @param track The track the user listened to.\n * @param playedAt The date and time the track was played.\n * @param context The context the track was played from.\n */\n@Serializable\npublic data class PlayHistory(\n    val track: Track,\n    @SerialName(\"played_at\") val playedAt: String,\n    val context: SpotifyContext? = null\n)\n\n/**\n * A device which is connected to the Spotify user\n *\n * @param id The device ID. This may be null.\n * @param isActive If this device is the currently active device.\n * @param isPrivateSession If this device is currently in a private session.\n * @param isRestricted Whether controlling this device is restricted. At present\n * if this is “true” then no Web API commands will be accepted by this device.\n * @param name The name of the device.\n *\n * @property type Device type, such as “Computer”, “Smartphone” or “Speaker”.\n */\n@Serializable\npublic data class Device(\n    override val id: String? = null,\n    @SerialName(\"is_active\") val isActive: Boolean,\n    @SerialName(\"is_private_session\") val isPrivateSession: Boolean,\n    @SerialName(\"is_restricted\") val isRestricted: Boolean,\n    val name: String,\n    @SerialName(\"type\") val typeString: String,\n    @SerialName(\"volume_percent\") val volumePercent: Int\n) : IdentifiableNullable() {\n    val type: DeviceType get() = DeviceType.entries.first { it.identifier.equals(typeString, true) }\n\n    override val href: String? = null\n}\n\n/**\n * Electronic type of registered Spotify device\n *\n * @param identifier readable name\n */\npublic enum class DeviceType(public val identifier: String) {\n    Computer(\"Computer\"),\n    Tablet(\"Tablet\"),\n    Smartphone(\"Smartphone\"),\n    Speaker(\"Speaker\"),\n    Tv(\"TV\"),\n    Avr(\"AVR\"),\n    Stb(\"STB\"),\n    AudioDongle(\"AudioDongle\"),\n    GameConsole(\"GameConsole\"),\n    CastVideo(\"CastVideo\"),\n    CastAudio(\"CastAudio\"),\n    Automobile(\"Automobile\"),\n    Unknown(\"Unknown\");\n}\n\n/**\n * Information about the current playback\n *\n * @param timestamp Unix Millisecond Timestamp when data was fetched\n * @param device The device that is currently active\n * @param progressMs Progress into the currently playing track. Can be null (e.g. If private session is enabled this will be null).\n * @param isPlaying If something is currently playing.\n * @param item The currently playing item (track or episode). Can be null (e.g. If private session is enabled this will be null).\n * @param context A Context Object. Can be null (e.g. If private session is enabled this will be null).\n * *Note*: this will likely be null when playing the first track in a playlist or show context.\n * @param shuffleState If shuffle is on or off\n *\n * @property repeatState If and how the playback is repeating\n */\n@Serializable\npublic data class CurrentlyPlayingContext(\n    val timestamp: Long,\n    val device: Device,\n    @SerialName(\"progress_ms\") val progressMs: Int? = null,\n    @SerialName(\"is_playing\") val isPlaying: Boolean,\n    @Serializable(with = PlayableSerializer::class)\n    @SerialName(\"item\")\n    val item: Playable? = null,\n    @SerialName(\"shuffle_state\") val shuffleState: Boolean,\n    @SerialName(\"repeat_state\") val repeatStateString: String,\n    val context: SpotifyContext? = null\n) {\n    val repeatState: ClientPlayerApi.PlayerRepeatState\n        get() = ClientPlayerApi.PlayerRepeatState.entries.toTypedArray().match(repeatStateString)!!\n}\n\n/**\n * Information about the currently playing track and context\n *\n * @param context A Context Object. Can be null.\n * @param timestamp Unix Millisecond Timestamp when data was fetched\n * @param progressMs Progress into the currently playing track. Can be null.\n * @param isPlaying If something is currently playing.\n * @param item The currently playing track or episode. Can be null.\n * @param actions Allows to update the user interface based on which playback actions are available within the current context\n *\n * @property currentlyPlayingType The object type of the currently playing item. Can be one of track, episode, ad or unknown.\n */\n@Serializable\npublic data class CurrentlyPlayingObject(\n    val context: SpotifyContext? = null,\n    val timestamp: Long,\n    @SerialName(\"progress_ms\") val progressMs: Int? = null,\n    @SerialName(\"is_playing\") val isPlaying: Boolean,\n    @Serializable(with = PlayableSerializer::class)\n    @SerialName(\"item\")\n    val item: Playable? = null,\n    @SerialName(\"currently_playing_type\") private val currentlyPlayingTypeString: String,\n    val actions: PlaybackActions\n) {\n    val currentlyPlayingType: CurrentlyPlayingType\n        get() = CurrentlyPlayingType.entries.toTypedArray().match(currentlyPlayingTypeString)!!\n}\n\n/**\n * List of playback actions (pause, resume, etc) which a user is disallowed or allowed to do. Playback actions\n * NOT in [disallows] are allowed.\n *\n * @property disallows A list of [DisallowablePlaybackAction] that have an explicit setting\n */\n@Serializable\npublic data class PlaybackActions(\n    @SerialName(\"disallows\") val disallowsString: Map<String, Boolean?>\n) {\n    val disallows: List<DisallowablePlaybackAction>\n        get() = disallowsString.map {\n            DisallowablePlaybackAction(\n                PlaybackAction.entries.toTypedArray().match(it.key)!!,\n                it.value ?: false\n            )\n        }\n}\n\n@Serializable\npublic data class CurrentUserQueue(\n    @SerialName(\"currently_playing\") val currentlyPlaying: Playable? = null,\n    @SerialName(\"queue\") val queue: List<Playable>\n)\n\n/**\n * Maps a playback action to whether the user is disallowed from doing it\n *\n * @param action The [PlaybackAction] for which the explicit setting is provided\n * @param disallowed Whether the action is not allowed.\n */\n@Serializable\npublic data class DisallowablePlaybackAction(val action: PlaybackAction, val disallowed: Boolean)\n\n/**\n * Action a user takes that will affect current playback\n */\npublic enum class PlaybackAction(private val identifier: String) : ResultEnum {\n    InterruptingPlayback(\"interrupting_playback\"),\n    Pausing(\"pausing\"),\n    Playing(\"playing\"),\n    Resuming(\"resuming\"),\n    Seeking(\"seeking\"),\n    SkippingNext(\"skipping_next\"),\n    SkippingPrev(\"skipping_prev\"),\n    Stopping(\"stopping\"),\n    TogglingRepeatContext(\"toggling_repeat_context\"),\n    TogglingShuffle(\"toggling_shuffle\"),\n    TogglingRepeatTrack(\"toggling_repeat_track\"),\n    TransferringPlayback(\"transferring_playback\");\n\n    override fun retrieveIdentifier(): String = identifier\n}\n\n/**\n * The object type of the currently playing item\n */\npublic enum class CurrentlyPlayingType(public val identifier: String) : ResultEnum {\n    Track(\"track\"),\n    Episode(\"episode\"),\n    Ad(\"ad\"),\n    Unknown(\"unknown\");\n\n    override fun retrieveIdentifier(): String = identifier\n}\n\npublic enum class SpotifyContextType(public val identifier: String) : ResultEnum {\n    Artist(\"artist\"),\n    Playlist(\"playlist\"),\n    Album(\"album\"),\n    Show(\"show\");\n\n    override fun retrieveIdentifier(): String = identifier\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Playlist.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyAppApi\nimport com.adamratzman.spotify.SpotifyRestAction\nimport com.adamratzman.spotify.endpoints.client.PlaylistSnapshot\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * Simplified Playlist object that can be used to retrieve a full [Playlist]\n *\n * @param collaborative Returns true if context is not search and the owner allows other users to\n * modify the playlist. Otherwise returns false.\n * @param href A link to the Web API endpoint providing full details of the playlist.\n * @param id The Spotify ID for the playlist.\n * @param images Images for the playlist. The array may be empty or contain up to three images.\n * The images are returned by size in descending order. See Working with Playlists.\n * Note: If returned, the source URL for the image ( url ) is temporary and will expire in less than a day.\n * @param name The name of the playlist.\n * @param owner The user who owns the playlist\n * @param primaryColor Unknown.\n * @param public The playlist’s public/private status: true the playlist is public, false the\n * playlist is private, null the playlist status is not relevant.\n * @param tracks A collection containing a link ( href ) to the Web API endpoint where full details of the\n * playlist’s tracks can be retrieved, along with the total number of tracks in the playlist.\n * @param type The object type: “playlist”\n * @param description The playlist description. Only returned for modified, verified playlists, otherwise null.\n *\n * @property snapshot The version identifier for the current playlist. Can be supplied in other\n * requests to target a specific playlist version\n */\n@Serializable\npublic data class SimplePlaylist(\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    override val uri: SpotifyUri,\n\n    val collaborative: Boolean,\n    val images: List<SpotifyImage>? = null,\n    val name: String,\n    val description: String? = null,\n    val owner: SpotifyPublicUser,\n    @SerialName(\"primary_color\") val primaryColor: String? = null,\n    val public: Boolean? = null,\n    @SerialName(\"snapshot_id\") private val snapshotIdString: String,\n    val tracks: PlaylistTrackInfo,\n    val type: String\n) : CoreObject() {\n    val snapshot: PlaylistSnapshot get() = PlaylistSnapshot(snapshotIdString)\n\n    /**\n     * Converts this [SimplePlaylist] into a full [Playlist] object with the given\n     * market\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public suspend fun toFullPlaylist(market: Market? = null): Playlist? =\n        api.playlists.getPlaylist(id, market)\n\n    /**\n     * Converts this [SimplePlaylist] into a full [Playlist] object with the given\n     * market\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public fun toFullPlaylistRestAction(market: Market? = null): SpotifyRestAction<Playlist?> =\n        SpotifyRestAction { toFullPlaylist(market) }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(this)\n}\n\n/**\n * Represents a Spotify track inside a [Playlist]\n *\n * @param primaryColor Unknown. Undocumented field\n * @param addedAt The date and time the track was added. Note that some very old playlists may return null in this field.\n * @param addedBy The Spotify user who added the track. Note that some very old playlists may return null in this field.\n * @param isLocal Whether this track is a local file or not.\n * @param track Information about the track. In rare occasions, this field may be null if this track's API entry is broken.\n * **Warning:** if this is a podcast, the track will be null if you are using [SpotifyAppApi].\n */\n@Serializable\npublic data class PlaylistTrack(\n    @SerialName(\"primary_color\") val primaryColor: String? = null,\n    @SerialName(\"added_at\") val addedAt: String? = null,\n    @SerialName(\"added_by\") val addedBy: SpotifyPublicUser? = null,\n    @SerialName(\"is_local\") val isLocal: Boolean? = null,\n    @Serializable(with = PlayableSerializer::class) val track: Playable? = null,\n    @SerialName(\"video_thumbnail\") val videoThumbnail: VideoThumbnail? = null\n)\n\n/**\n * Represents a Playlist on Spotify\n *\n * @param collaborative Returns true if context is not search and the owner allows other users to modify the playlist.\n * Otherwise returns false.\n * @param description The playlist description. Only returned for modified, verified playlists, otherwise null.\n * @param followers\n * @param href A link to the Web API endpoint providing full details of the playlist.\n * @param id The Spotify ID for the playlist.\n * @param primaryColor Unknown.\n * @param images Images for the playlist. The array may be empty or contain up to three images.\n * The images are returned by size in descending order.Note: If returned, the source URL for the\n * image ( url ) is temporary and will expire in less than a day.\n * @param name The name of the playlist.\n * @param owner The user who owns the playlist\n * @param public The playlist’s public/private status: true the playlist is public, false the playlist is private,\n * null the playlist status is not relevant\n * a specific playlist version\n * @param tracks Information about the tracks of the playlist.\n * @param type The object type: “playlist”\n *\n * @property snapshot The version identifier for the current playlist. Can be supplied in other requests to target\n */\n@Serializable\npublic data class Playlist(\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    override val uri: PlaylistUri,\n\n    val collaborative: Boolean,\n    val description: String? = null,\n    val followers: Followers,\n    @SerialName(\"primary_color\") val primaryColor: String? = null,\n    val images: List<SpotifyImage>? = null,\n    val name: String,\n    val owner: SpotifyPublicUser,\n    val public: Boolean? = null,\n    @SerialName(\"snapshot_id\") private val snapshotIdString: String,\n    val tracks: PagingObject<PlaylistTrack>,\n    val type: String\n) : CoreObject() {\n    val snapshot: PlaylistSnapshot get() = PlaylistSnapshot(snapshotIdString)\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(tracks, this)\n}\n\n/**\n * A collection containing a link ( href ) to the Web API endpoint where full details of the playlist’s tracks\n * can be retrieved, along with the total number of tracks in the playlist.\n *\n * @param href link to the Web API endpoint where full details of the playlist’s tracks\n * can be retrieved\n * @param total the total number of tracks in the playlist.\n */\n@Serializable\npublic data class PlaylistTrackInfo(\n    val href: String,\n    val total: Int? = null\n)\n\n@Serializable\npublic data class VideoThumbnail(val url: String? = null)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/ResultObjects.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyApi\nimport com.adamratzman.spotify.SpotifyApiOptions\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.utils.ExternalUrls\nimport com.adamratzman.spotify.utils.getCurrentTimeMs\nimport com.adamratzman.spotify.utils.getExternalUrls\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\nimport kotlinx.serialization.Transient\n\n/**\n * Represents an identifiable Spotify object such as an Album or Recommendation Seed\n */\n@Serializable\npublic abstract class Identifiable : IdentifiableNullable() {\n    abstract override val id: String\n}\n\n/**\n * Represents an identifiable Spotify object such as an Album or Recommendation Seed\n *\n * @property href A link to the Spotify web api endpoint associated with this request\n * @property id The Spotify id of the associated object\n */\n@Serializable\npublic abstract class IdentifiableNullable : NeedsApi() {\n    public abstract val href: String?\n    public abstract val id: String?\n}\n\n/**\n * Represents a core Spotify object such as a Track or Album\n *\n * @property uri The URI associated with the object\n * @property externalUrls Known external URLs for this object\n */\n@Serializable\npublic abstract class CoreObject : Identifiable() {\n    protected abstract val externalUrlsString: Map<String, String>\n    abstract override val href: String\n    public abstract val uri: SpotifyUri\n    public val externalUrls: ExternalUrls get() = getExternalUrls(externalUrlsString)\n\n    public abstract override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?>\n}\n\n/**\n *\n * Represents a response for which a relinked track could be available\n *\n * @property linkedTrack Part of the response when Track Relinking is applied and is only part of the response\n * if the track linking, in fact, exists. The requested track has been replaced with a different track. The track contains information about the originally requested track.\n */\n@Serializable\npublic abstract class RelinkingAvailableResponse : CoreObject() {\n    @SerialName(\"linked_from\")\n    public abstract val linkedTrack: LinkedTrack?\n\n    /**\n     * Check if this response has been relinked.\n     */\n    public fun isRelinked(): Boolean = linkedTrack != null\n}\n\n/**\n * Key/value pair mapping a name to an arbitrary url\n */\n@Serializable\npublic class ExternalUrl(public val name: String, public val url: String)\n\n/**\n * An external id linked to the result object\n *\n * @param key The identifier type, for example:\n- \"isrc\" - International Standard Recording Code\n- \"ean\" - International Article Number\n- \"upc\" - Universal Product Code\n * @param id An external identifier for the object.\n */\npublic class ExternalId(public val key: String, public val id: String)\n\n/**\n * Provide access to the underlying [SpotifyApi]\n *\n * @property api The API client associated with the request\n */\n@Serializable\npublic abstract class NeedsApi {\n    @Transient\n    public lateinit var api: GenericSpotifyApi\n\n    internal open fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(this)\n}\n\n/**\n * Interface that allows easy identifier retrieval for children with an implemented identifier\n */\npublic interface ResultEnum {\n    public fun retrieveIdentifier(): Any\n}\n\n/**\n * Wraps around [ErrorObject]. Serialized raw Spotify error response\n *\n * @param error The error code and message, as returned by Spotify\n * @param exception The associated Kotlin exception for this error\n */\n@Serializable\npublic data class ErrorResponse(val error: ErrorObject, @Transient val exception: Exception? = null)\n\n/**\n * An endpoint exception from Spotify\n *\n * @param status The HTTP status code\n * @param message A short description of the cause of the error.\n */\n@Serializable\npublic data class ErrorObject(val status: Int, val message: String, val reason: String? = null)\n\n/**\n * An exception during the authentication process\n *\n * @param error Short error message\n * @param description More detailed description of the error\n */\n@Serializable\npublic data class AuthenticationError(\n    val error: String,\n    @SerialName(\"error_description\") val description: String? = null\n)\n\n/**\n * Thrown when [SpotifyApiOptions.retryWhenRateLimited] is false and requests have been ratelimited\n *\n * @param time the time, in seconds, until the next request can be sent\n */\npublic class SpotifyRatelimitedException(time: Long) :\n    SpotifyException.UnNullableException(\"Calls to the Spotify API have been ratelimited for $time seconds until ${getCurrentTimeMs() + time * 1000}ms\")\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Show.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyRestAction\nimport com.adamratzman.spotify.utils.Locale\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * Basic information about a Spotify show\n *\n * @param copyrights The copyright statements of the show.\n * @param description A description of the show.\n * @param explicit Whether or not the show has explicit content (true = yes it does; false = no it does not OR unknown).\n * @param images The cover art for the show in various sizes, widest first.\n * @param isExternallyHosted True if all of the show’s episodes are hosted outside of Spotify’s CDN. This field might be null in some cases.\n * @param mediaType The media type of the show.\n * @param name The name of the show.\n * @param publisher The publisher of the show.\n * @param type The object type: “show”.\n *\n * @property availableMarkets A list of the countries in which the show can be played, identified by their ISO 3166-1 alpha-2 code.\n * @property languages A list of the languages used in the show, identified by their ISO 639 code.\n */\n@Serializable\npublic data class SimpleShow(\n    @SerialName(\"available_markets\") private val availableMarketsString: List<String> = listOf(),\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    val copyrights: List<SpotifyCopyright>,\n    val description: String? = null,\n    val explicit: Boolean,\n    override val href: String,\n    override val id: String,\n    val images: List<SpotifyImage>,\n    @SerialName(\"is_externally_hosted\") val isExternallyHosted: Boolean? = null,\n    @SerialName(\"languages\") private val languagesString: List<String>,\n    @SerialName(\"media_type\") val mediaType: String,\n    val name: String,\n    val publisher: String,\n    val type: String,\n    override val uri: SpotifyUri\n) : CoreObject() {\n    val availableMarkets: List<Market> get() = availableMarketsString.map { Market.valueOf(it) }\n\n    val languages: List<Locale> get() = languagesString.map { Locale.valueOf(it.replace(\"-\", \"_\")) }\n\n    /**\n     * Converts this [SimpleShow] to a full [Show] object\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public suspend fun toFullShow(market: Market): Show? = api.shows.getShow(id, market)\n\n    /**\n     * Converts this [SimpleShow] to a full [Show] object\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public fun toFullShowRestAction(market: Market): SpotifyRestAction<Show?> = SpotifyRestAction { toFullShow(market) }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(this)\n}\n\n/**\n * Information about a Spotify show, including its episodes\n *\n * @param copyrights The copyright statements of the show.\n * @param description A description of the show.\n * @param explicit Whether or not the show has explicit content (true = yes it does; false = no it does not OR unknown).\n * @param images The cover art for the show in various sizes, widest first.\n * @param isExternallyHosted True if all of the show’s episodes are hosted outside of Spotify’s CDN. This field might be null in some cases.\n * @param mediaType The media type of the show.\n * @param name The name of the show.\n * @param publisher The publisher of the show.\n * @param type The object type: “show”.\n * @param episodes A [NullablePagingObject] of the show’s episodes.\n *\n * @property availableMarkets A list of the countries in which the show can be played, identified by their ISO 3166-1 alpha-2 code.\n * @property languages A list of the languages used in the show, identified by their ISO 639 code.\n */\n@Serializable\npublic data class Show(\n    @SerialName(\"available_markets\") private val availableMarketsString: List<String> = listOf(),\n    val copyrights: List<SpotifyCopyright>,\n    val description: String? = null,\n    val explicit: Boolean,\n    val episodes: NullablePagingObject<SimpleEpisode>,\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    val images: List<SpotifyImage>,\n    @SerialName(\"is_externally_hosted\") val isExternallyHosted: Boolean? = null,\n    @SerialName(\"languages\") val languagesString: List<String>,\n    @SerialName(\"media_type\") val mediaType: String,\n    val name: String,\n    val publisher: String,\n    val type: String,\n    override val uri: ShowUri\n) : CoreObject() {\n    val availableMarkets: List<Market> get() = availableMarketsString.map { Market.valueOf(it) }\n\n    val languages: List<Locale> get() = languagesString.map { Locale.valueOf(it.replace(\"-\", \"_\")) }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(episodes, this)\n}\n\n@Serializable\ninternal data class ShowList(val shows: List<SimpleShow?>)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/SpotifySearchResult.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport kotlinx.serialization.Serializable\n\n/**\n * Available filters that Spotify allows in search, in addition to filtering by object type.\n */\npublic enum class SearchFilterType(public val id: String) {\n    Album(\"album\"),\n    Artist(\"artist\"),\n    Track(\"track\"),\n    Year(\"year\"),\n    Upc(\"upc\"),\n    Hipster(\"tag:hipster\"),\n    New(\"tag:new\"),\n    Isrc(\"isrc\"),\n    Genre(\"genre\")\n}\n\n/**\n * A filter of type [SearchFilterType]. Should be unique by type.\n *\n * @param filterValue A string to match, or in the case of [SearchFilterType.Year] can be a range of years in the form\n * A-B. Example: 2000-2010\n */\npublic data class SearchFilter(val filterType: SearchFilterType, val filterValue: String)\n\n@Serializable\npublic data class SpotifySearchResult(\n    val albums: PagingObject<SimpleAlbum>? = null,\n    val artists: PagingObject<Artist>? = null,\n    val playlists: PagingObject<SimplePlaylist>? = null,\n    val tracks: PagingObject<Track>? = null,\n    val episodes: NullablePagingObject<SimpleEpisode>? = null,\n    val shows: NullablePagingObject<SimpleShow>? = null\n)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/SpotifyUris.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:Suppress(\"EXPERIMENTAL_API_USAGE\")\n\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyException\nimport kotlinx.serialization.KSerializer\nimport kotlinx.serialization.Serializable\nimport kotlinx.serialization.descriptors.PrimitiveKind\nimport kotlinx.serialization.descriptors.PrimitiveSerialDescriptor\nimport kotlinx.serialization.descriptors.SerialDescriptor\nimport kotlinx.serialization.encoding.Decoder\nimport kotlinx.serialization.encoding.Encoder\n\n/**\n * Exception instantiating or deserializing a uri perceived as invalid\n */\npublic class SpotifyUriException(message: String) : SpotifyException.BadRequestException(message)\n\nprivate fun String.matchType(type: String, allowColon: Boolean): String? {\n    val uriContent = \"[^:]\".takeUnless { allowColon } ?: \".\"\n    val typeRegex = \"^spotify:(?:.*:)?$type:($uriContent*)(?::.*)*$|^([^:]+)\\$\".toRegex()\n    val match = typeRegex.matchEntire(this)?.groupValues ?: return null\n    return match[1].takeIf { it.isNotBlank() || match[2].isEmpty() } ?: match[2].takeIf { it.isNotEmpty() }\n}\n\nprivate fun String.matchesUserCollectionUri() = this.matches(\"^spotify:user:([^:]+):collection\".toRegex())\n\nprivate fun String.add(type: String, allowColon: Boolean): String {\n    if (type == UserCollectionUriType && matchesUserCollectionUri()) {\n        return this\n    } else {\n        this.matchType(type, allowColon)?.let {\n            return \"spotify:$type:${it.trim()}\"\n        }\n    }\n    throw SpotifyUriException(\"Illegal Spotify ID/URI: '$this' isn't convertible to '$type' uri\")\n}\n\nprivate fun String.remove(type: String, allowColon: Boolean): String {\n    if (type == UserCollectionUriType && matchesUserCollectionUri()) {\n        return \"collection\"\n    } else {\n        this.matchType(type, allowColon)?.let {\n            return it.trim()\n        }\n    }\n    throw SpotifyUriException(\"Illegal Spotify ID/URI: '$this' isn't convertible to '$type' id\")\n}\n\nprivate class SimpleUriSerializer<T : SpotifyUri>(val ctor: (String) -> T) : KSerializer<T> {\n    override val descriptor: SerialDescriptor = PrimitiveSerialDescriptor(\"SimpleUri\", PrimitiveKind.STRING)\n    override fun deserialize(decoder: Decoder): T {\n        val str = decoder.decodeString()\n        return ctor(str)\n    }\n\n    override fun serialize(encoder: Encoder, value: T) = encoder.encodeString(value.uri)\n}\n\n/**\n * @property uri retrieve this URI as a string\n * @property id representation of this uri as an id\n */\npublic interface ISpotifyUri {\n    public val uri: String\n    public val id: String\n}\n\n/**\n * Represents any Spotify **URI** (one of [ArtistUri], [PlayableUri], [ImmutableCollectionUri], [UserUri], [PlaylistUri]),\n * parsed from either a Spotify ID or taken from an endpoint.\n *\n * @param type The type (per Spotify) corresponding to the Uri.\n *\n */\n@Serializable(with = SpotifyUriSerializer::class)\npublic sealed class SpotifyUri(input: String, public val type: String, allowColon: Boolean = false) : ISpotifyUri {\n    public final override val uri: String\n    public final override val id: String\n\n    init {\n        input.replace(\" \", \"\").also {\n            this.uri = it.add(type, allowColon)\n            this.id = it.remove(type, allowColon)\n        }\n    }\n\n    override fun equals(other: Any?): Boolean {\n        val spotifyUri = other as? SpotifyUri ?: return false\n        return spotifyUri.uri == this.uri\n    }\n\n    override fun hashCode(): Int {\n        var result = uri.hashCode()\n        result = 31 * result + id.hashCode()\n        return result\n    }\n\n    override fun toString(): String {\n        return \"SpotifyUri(type=$type, uri=$uri)\"\n    }\n\n    public companion object {\n        /**\n         * This function safely instantiates a SpotifyUri from given constructor.\n         * */\n        public inline fun <T : SpotifyUri> safeInitiate(uri: String, ctor: (String) -> T): T? {\n            return try {\n                ctor(uri)\n            } catch (e: SpotifyUriException) {\n                null\n            }\n        }\n\n        /**\n         * Creates a abstract SpotifyUri of given input. Doesn't allow ambiguity by disallowing creation by id.\n         * */\n        public operator fun invoke(input: String): SpotifyUri {\n            val inputUriModified = input.removeSuffix(\":recommended\")\n\n            val constructors = listOf(\n                ::ArtistUri,\n                PlayableUri.Companion::invoke,\n                CollectionUri.Companion::invoke,\n                ::UserUri,\n                ::PlaylistUri\n            )\n            for (ctor in constructors) {\n                safeInitiate(inputUriModified, ctor)?.takeIf { it.uri == inputUriModified }?.also { return it }\n            }\n\n            throw SpotifyUriException(\"Illegal Spotify ID/URI: '$inputUriModified' isn't convertible to any arbitrary id\")\n        }\n\n        /**\n         * This function returns whether or not the given input IS a given type.\n         *\n         * @example ```Kotlin\n         *     SpotifyUri.isType<UserUri>(\"abc\") // returns: false\n         *     SpotifyUri.isType<UserUri>(\"spotify:user:abc\") // returns: true\n         *     SpotifyUri.isType<UserUri>(\"spotify:track:abc\") // returns: false\n         * ```\n         * */\n        public inline fun <reified T : SpotifyUri> isType(input: String): Boolean {\n            return safeInitiate(input, ::invoke)?.let { it is T } ?: false\n        }\n\n        /**\n         * This function returns whether ot not the given input CAN be a given type.\n         *\n         * @example ```Kotlin\n         *     SpotifyUri.canBeType<UserUri>(\"abc\") // returns: true\n         *     SpotifyUri.canBeType<UserUri>(\"spotify:user:abc\") // returns: true\n         *     SpotifyUri.canBeType<UserUri>(\"spotify:track:abc\") // returns: false\n         * ```\n         * */\n        public inline fun <reified T : SpotifyUri> canBeType(input: String): Boolean {\n            return isType<T>(input) || !input.contains(':')\n        }\n    }\n}\n\n/**\n * Convert any (artist, [PlayableUri], [ImmutableCollectionUri], user, playlist) uri string to a [SpotifyUri] object.\n * Ambiguity is not allowed.\n *\n * *Note*: it is preferable to use a more specific function ([toArtistUri], [toPlayableUri], [toImmutableCollectionUri], [toUserUri], [toPlaylistUri]) if possible.\n */\npublic fun String.toSpotifyUri(): SpotifyUri = SpotifyUri(this)\n\n// TODO replace serialization with JSON specific code\npublic object SpotifyUriSerializer : KSerializer<SpotifyUri> {\n    override val descriptor: SerialDescriptor = PrimitiveSerialDescriptor(\"SpotifyUri\", PrimitiveKind.STRING)\n    override fun deserialize(decoder: Decoder): SpotifyUri = SpotifyUri(decoder.decodeString())\n    override fun serialize(encoder: Encoder, value: SpotifyUri): Unit = encoder.encodeString(value.uri)\n}\n\n/**\n * Represents a Spotify **Collection** URI (one of [PlaylistUri] or [ImmutableCollectionUri]),\n * parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = CollectionUriSerializer::class)\npublic sealed class CollectionUri(input: String, type: String, allowColon: Boolean = false) :\n    SpotifyUri(input, type, allowColon) {\n    public companion object {\n        /**\n         * Creates an abstract [CollectionUri] of given input. Prefers [PlaylistUri] if the input is ambiguous.\n         */\n        public operator fun invoke(input: String): CollectionUri {\n            val constructors = listOf(::PlaylistUri, ::UserCollectionUri, ImmutableCollectionUri.Companion::invoke)\n            for (ctor in constructors) {\n                safeInitiate(input, ctor)?.also { return it }\n            }\n            throw SpotifyUriException(\"Illegal Spotify ID/URI: '$input' isn't convertible to 'playlist' or 'predefinedCollection' id\")\n        }\n    }\n}\n\n/**\n * Convert a collection (playlist/[ImmutableCollectionUri]) id or uri string to an [ImmutableCollectionUri] object.\n * If an id is provided or the input is ambiguous, [PlaylistUri] is preferred.\n *\n * *Note*: it is preferable to use a more specific function ([toPlaylistUri], [toImmutableCollectionUri]) if possible.\n */\npublic fun String.toCollectionUri(): CollectionUri = CollectionUri(this)\n\npublic object CollectionUriSerializer : KSerializer<CollectionUri> {\n    override val descriptor: SerialDescriptor = PrimitiveSerialDescriptor(\"CollectionUri\", PrimitiveKind.STRING)\n    override fun deserialize(decoder: Decoder): CollectionUri {\n        return CollectionUri(decoder.decodeString())\n    }\n\n    override fun serialize(encoder: Encoder, value: CollectionUri): Unit = encoder.encodeString(value.uri)\n}\n\n/**\n * Represents a Spotify **Immutable Collection** URI (one of [AlbumUri] or [ShowUri]),\n * parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = ImmutableCollectionUriSerializer::class)\npublic sealed class ImmutableCollectionUri(input: String, type: String, allowColon: Boolean = false) :\n    CollectionUri(input, type, allowColon) {\n    public companion object {\n        /**\n         * Creates an abstract [ImmutableCollectionUri] of given input. Prefers [AlbumUri] if the input is ambiguous.\n         */\n        public operator fun invoke(input: String): ImmutableCollectionUri {\n            val constructors = listOf(::AlbumUri, ::ShowUri)\n            for (ctor in constructors) {\n                safeInitiate(input, ctor)?.also { return it }\n            }\n            throw SpotifyUriException(\"Illegal Spotify ID/URI: '$input' isn't convertible to 'album' or 'show' id\")\n        }\n    }\n}\n\n/**\n * Convert an immutable collection (album/show) id or uri string to an [ImmutableCollectionUri] object.\n * If an id is provided or the input is ambiguous, [AlbumUri] is preferred.\n *\n * *Note*: it is preferable to use a more specific function ([toAlbumUri], [toShowUri]) if possible.\n */\npublic fun String.toImmutableCollectionUri(): ImmutableCollectionUri = ImmutableCollectionUri(this)\n\npublic object ImmutableCollectionUriSerializer : KSerializer<ImmutableCollectionUri> {\n    override val descriptor: SerialDescriptor = PrimitiveSerialDescriptor(\"ImmutableCollection\", PrimitiveKind.STRING)\n    override fun deserialize(decoder: Decoder): ImmutableCollectionUri =\n        ImmutableCollectionUri(decoder.decodeString())\n\n    override fun serialize(encoder: Encoder, value: ImmutableCollectionUri): Unit = encoder.encodeString(value.uri)\n}\n\n/**\n * Represents a Spotify **Playable** URI (one of [SpotifyTrackUri], [LocalTrackUri], or [EpisodeUri]),\n * parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = PlayableUriSerializer::class)\npublic sealed class PlayableUri(input: String, type: String, allowColon: Boolean = false) :\n    SpotifyUri(input, type, allowColon) {\n    public companion object {\n        /**\n         * Creates an abstract [PlayableUri] of given input. Prefers [SpotifyTrackUri] if the input is ambiguous.\n         */\n        public operator fun invoke(input: String): PlayableUri {\n            val constructors = listOf(::SpotifyTrackUri, ::LocalTrackUri, ::EpisodeUri)\n            for (ctor in constructors) {\n                safeInitiate(input, ctor)?.also { return it }\n            }\n            throw SpotifyUriException(\"Illegal Spotify ID/URI: '$input' isn't convertible to 'track' or 'localTrack' or 'episode' id\")\n        }\n    }\n}\n\n/**\n * Convert a playable (track/local track/episode) id or uri string to a [PlayableUri] object.\n * If an id is provided or the input is ambiguous, [SpotifyTrackUri] is preferred.\n *\n * *Note*: it is preferable to use a more specific function ([toTrackUri], [toLocalTrackUri], [toEpisodeUri]) if possible.\n */\npublic fun String.toPlayableUri(): PlayableUri = PlayableUri(this)\n\npublic object PlayableUriSerializer : KSerializer<PlayableUri> {\n    override val descriptor: SerialDescriptor = PrimitiveSerialDescriptor(\"PlayableUri\", PrimitiveKind.STRING)\n    override fun deserialize(decoder: Decoder): PlayableUri = PlayableUri(decoder.decodeString())\n    override fun serialize(encoder: Encoder, value: PlayableUri): Unit = encoder.encodeString(value.uri)\n}\n\n/**\n * Represents a Spotify **Album** URI (spotify:album:XXXXXXXXXX), parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = AlbumUriSerializer::class)\npublic class AlbumUri(input: String) : ImmutableCollectionUri(input, \"album\"), ContextUri\npublic object AlbumUriSerializer : KSerializer<AlbumUri> by SimpleUriSerializer(::AlbumUri)\n\n/**\n * Convert an album id or uri string to an [AlbumUri] object\n */\npublic fun String.toAlbumUri(): AlbumUri = AlbumUri(this)\n\n/**\n * Represents a Spotify **Artist** URI (spotify:artist:XXXXXXXXXX), parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = ArtistUriSerializer::class)\npublic class ArtistUri(input: String) : SpotifyUri(input, \"artist\"), ContextUri\npublic object ArtistUriSerializer : KSerializer<ArtistUri> by SimpleUriSerializer(::ArtistUri)\n\n/**\n * Convert an artist id or uri string to an [ArtistUri] object\n */\npublic fun String.toArtistUri(): ArtistUri = ArtistUri(this)\n\n/**\n * Represents a Spotify **User** URI (spotify:user:XXXXXXXXXX), parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = UserUriSerializer::class)\npublic class UserUri(input: String) : SpotifyUri(input, \"user\")\npublic object UserUriSerializer : KSerializer<UserUri> by SimpleUriSerializer(::UserUri)\n\n/**\n * Convert a user id or uri string to a [UserUri] object\n */\npublic fun String.toUserUri(): UserUri = UserUri(this)\n\n/**\n * Represents a Spotify **Playlist** URI (spotify:playlist:XXXXXXXXXX), parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = PlaylistUriSerializer::class)\npublic class PlaylistUri(input: String) : CollectionUri(input, \"playlist\"), ContextUri\npublic object PlaylistUriSerializer : KSerializer<PlaylistUri> by SimpleUriSerializer(::PlaylistUri)\n\n/**\n * Convert a playlist id or uri string to a [PlaylistUri] object\n */\npublic fun String.toPlaylistUri(): PlaylistUri = PlaylistUri(this)\n\n/**\n * Represents a Spotify **Track** URI (spotify:track:XXXXXXXXXX), parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = SpotifyTrackUriSerializer::class)\npublic class SpotifyTrackUri(input: String) : PlayableUri(input, \"track\")\npublic object SpotifyTrackUriSerializer : KSerializer<SpotifyTrackUri> by SimpleUriSerializer(::SpotifyTrackUri)\n\n/**\n * Convert a track (non-local) id or uri string to a [SpotifyTrackUri] object\n */\npublic fun String.toTrackUri(): SpotifyTrackUri = SpotifyTrackUri(this)\n\n/**\n * Represents a Spotify **Local Track** URI (spotify:local:XXXXXXXXXX), parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = LocalTrackUriSerializer::class)\npublic class LocalTrackUri(input: String) : PlayableUri(input, \"local\", allowColon = true)\npublic object LocalTrackUriSerializer : KSerializer<LocalTrackUri> by SimpleUriSerializer(::LocalTrackUri)\n\n/**\n * Convert a local track id or uri string to a [LocalTrackUri] object\n */\npublic fun String.toLocalTrackUri(): LocalTrackUri = LocalTrackUri(this)\n\n/**\n * Represents a Spotify **Episode** URI (spotify:episode:XXXXXXXXXX), parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = EpisodeUriSerializer::class)\npublic class EpisodeUri(input: String) : PlayableUri(input, \"episode\")\npublic object EpisodeUriSerializer : KSerializer<EpisodeUri> by SimpleUriSerializer(::EpisodeUri)\n\n/**\n * Convert an episode id or uri string to an [EpisodeUri] object\n */\npublic fun String.toEpisodeUri(): EpisodeUri = EpisodeUri(this)\n\n/**\n * Represents a Spotify **Show** URI (spotify:show:XXXXXXXXXX), parsed from either a Spotify ID or taken from an endpoint.\n */\n@Serializable(with = ShowUriSerializer::class)\npublic class ShowUri(input: String) : ImmutableCollectionUri(input, \"show\"), ContextUri\npublic object ShowUriSerializer : KSerializer<ShowUri> by SimpleUriSerializer(::ShowUri)\n\n/**\n * Convert a show id or uri string to a [ShowUri] object\n */\npublic fun String.toShowUri(): ShowUri = ShowUri(this)\n\nprivate const val UserCollectionUriType = \"UserCollectionUri\"\n\n/**\n * Represents a Spotify **User Collection URI** URI (spotify:user:XXXX:collection), parsed from either a Spotify ID or taken from an endpoint.\n * It appears that this URI corresponds to the user's saved tracks collection in their library.\n */\n@Serializable(with = UserCollectionUriSerializer::class)\npublic class UserCollectionUri(input: String) : CollectionUri(input, UserCollectionUriType), ContextUri\npublic object UserCollectionUriSerializer : KSerializer<UserCollectionUri> by SimpleUriSerializer(::UserCollectionUri)\n\n/**\n * Convert a show id or uri string to a [ShowUri] object\n */\npublic fun String.toUserCollectionUri(): UserCollectionUri = UserCollectionUri(this)\n\n/**\n * Represents a Spotify **Context** URI (one of [AlbumUri], [ArtistUri], [PlaylistUri], [UserCollectionUri], or [ShowUri]),\n */\n@Serializable(with = ContextUriSerializer::class)\npublic interface ContextUri : ISpotifyUri {\n    public companion object {\n        /**\n         * Creates an abstract [ContextUri] of given input. Prefers [PlaylistUri] if the input is ambiguous.\n         */\n        public operator fun invoke(input: String): ContextUri {\n            val constructors = listOf(::PlaylistUri, ::AlbumUri, ::ArtistUri, ::ShowUri)\n            for (ctor in constructors) {\n                SpotifyUri.safeInitiate(input, ctor)?.also { return it }\n            }\n            throw SpotifyUriException(\"Illegal Spotify ID/URI: '$input' isn't convertible to 'playlist' or 'album' or 'artist' or 'show' id\")\n        }\n    }\n}\n\n/**\n * Convert any (artist, album, playlist, or show) uri string to a [ContextUri] object.\n *\n * *Note*: it is preferable to use a more specific function ([toPlaylistUri], [toAlbumUri], [toArtistUri], [toShowUri]) if possible.\n */\npublic fun String.toContextUri(): ContextUri = ContextUri(this)\n\npublic object ContextUriSerializer : KSerializer<ContextUri> {\n    override val descriptor: SerialDescriptor = PrimitiveSerialDescriptor(\"PlayableUri\", PrimitiveKind.STRING)\n    override fun deserialize(decoder: Decoder): ContextUri = ContextUri(decoder.decodeString())\n    override fun serialize(encoder: Encoder, value: ContextUri): Unit = encoder.encodeString(value.uri)\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Track.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyRestAction\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\n\n/**\n * Simplified Playlist object that can be used to retrieve a full [Playlist]\n *\n * @param artists The artists who performed the track. Each artist object includes a link in href to\n * more detailed information about the artist.\n * identified by their ISO 3166-1 alpha-2 code.\n * @param discNumber The disc number (usually 1 unless the album consists of more than one disc).\n * @param durationMs The track length in milliseconds.\n * @property length The track length in milliseconds. Alias of [durationMs]\n * @param explicit Whether or not the track has explicit lyrics ( true = yes it does; false = no it does not OR unknown).\n * @param href A link to the Web API endpoint providing full details of the track.\n * @param id The Spotify ID for the track.\n * @param isPlayable Part of the response when Track Relinking is applied. If true ,\n * the track is playable in the given market. Otherwise false.\n * @param name The name of the track.\n * @param previewUrl A URL to a 30 second preview (MP3 format) of the track.\n * @param trackNumber The number of the track. If an album has several discs, the track number\n * is the number on the specified disc.\n * @param type The object type: “track”.\n * @param isLocal Whether or not the track is from a local file.\n * @param popularity the popularity of this track. possibly null\n * @param restrictions Part of the response when Track Relinking is applied, the original track is not available in\n * the given market, and Spotify did not have any tracks to relink it with. The track response will still contain\n * metadata for the original track, and a restrictions object containing the reason why the track is not available:\n * \"restrictions\" : {\"reason\" : \"market\"}\n *\n * @property availableMarkets A list of the countries in which the track can be played.\n * @property externalIds External IDs for this track.\n */\n@Serializable\npublic data class SimpleTrack(\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    @SerialName(\"available_markets\") private val availableMarketsString: List<String> = listOf(),\n    @SerialName(\"external_ids\") private val externalIdsString: Map<String, String> = hashMapOf(),\n    override val href: String,\n    override val id: String,\n    override val uri: SpotifyUri,\n\n    val artists: List<SimpleArtist>,\n    @SerialName(\"disc_number\") val discNumber: Int,\n    @SerialName(\"duration_ms\") val durationMs: Int,\n    val explicit: Boolean,\n    @SerialName(\"is_playable\") val isPlayable: Boolean = true,\n    @SerialName(\"linked_from\") override val linkedTrack: LinkedTrack? = null,\n    val name: String,\n    @SerialName(\"preview_url\") val previewUrl: String? = null,\n    @SerialName(\"track_number\") val trackNumber: Int,\n    val type: String,\n    @SerialName(\"is_local\") val isLocal: Boolean? = null,\n    val popularity: Double? = null,\n    val restrictions: Restrictions? = null\n) : RelinkingAvailableResponse() {\n    val availableMarkets: List<Market> get() = availableMarketsString.map { Market.valueOf(it) }\n\n    val externalIds: List<ExternalId> get() = externalIdsString.map { ExternalId(it.key, it.value) }\n\n    val length: Int get() = durationMs\n\n    /**\n     * Converts this [SimpleTrack] into a full [Track] object with the given\n     * market\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public suspend fun toFullTrack(market: Market? = null): Track? = api.tracks.getTrack(id, market)\n\n    /**\n     * Converts this [SimpleTrack] into a full [Track] object with the given\n     * market\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public fun toFullTrackRestAction(market: Market? = null): SpotifyRestAction<Track?> =\n        SpotifyRestAction { toFullTrack(market) }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = artists + linkedTrack + this\n}\n\n/**\n * Represents a music track on Spotify\n *\n * @param album The album on which the track appears. The album object includes a link in\n * href to full information about the album.\n * @param artists The artists who performed the track. Each artist object includes a link in href\n * to more detailed information about the artist.\n * @param isPlayable Part of the response when Track Relinking is applied. If true , the track is playable in the\n * given market. Otherwise false.\n * @param discNumber The disc number (usually 1 unless the album consists of more than one disc).\n * @param durationMs The track length in milliseconds.\n * @property length The track length in milliseconds. Alias of [durationMs]\n * @param explicit Whether or not the track has explicit lyrics ( true = yes it does; false = no it does not OR unknown).\n * @param href A link to the Web API endpoint providing full details of the track.\n * @param id The Spotify ID for the track.\n * @param linkedTrack Part of the response when Track Relinking is applied and is only part of the response\n * if the track linking, in fact, exists. The requested track has been replaced with a different track. The track in\n * the [linkedTrack] object contains information about the originally requested track.\n * @param name The name of the track.\n * @param popularity The popularity of the track. The value will be between 0 and 100, with 100 being the most\n * popular. The popularity of a track is a value between 0 and 100, with 100 being the most popular. The popularity\n * is calculated by algorithm and is based, in the most part, on the total number of plays the track has had and how\n * recent those plays are. Generally speaking, songs that are being played a lot now will have a higher popularity\n * than songs that were played a lot in the past. Duplicate tracks (e.g. the same track from a single and an album)\n * are rated independently. Artist and album popularity is derived mathematically from track popularity. Note that\n * the popularity value may lag actual popularity by a few days: the value is not updated in real time.\n * @param previewUrl A link to a 30 second preview (MP3 format) of the track. Can be null\n * @param trackNumber The number of the track. If an album has several discs, the track number is the number on the specified disc.\n * @param type The object type: “track”.\n * @param isLocal Whether or not the track is from a local file.\n * @param restrictions Part of the response when Track Relinking is applied, the original track is not available in\n * the given market, and Spotify did not have any tracks to relink it with. The track response will still contain\n * metadata for the original track, and a restrictions object containing the reason why the track is not available:\n * \"restrictions\" : {\"reason\" : \"market\"}\n *\n * @property availableMarkets A list of the countries in which the track can be played, identified by their ISO 3166-1 alpha-2 code.\n * @property externalIds External IDs for this track.\n */\n@Serializable\npublic data class Track(\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    @SerialName(\"external_ids\") private val externalIdsString: Map<String, String> = hashMapOf(),\n    @SerialName(\"available_markets\") private val availableMarketsString: List<String> = listOf(),\n    override val href: String,\n    override val id: String,\n    override val uri: PlayableUri,\n\n    val album: SimpleAlbum,\n    val artists: List<SimpleArtist>,\n    @SerialName(\"is_playable\") val isPlayable: Boolean = true,\n    @SerialName(\"disc_number\") val discNumber: Int,\n    @SerialName(\"duration_ms\") val durationMs: Int,\n    val explicit: Boolean,\n    @SerialName(\"linked_from\") override val linkedTrack: LinkedTrack? = null,\n    val name: String,\n    val popularity: Double,\n    @SerialName(\"preview_url\") val previewUrl: String? = null,\n    @SerialName(\"track_number\") val trackNumber: Int,\n    override val type: String,\n    @SerialName(\"is_local\") val isLocal: Boolean? = null,\n    val restrictions: Restrictions? = null,\n\n    val episode: Boolean? = null,\n    val track: Boolean? = null\n) : RelinkingAvailableResponse(), Playable {\n    val availableMarkets: List<Market> get() = availableMarketsString.map { Market.valueOf(it) }\n\n    val externalIds: List<ExternalId> get() = externalIdsString.map { ExternalId(it.key, it.value) }\n\n    val length: Int get() = durationMs\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = artists + album + linkedTrack + this\n}\n\n/**\n * Represents a [relinked track](https://github.com/adamint/spotify-web-api-kotlin#track-relinking). This is playable in the\n * searched market. If null, the API result is playable in the market.\n *\n * @param href A link to the Web API endpoint providing full details of the track.\n * @param id The Spotify ID for the track.\n * @param type The object type: “track”.\n */\n@Serializable\npublic data class LinkedTrack(\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    override val uri: PlayableUri,\n\n    val type: String\n) : CoreObject() {\n\n    /**\n     * Retrieves the full [Track] object associated with this [LinkedTrack] with the given market\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public suspend fun toFullTrack(market: Market? = null): Track? = api.tracks.getTrack(id, market)\n\n    /**\n     * Converts this [SimpleTrack] into a full [Track] object with the given\n     * market\n     *\n     * @param market Provide this parameter if you want the list of returned items to be relevant to a particular country.\n     */\n    public fun toFullTrackRestAction(market: Market? = null): SpotifyRestAction<Track?> =\n        SpotifyRestAction { toFullTrack(market) }\n\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(this)\n}\n\n@Serializable\ninternal data class AudioFeaturesResponse(\n    @SerialName(\"audio_features\") val audioFeatures: List<AudioFeatures?>\n)\n\n/**\n * The Audio Analysis endpoint provides low-level audio analysis for all of the tracks\n * in the Spotify catalog. The Audio Analysis describes the track’s structure\n * and musical content, including rhythm, pitch, and timbre. All information is\n * precise to the audio sample. Many elements of analysis include confidence values,\n * a floating-point number ranging from 0.0 to 1.0. Confidence indicates the reliability\n * of its corresponding attribute. Elements carrying a small confidence value should\n * be considered speculative. There may not be sufficient data in the audio to\n * compute the attribute with high certainty.\n *\n *\n * @param bars The time intervals of the bars throughout the track. A bar (or measure) is a segment of time defined as\n * a given number of beats. Bar offsets also indicate downbeats, the first beat of the measure.\n * @param beats The time intervals of beats throughout the track. A beat is the basic time unit of a piece of music;\n * for example, each tick of a metronome. Beats are typically multiples of tatums.\n * @param meta Analysis meta information (limited use)\n * @param sections Sections are defined by large variations in rhythm or timbre, e.g. chorus, verse, bridge, guitar\n * solo, etc. Each section contains its own descriptions of tempo, key, mode, time_signature, and loudness.\n * @param segments Audio segments attempts to subdivide a song into many segments, with each segment containing\n * a roughly consitent sound throughout its duration.\n * @param tatums A tatum represents the lowest regular pulse train that a listener intuitively infers from the timing\n * of perceived musical events (segments).\n * @param track An analysis of the track as a whole. Undocumented on Spotify's side.\n */\n@Serializable\npublic data class AudioAnalysis(\n    val bars: List<TimeInterval>,\n    val beats: List<TimeInterval>,\n    val meta: AudioAnalysisMeta,\n    val sections: List<AudioSection>,\n    val segments: List<AudioSegment>,\n    val tatums: List<TimeInterval>,\n    val track: TrackAnalysis\n)\n\n/**\n * Information about the analysis run\n *\n * @param analyzerVersion Which version of the Spotify analyzer the analysis was run on\n * @param platform The OS the analysis was run on\n * @param detailedStatus Whether there was an error in the analysis or \"OK\"\n * @param statusCode 0 on success, any other integer on error\n * @param timestamp When this analysis was completed\n * @param analysisTime How long, in milliseconds, this analysis took to run\n * @param inputProcess The process used in the analysis\n */\n@Serializable\npublic data class AudioAnalysisMeta(\n    @SerialName(\"analyzer_version\") val analyzerVersion: String,\n    val platform: String,\n    @SerialName(\"detailed_status\") val detailedStatus: String,\n    @SerialName(\"status_code\") val statusCode: Int? = null,\n    val timestamp: Long,\n    @SerialName(\"analysis_time\") val analysisTime: Float,\n    @SerialName(\"input_process\") val inputProcess: String\n)\n\n/**\n * Sections are defined by large variations in rhythm or timbre, e.g. chorus, verse, bridge, guitar solo, etc.\n * Each section contains its own descriptions of tempo, key, mode, time_signature, and loudness.*\n *\n * @param start The starting point (in seconds) of the section.\n * @param duration The duration (in seconds) of the section.\n * @param confidence The confidence, from 0.0 to 1.0, of the reliability of the section’s “designation”.\n * @param loudness The overall loudness of the section in decibels (dB). Loudness values are useful\n * for comparing relative loudness of sections within tracks.\n * @param tempo The overall estimated tempo of the section in beats per minute (BPM). In musical terminology, tempo\n * is the speed or pace of a given piece and derives directly from the average beat duration.\n * @param tempoConfidence The confidence, from 0.0 to 1.0, of the reliability of the tempo. Some tracks contain tempo\n * changes or sounds which don’t contain tempo (like pure speech) which would correspond to a low value in this field.\n * @param key The estimated overall key of the section. The values in this field ranging from 0 to 11 mapping to\n * pitches using standard Pitch Class notation (E.g. 0 = C, 1 = C♯/D♭, 2 = D, and so on). If no key was detected,\n * the value is -1.\n * @param keyConfidence The confidence, from 0.0 to 1.0, of the reliability of the key.\n * Songs with many key changes may correspond to low values in this field.\n * @param mode Indicates the modality (major or minor) of a track, the type of scale from which its melodic content is\n * derived. This field will contain a 0 for “minor”, a 1 for “major”, or a -1 for no result. Note that the major key\n * (e.g. C major) could more likely be confused with the minor key at 3 semitones lower (e.g. A minor) as both\n * keys carry the same pitches.\n * @param modeConfidence The confidence, from 0.0 to 1.0, of the reliability of the mode.\n * @param timeSignature An estimated overall time signature of a track. The time signature (meter) is a notational\n * convention to specify how many beats are in each bar (or measure). The time signature ranges from 3 to 7\n * indicating time signatures of “3/4”, to “7/4”.\n * @param timeSignatureConfidence The confidence, from 0.0 to 1.0, of the reliability of the time_signature.\n * Sections with time signature changes may correspond to low values in this field.\n */\n@Serializable\npublic data class AudioSection(\n    val start: Float = 0f,\n    val duration: Float,\n    val confidence: Float,\n    val loudness: Float,\n    val tempo: Float? = null,\n    @SerialName(\"tempo_confidence\") val tempoConfidence: Float? = null,\n    val key: Int,\n    @SerialName(\"key_confidence\") val keyConfidence: Float? = null,\n    val mode: Int? = null,\n    @SerialName(\"mode_confidence\") val modeConfidence: Float? = null,\n    @SerialName(\"time_signature\") val timeSignature: Int,\n    @SerialName(\"time_signature_confidence\") val timeSignatureConfidence: Float\n)\n\n/**\n * Audio segments attempts to subdivide a song into many segments, with each segment containing\n * a roughly consistent sound throughout its duration.\n *\n * @param start The starting point (in seconds) of the segment.\n * @param duration The duration (in seconds) of the segment.\n * @param confidence The confidence, from 0.0 to 1.0, of the reliability of the segmentation. Segments of the song which\n * are difficult to logically segment (e.g: noise) may correspond to low values in this field.\n * @param loudnessStart The onset loudness of the segment in decibels (dB). Combined with loudness_max and\n * loudness_max_time, these components can be used to desctibe the “attack” of the segment.\n * @param loudnessMaxTime The segment-relative offset of the segment peak loudness in seconds. Combined with\n * loudness_start and loudness_max, these components can be used to desctibe the “attack” of the segment.\n * @param loudnessMax The peak loudness of the segment in decibels (dB). Combined with loudness_start and\n * loudness_max_time, these components can be used to desctibe the “attack” of the segment.\n * @param loudnessEnd The offset loudness of the segment in decibels (dB). This value should be equivalent to the\n * loudness_start of the following segment.\n * @param pitches A “chroma” vector representing the pitch content of the segment, corresponding to the 12 pitch classes\n * C, C#, D to B, with values ranging from 0 to 1 that describe the relative dominance of every pitch in the chromatic scale\n * @param timbre Timbre is the quality of a musical note or sound that distinguishes different types of musical\n * instruments, or voices. Timbre vectors are best used in comparison with each other.\n */\n@Serializable\npublic data class AudioSegment(\n    val start: Float? = null,\n    val duration: Float,\n    val confidence: Float? = null,\n    @SerialName(\"loudness_start\") val loudnessStart: Float,\n    @SerialName(\"loudness_max_time\") val loudnessMaxTime: Float? = null,\n    @SerialName(\"loudness_max\") val loudnessMax: Float,\n    @SerialName(\"loudness_end\") val loudnessEnd: Float? = null,\n    val pitches: List<Float>,\n    val timbre: List<Float>\n)\n\n/**\n * General information about the track as a whole\n */\n@Serializable\npublic data class TrackAnalysis(\n    @SerialName(\"num_samples\") val numSamples: Int,\n    val duration: Float,\n    @SerialName(\"sample_md5\") val sampleMd5: String? = null,\n    @SerialName(\"offset_seconds\") val offsetSeconds: Int? = null,\n    @SerialName(\"window_seconds\") val windowSeconds: Int? = null,\n    @SerialName(\"analysis_sample_rate\") val analysisSampleRate: Float,\n    @SerialName(\"analysis_channels\") val analysisChannels: Int,\n    @SerialName(\"end_of_fade_in\") val endOfFadeIn: Float,\n    @SerialName(\"start_of_fade_out\") val startOfFadeOut: Float,\n    val loudness: Float,\n    val tempo: Float,\n    @SerialName(\"tempo_confidence\") val tempoConfidence: Float,\n    @SerialName(\"time_signature\") val timeSignature: Int,\n    @SerialName(\"time_signature_confidence\") val timeSignatureConfidence: Float,\n    val key: Int,\n    @SerialName(\"key_confidence\") val keyConfidence: Float,\n    val mode: Int? = null,\n    @SerialName(\"mode_confidence\") val modeConfidence: Float,\n    val codestring: String,\n    @SerialName(\"code_version\") val codeVersion: Float,\n    val echoprintstring: String,\n    @SerialName(\"echoprint_version\") val echoprintVersion: Float,\n    val synchstring: String,\n    @SerialName(\"synch_version\") val synchVersion: Float,\n    val rhythmstring: String,\n    @SerialName(\"rhythm_version\") val rhythmVersion: Float\n)\n\n/**\n * General attributes of a [Track]\n *\n * @param acousticness A confidence measure from 0.0 to 1.0 of whether the track is acoustic.\n * 1.0 represents high confidence the track is acoustic.\n * @param analysisUrl An HTTP URL to access the full audio analysis of this track.\n * An access token is required to access this data.\n * @param danceability Danceability describes how suitable a track is for dancing based on a combination\n * of musical elements including tempo, rhythm stability, beat strength, and overall regularity. A value of\n * 0.0 is least danceable and 1.0 is most danceable.\n * @param durationMs The duration of the track in milliseconds.\n * @param energy Energy is a measure from 0.0 to 1.0 and represents a perceptual measure of intensity and\n * activity. Typically, energetic tracks feel fast, loud, and noisy. For example, death metal has high energy,\n * while a Bach prelude scores low on the scale. Perceptual features contributing to this attribute include\n * dynamic range, perceived loudness, timbre, onset rate, and general entropy.\n * @param id The Spotify ID for the track.\n * @param instrumentalness Predicts whether a track contains no vocals. “Ooh” and “aah” sounds are\n * treated as instrumental in this context. Rap or spoken word tracks are clearly “vocal”. The closer\n * the instrumentalness value is to 1.0, the greater likelihood the track contains no vocal content.\n * Values above 0.5 are intended to represent instrumental tracks, but confidence is higher as\n * the value approaches 1.0.\n * @param key The key the track is in. Integers map to pitches using standard Pitch Class notation.\n * E.g. 0 = C, 1 = C♯/D♭, 2 = D, and so on.\n * @param liveness Detects the presence of an audience in the recording. Higher liveness values represent\n * an increased probability that the track was performed live. A value above 0.8 provides strong likelihood\n * that the track is live.\n * @param loudness The overall loudness of a track in decibels (dB). Loudness values are averaged across\n * the entire track and are useful for comparing relative loudness of tracks. Loudness is the quality of a\n * sound that is the primary psychological correlate of physical strength (amplitude). Values typical range\n * between -60 and 0 db.\n * @param mode Mode indicates the modality (major or minor) of a track, the type of scale from which\n * its melodic content is derived. Major is represented by 1 and minor is 0.\n * @param speechiness Speechiness detects the presence of spoken words in a track. The more exclusively\n * speech-like the recording (e.g. talk show, audio book, poetry), the closer to 1.0 the attribute value.\n * Values above 0.66 describe tracks that are probably made entirely of spoken words. Values between 0.33\n * and 0.66 describe tracks that may contain both music and speech, either in sections or layered, including\n * such cases as rap music. Values below 0.33 most likely represent music and other non-speech-like tracks.\n * @param tempo The overall estimated tempo of a track in beats per minute (BPM). In musical terminology, tempo\n * is the speed or pace of a given piece and derives directly from the average beat duration.\n * @param timeSignature An estimated overall time signature of a track. The time signature (meter) is a\n * notational convention to specify how many beats are in each bar (or measure).\n * @param trackHref A link to the Web API endpoint providing full details of the track.\n * @param type The object type: “audio_features”\n * @param uri The Spotify URI for the track.\n * @param valence A measure from 0.0 to 1.0 describing the musical positiveness conveyed by a track.\n * Tracks with high valence sound more positive (e.g. happy, cheerful, euphoric), while tracks with low\n * valence sound more negative (e.g. sad, depressed, angry).\n */\n@Serializable\npublic data class AudioFeatures(\n    val acousticness: Float,\n    @SerialName(\"analysis_url\") val analysisUrl: String,\n    val danceability: Float,\n    @SerialName(\"duration_ms\") val durationMs: Int,\n    val energy: Float,\n    val id: String,\n    val instrumentalness: Float,\n    val key: Int,\n    val liveness: Float,\n    val loudness: Float,\n    val mode: Int,\n    val speechiness: Float,\n    val tempo: Float,\n    @SerialName(\"time_signature\") val timeSignature: Int,\n    @SerialName(\"track_href\") val trackHref: String,\n    val type: String,\n    val uri: PlayableUri,\n    val valence: Float\n)\n\n/**\n * This is a generic object used to represent various time intervals within Audio Analysis.\n *\n * @param start The starting point (in seconds) of the time interval.\n * @param duration The duration (in seconds) of the time interval.\n * @param confidence The confidence, from 0.0 to 1.0, of the reliability of the interval\n */\n@Serializable\npublic data class TimeInterval(val start: Float, val duration: Float, val confidence: Float)\n\n@Serializable\ninternal data class TrackList(val tracks: List<Track?>)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/Users.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models\n\nimport com.adamratzman.spotify.SpotifyScope\nimport kotlinx.serialization.KSerializer\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializable\nimport kotlinx.serialization.builtins.serializer\nimport kotlinx.serialization.descriptors.SerialDescriptor\nimport kotlinx.serialization.descriptors.buildClassSerialDescriptor\nimport kotlinx.serialization.descriptors.element\nimport kotlinx.serialization.encoding.*\n\n/**\n * Private information about a Spotify user. Each field may require a specific scope.\n *\n * @param country The country of the user, as set in the user’s account profile. An ISO 3166-1 alpha-2\n * country code. This field is only available when the current user has granted access to the [SpotifyScope.UserReadPrivate] scope.\n * @param displayName The name displayed on the user’s profile. null if not available.\n * @param email The user’s email address, as entered by the user when creating their account. Important! This email\n * address is unverified; there is no proof that it actually belongs to the user. This field is only\n * available when the current user has granted access to the [SpotifyScope.UserReadEmail] scope.\n * @param followers Information about the followers of the user.\n * @param href A link to the Web API endpoint for this user.\n * @param id The Spotify user ID for the user\n * @param images The user’s profile image.\n * @param product The user’s Spotify subscription level: “premium”, “free”, etc.\n * (The subscription level “open” can be considered the same as “free”.) This field is only available when the\n * current user has granted access to the [SpotifyScope.UserReadPrivate] scope.\n * @param type The object type: “user”\n */\n@Serializable\npublic data class SpotifyUserInformation(\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    override val uri: UserUri,\n\n    val country: String? = null,\n    @SerialName(\"display_name\") val displayName: String? = null,\n    val email: String? = null,\n    val followers: Followers,\n    val images: List<SpotifyImage>? = null,\n    val product: String? = null,\n    @SerialName(\"explicit_content\") val explicitContentSettings: ExplicitContentSettings? = null,\n    val type: String\n) : CoreObject() {\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(this)\n}\n\n/**\n * Public information about a Spotify user\n *\n * @param displayName The name displayed on the user’s profile. null if not available.\n * @param followers Information about the followers of this user.\n * @param href A link to the Web API endpoint for this user.\n * @param id The Spotify user ID for this user.\n * @param images The user’s profile image.\n * @param type The object type: “user”\n */\n@Serializable\npublic data class SpotifyPublicUser(\n    @SerialName(\"external_urls\") override val externalUrlsString: Map<String, String>,\n    override val href: String,\n    override val id: String,\n    override val uri: UserUri,\n\n    @SerialName(\"display_name\") val displayName: String? = null,\n    val followers: Followers = Followers(null, -1),\n    val images: List<SpotifyImage> = listOf(),\n    val type: String\n) : CoreObject() {\n    override fun getMembersThatNeedApiInstantiation(): List<NeedsApi?> = listOf(this)\n}\n\n/**\n * Information about a Spotify user's followers\n *\n * @param href Will always be null, per the Spotify documentation,\n * until the Web API is updated to support this.\n *\n * @param total Null or -1 if the user object does not contain followers, otherwise the amount of followers the user has\n */\n@Serializable(with = FollowersSerializer::class)\npublic data class Followers(\n    val href: String? = null,\n    @SerialName(\"total\") val total: Int? = null\n)\n\n// custom serializer to convert total (which now is a double from spotify's response) to int, because it should be an int\nprivate object FollowersSerializer : KSerializer<Followers> {\n    override val descriptor: SerialDescriptor = buildClassSerialDescriptor(\"Followers\") {\n        element<String?>(\"href\")\n        element<Int?>(\"total\")\n    }\n\n    override fun serialize(encoder: Encoder, value: Followers) {\n        encoder.encodeStructure(descriptor) {\n            encodeNullableSerializableElement(descriptor, 0, String.serializer(), value.href)\n            encodeNullableSerializableElement(descriptor, 1, Int.serializer(), value.total)\n        }\n    }\n\n    override fun deserialize(decoder: Decoder): Followers {\n        return decoder.decodeStructure(descriptor) {\n            var href: String? = null\n            var total: Int? = null\n\n            while (true) {\n                when (val index = decodeElementIndex(descriptor)) {\n                    0 -> href = decoder.decodeNullableSerializableValue(String.serializer())\n                    1 -> total = decoder.decodeNullableSerializableValue(Double.serializer())?.toInt()\n                    CompositeDecoder.DECODE_DONE -> break\n                    else -> error(\"Unexpected index: $index\")\n                }\n            }\n\n            Followers(href, total)\n        }\n    }\n}\n\n@Serializable\npublic data class ExplicitContentSettings(\n    @SerialName(\"filter_enabled\") val filterEnabled: Boolean,\n    @SerialName(\"filter_locked\") val filterLocked: Boolean\n)\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/models/serialization/SerializationUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.models.serialization\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.models.CursorBasedPagingObject\nimport com.adamratzman.spotify.models.NeedsApi\nimport com.adamratzman.spotify.models.NullablePagingObject\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.PagingObjectBase\nimport com.adamratzman.spotify.models.instantiateLateinitsIfPagingObjects\nimport kotlinx.serialization.KSerializer\nimport kotlinx.serialization.builtins.MapSerializer\nimport kotlinx.serialization.builtins.serializer\nimport kotlinx.serialization.json.Json\nimport kotlinx.serialization.json.JsonElement\nimport kotlinx.serialization.json.JsonObject\nimport kotlin.reflect.KClass\n\ninternal val nonstrictJson =\n    Json {\n        isLenient = true\n        ignoreUnknownKeys = true\n        allowSpecialFloatingPointValues = true\n        useArrayPolymorphism = true\n        coerceInputValues = true\n    }\n\n// Parse function that catches on parse exception\ninternal fun <T> String.parseJson(producer: String.() -> T): T =\n    try {\n        producer(this)\n    } catch (e: Exception) {\n        throw SpotifyException.ParseException(\n            \"Unable to parse $this (${e.message})\",\n            e\n        )\n    }\n\n// Generic object deserialization\ninternal fun <T : Any> String.toObject(serializer: KSerializer<T>, api: GenericSpotifyApi?, json: Json): T {\n    return parseJson {\n        val obj = json.decodeFromString(serializer, this)\n        obj.instantiateLateinitsIfSpotifyObject(api)\n        obj\n    }\n}\n\ninternal fun <T> String.toList(serializer: KSerializer<List<T>>, api: GenericSpotifyApi?, json: Json): List<T> {\n    return parseJson {\n        json.decodeFromString(serializer, this).onEach { obj -> obj?.instantiateLateinitsIfSpotifyObject(api) }\n    }\n}\n\ninternal fun Any.instantiateLateinitsIfSpotifyObject(api: GenericSpotifyApi?) {\n    if (api == null) return\n    if (this is NeedsApi) listOf(this).instantiateAllNeedsApiObjects(api)\n    this.instantiateLateinitsIfPagingObjects(api)\n}\n\n// Inner object deserialization\ninternal inline fun <reified T> String.toInnerObject(serializer: KSerializer<T>, innerName: String, json: Json): T {\n    val map = this.parseJson {\n        val t = (String.serializer() to serializer)\n        json.decodeFromString(MapSerializer(t.first, t.second), this)\n    }\n    return (map[innerName] ?: error(\"Inner object with name $innerName doesn't exist in $map\"))\n}\n\ninternal inline fun <reified T> String.toInnerArray(\n    serializer: KSerializer<List<T>>,\n    innerName: String,\n    json: Json\n): List<T> {\n    val map = this.parseJson {\n        val t = (String.serializer() to serializer)\n        json.decodeFromString(MapSerializer(t.first, t.second), this)\n    }\n    return (map[innerName] ?: error(\"Inner object with name $innerName doesn't exist in $map\")).toList()\n}\n\n// Paging Object deserialization\ninternal fun <T : Any> String.toCursorBasedPagingObject(\n    tClazz: KClass<T>,\n    tSerializer: KSerializer<T>,\n    innerObjectName: String? = null,\n    api: GenericSpotifyApi,\n    json: Json,\n    arbitraryInnerNameAllowed: Boolean = false,\n    skipInnerNameFirstIfPossible: Boolean = true\n): CursorBasedPagingObject<T> {\n    if (innerObjectName != null || (arbitraryInnerNameAllowed && !skipInnerNameFirstIfPossible)) {\n        val jsonObjectRoot = (json.parseToJsonElement(this) as JsonObject)\n        val jsonElement =\n            innerObjectName?.let { jsonObjectRoot[it] } ?: jsonObjectRoot.keys.firstOrNull()?.let { jsonObjectRoot[it] }\n                ?: throw SpotifyException.ParseException(\"Json element was null for class $tClazz (json $this)\")\n\n        val objectString = jsonElement.toString()\n        val pagingObject = objectString.parseJson {\n            json.decodeFromString(CursorBasedPagingObject.serializer(tSerializer), this)\n        }\n        pagingObject.instantiateLateinitsForPagingObject(tClazz, api)\n\n        return pagingObject\n    }\n    try {\n        val pagingObject = parseJson { json.decodeFromString(CursorBasedPagingObject.serializer(tSerializer), this) }\n        pagingObject.instantiateLateinitsForPagingObject(tClazz, api)\n\n        return pagingObject\n    } catch (jde: SpotifyException.ParseException) {\n        if (!arbitraryInnerNameAllowed && jde.message?.contains(\"unable to parse\", true) == true) {\n            return toCursorBasedPagingObject(\n                tClazz,\n                tSerializer,\n                innerObjectName,\n                api,\n                json,\n                arbitraryInnerNameAllowed = true,\n                skipInnerNameFirstIfPossible = false\n            )\n        } else {\n            throw jde\n        }\n    }\n}\n\ninternal fun <T : Any> String.toNonNullablePagingObject(\n    tClazz: KClass<T>,\n    tSerializer: KSerializer<T>,\n    innerObjectName: String? = null,\n    api: GenericSpotifyApi,\n    json: Json,\n    arbitraryInnerNameAllowed: Boolean = false,\n    skipInnerNameFirstIfPossible: Boolean = true\n): NullablePagingObject<T> {\n    if (innerObjectName != null || (arbitraryInnerNameAllowed && !skipInnerNameFirstIfPossible)) {\n        val jsonObjectRoot = (json.parseToJsonElement(this) as JsonObject)\n        val jsonElement =\n            innerObjectName?.let { jsonObjectRoot[it] } ?: jsonObjectRoot.keys.firstOrNull()?.let { jsonObjectRoot[it] }\n                ?: throw SpotifyException.ParseException(\"Json element was null for class $tClazz (json $this)\")\n\n        val objectString = jsonElement.toString()\n        val pagingObject = objectString.parseJson {\n            json.decodeFromString(NullablePagingObject.serializer(tSerializer), this)\n        }\n        pagingObject.instantiateLateinitsForPagingObject(tClazz, api)\n\n        return pagingObject\n    }\n\n    try {\n        val pagingObject = this.parseJson { json.decodeFromString(NullablePagingObject.serializer(tSerializer), this) }\n        pagingObject.instantiateLateinitsForPagingObject(tClazz, api)\n        return pagingObject\n    } catch (jde: SpotifyException.ParseException) {\n        if (arbitraryInnerNameAllowed && jde.message?.contains(\"unable to parse\", true) == true) {\n            return toNonNullablePagingObject(\n                tClazz,\n                tSerializer,\n                innerObjectName,\n                api,\n                json,\n                arbitraryInnerNameAllowed = true,\n                skipInnerNameFirstIfPossible = false\n            )\n        } else {\n            throw jde\n        }\n    }\n}\n\ninternal inline fun <reified T : Any> String.toNonNullablePagingObject(\n    tSerializer: KSerializer<T>,\n    innerObjectName: String? = null,\n    api: GenericSpotifyApi,\n    json: Json,\n    arbitraryInnerNameAllowed: Boolean = false,\n    skipInnerNameFirstIfPossible: Boolean = true\n): PagingObject<T> = toNullablePagingObject(\n    tSerializer,\n    innerObjectName,\n    api,\n    json,\n    arbitraryInnerNameAllowed,\n    skipInnerNameFirstIfPossible\n).toPagingObject()\n\ninternal inline fun <reified T : Any> String.toNullablePagingObject(\n    tSerializer: KSerializer<T>,\n    innerObjectName: String? = null,\n    api: GenericSpotifyApi,\n    json: Json,\n    arbitraryInnerNameAllowed: Boolean = false,\n    skipInnerNameFirstIfPossible: Boolean = true\n): NullablePagingObject<T> = toNonNullablePagingObject(\n    T::class,\n    tSerializer,\n    innerObjectName,\n    api,\n    json,\n    arbitraryInnerNameAllowed,\n    skipInnerNameFirstIfPossible\n)\n\n// Kotlin object -> JSON string transformations\ninternal fun Map<String, JsonElement>.mapToJsonString() = JsonObject(this).toString()\n\ninternal fun List<NeedsApi?>.instantiateAllNeedsApiObjects(api: GenericSpotifyApi) {\n    this.instantiateLateinitsIfPagingObjects(api)\n    asSequence().filterNotNull().map { member -> member.getMembersThatNeedApiInstantiation() }.flatten()\n        .distinct()\n        .filterNotNull().toList()\n        .forEach { member ->\n            member.api = api\n            member.instantiateLateinitsIfPagingObjects(api)\n        }\n}\n\ninternal fun <T : Any, Z : PagingObjectBase<T, Z>> PagingObjectBase<T, Z>.instantiateLateinitsForPagingObject(\n    tClazz: KClass<T>?,\n    api: GenericSpotifyApi\n) {\n    getMembersThatNeedApiInstantiation().instantiateAllNeedsApiObjects(api)\n    this.api = api\n    this.itemClass = tClazz\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/ConcurrentHashMap.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\npublic expect class ConcurrentHashMap<K, V>() {\n    public operator fun get(key: K): V?\n    public fun put(key: K, value: V): V?\n    public fun remove(key: K): V?\n    public fun clear()\n\n    public val size: Int\n    public val entries: MutableSet<MutableMap.MutableEntry<K, V>>\n}\n\npublic expect fun <K, V> ConcurrentHashMap<K, V>.asList(): List<Pair<K, V>>\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/Encoding.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport com.soywiz.krypto.encoding.Base64\nimport io.ktor.utils.io.core.toByteArray\n\ninternal fun String.base64ByteEncode() = Base64.encode(toByteArray())\n\npublic fun String.urlEncodeBase64String(): String {\n    var result = this\n    while (result.endsWith(\"=\")) result = result.removeSuffix(\"=\")\n\n    return result.replace(\"/\", \"_\").replace(\"+\", \"-\")\n}\n\ninternal expect fun String.encodeUrl(): String\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/ExternalUrls.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport com.adamratzman.spotify.models.ExternalUrl\nimport kotlinx.serialization.Serializable\n\n/**\n * Represents the external urls associated with this Spotify asset.\n *\n * @param spotify The associated Spotify link for this asset, if one exists.\n * @param otherExternalUrls Other external urls, not including [spotify]\n */\n@Serializable\npublic data class ExternalUrls(\n    val spotify: String? = null,\n    val otherExternalUrls: List<ExternalUrl>,\n    private val allExternalUrls: List<ExternalUrl>\n) : List<ExternalUrl> {\n    override val size: Int = allExternalUrls.size\n    override fun contains(element: ExternalUrl): Boolean = allExternalUrls.contains(element)\n    override fun containsAll(elements: Collection<ExternalUrl>): Boolean = allExternalUrls.containsAll(elements)\n    override fun get(index: Int): ExternalUrl = allExternalUrls.get(index)\n    override fun indexOf(element: ExternalUrl): Int = allExternalUrls.indexOf(element)\n    override fun isEmpty(): Boolean = allExternalUrls.isEmpty()\n    override fun iterator(): Iterator<ExternalUrl> = allExternalUrls.iterator()\n    override fun lastIndexOf(element: ExternalUrl): Int = allExternalUrls.lastIndexOf(element)\n    override fun listIterator(): ListIterator<ExternalUrl> = allExternalUrls.listIterator()\n    override fun listIterator(index: Int): ListIterator<ExternalUrl> = allExternalUrls.listIterator(index)\n    override fun subList(fromIndex: Int, toIndex: Int): List<ExternalUrl> = allExternalUrls.subList(fromIndex, toIndex)\n}\n\npublic fun getExternalUrls(externalUrlsString: Map<String, String>): ExternalUrls {\n    val externalUrls = externalUrlsString.map { ExternalUrl(it.key, it.value) }\n\n    return ExternalUrls(\n        externalUrlsString[\"spotify\"],\n        externalUrls.filter { it.name != \"spotify\" },\n        externalUrls\n    )\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/IO.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport com.soywiz.korim.bitmap.Bitmap\nimport com.soywiz.korim.format.jpg.JPEG\nimport com.soywiz.korio.file.VfsFile\nimport com.soywiz.korio.file.std.UrlVfs\nimport com.soywiz.korio.file.std.localVfs\nimport com.soywiz.krypto.encoding.Base64\n\n/**\n * Represents an image. Please use convertXToBufferedImage and convertBufferedImageToX methods to read and write [BufferedImage]\n */\npublic typealias BufferedImage = Bitmap\n\npublic fun convertBufferedImageToBase64JpegString(image: BufferedImage): String {\n    return Base64.encode(JPEG.encode(image))\n}\n\npublic suspend fun convertUrlPathToBufferedImage(url: String): BufferedImage {\n    return JPEG.decode(UrlVfs(url))\n}\n\npublic suspend fun convertLocalImagePathToBufferedImage(path: String): BufferedImage {\n    return JPEG.decode(localVfs(path))\n}\n\npublic suspend fun convertFileToBufferedImage(file: VfsFile): BufferedImage = JPEG.decode(file.readBytes())\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/Language.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport kotlinx.serialization.Serializable\n\n/**\n * [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1)\n * language code.\n *\n *\n *\n * Enum names of this enum themselves are represented by\n * [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) code\n * (2-letter lower-case alphabets).\n *\n *\n * <pre style=\"background-color: #EEEEEE; margin-left: 2em; margin-right: 2em; border: 1px solid black; padding: 0.5em;\">\n * <span style=\"color: darkgreen;\">// List all the language codes.</span>\n * for (LanguageCode code : LanguageCode.values())\n * {\n * <span style=\"color: darkgreen;\">// For examp LE, \"[ar] Arabic\" is printed.</span>\n * System.out.format(<span style=\"color: darkred;\">\"[%s] %s\\n\"</spa N>, co DE, code.[.getName]);\n * }\n *\n * <span style=\"color: darkgreen;\">// Get a LanguageCode instance by ISO 639-1 code.</span>\n * LanguageCode code = LanguageCode.[getByCode][.getByCode](<span style=\"color: darkred;\">\"fr\"</span>);\n *\n * <span style=\"color: darkgreen;\">// Convert to a Locale instance.</span>\n * Locale locale = code.[.toLocale];\n *\n * <span style=\"color: darkgreen;\">// Get a LanguageCode by a Locale instance.</span>\n * code = LanguageCode.[getByLocale][.getByLocale](locale);\n *\n * <span style=\"color: darkgreen;\">// Get a list by a regular expression for names.\n * //\n * // The list will contain:\n * //\n * //     LanguageCode.an : Aragonese\n * //     LanguageCode.ja : Japanese\n * //     LanguageCode.jv : Javanese\n * //     LanguageCode.su : Sundanese\n * //     LanguageCode.zh : Chinese\n * //</span>\n * List&lt;LanguageCode&gt; list = LanguageCode.[findByName][.findByName](<span style=\"color: darkred;\">\".*nese\"</span>);\n</pre> *\n *\n * @author Takahiko Kawasaki\n */\n@Serializable\npublic enum class Language {\n    /**\n     * [Afar](http://en.wikipedia.org/wiki/Afar_language)\n     * ([aar][LanguageAlpha3Code.aar]).\n     */\n    AA,\n\n    /**\n     * [Abkhaz](http://en.wikipedia.org/wiki/Abkhaz_language)\n     * ([abk][LanguageAlpha3Code.abk]).\n     */\n    AB,\n\n    /**\n     * [Avestan](http://en.wikipedia.org/wiki/Avestan_language)\n     * ([ave][LanguageAlpha3Code.ave]).\n     */\n    AE,\n\n    /**\n     * [Afrikaans](http://en.wikipedia.org/wiki/Afrikaans_language)\n     * ([afr][LanguageAlpha3Code.afr]).\n     */\n    AF,\n\n    /**\n     * [Akan](http://en.wikipedia.org/wiki/Akan_language)\n     * ([aka][LanguageAlpha3Code.aka]).\n     */\n    AK,\n\n    /**\n     * [Amharic](http://en.wikipedia.org/wiki/Amharic_language)\n     * ([amh][LanguageAlpha3Code.amh]).\n     */\n    AM,\n\n    /**\n     * [Aragonese](http://en.wikipedia.org/wiki/Aragonese_language)\n     * ([arg][LanguageAlpha3Code.arg]).\n     */\n    AN,\n\n    /**\n     * [Arabic](http://en.wikipedia.org/wiki/Arabic_language)\n     * ([ara][LanguageAlpha3Code.ara]).\n     */\n    AR,\n\n    /**\n     * [Assamese](http://en.wikipedia.org/wiki/Assamese_language)\n     * ([asm][LanguageAlpha3Code.asm]).\n     */\n    AS,\n\n    /**\n     * [Avaric](http://en.wikipedia.org/wiki/Avar_language)\n     * ([ava][LanguageAlpha3Code.ava]).\n     */\n    AV,\n\n    /**\n     * [Aymara](http://en.wikipedia.org/wiki/Aymara_language)\n     * ([aym][LanguageAlpha3Code.aym]).\n     */\n    AY,\n\n    /**\n     * [Azerbaijani](http://en.wikipedia.org/wiki/Azerbaijani_language)\n     * ([aze][LanguageAlpha3Code.aze]).\n     */\n    AZ,\n\n    /**\n     * [Bashkir](http://en.wikipedia.org/wiki/Bashkir_language)\n     * ([bak][LanguageAlpha3Code.bak]).\n     */\n    BA,\n\n    /**\n     * [Belarusian](http://en.wikipedia.org/wiki/Belarusian_language)\n     * ([bel][LanguageAlpha3Code.bel]).\n     */\n    BE,\n\n    /**\n     * [Bulgarian](http://en.wikipedia.org/wiki/Bulgarian_language)\n     * ([bul][LanguageAlpha3Code.bul]).\n     */\n    BG,\n\n    /**\n     * [Bihari](http://en.wikipedia.org/wiki/Bihari_languages)\n     * ([bih][LanguageAlpha3Code.bih]).\n     */\n    BH,\n\n    /**\n     * [Bislama](http://en.wikipedia.org/wiki/Bislama_language)\n     * ([bis][LanguageAlpha3Code.bis]).\n     */\n    BI,\n\n    /**\n     * [Bambara](http://en.wikipedia.org/wiki/Bambara_language)\n     * ([bam][LanguageAlpha3Code.bam]).\n     */\n    BM,\n\n    /**\n     * [Bengali](http://en.wikipedia.org/wiki/Bengali_language)\n     * ([ben][LanguageAlpha3Code.ben]).\n     */\n    BN,\n\n    /**\n     * [Tibetan](http://en.wikipedia.org/wiki/Standard_Tibetan)\n     * ([bod][LanguageAlpha3Code.bo D], [tib][LanguageAlpha3Code.tib]).\n     */\n    BO,\n\n    /**\n     * [Breton](http://en.wikipedia.org/wiki/Breton_language)\n     * ([bre][LanguageAlpha3Code.bre]).\n     */\n    BR,\n\n    /**\n     * [Bosnian](http://en.wikipedia.org/wiki/Bosnian_language)\n     * ([bos][LanguageAlpha3Code.bos]).\n     */\n    BS,\n\n    /**\n     * [Catalan](http://en.wikipedia.org/wiki/Catalan_language)\n     * ([cat][LanguageAlpha3Code.cat]).\n     */\n    CA,\n\n    /**\n     * [Chechen](http://en.wikipedia.org/wiki/Chechen_language)\n     * ([che][LanguageAlpha3Code.che]).\n     */\n    CE,\n\n    /**\n     * [Chamorro](http://en.wikipedia.org/wiki/Chamorro_language)\n     * ([cha][LanguageAlpha3Code.cha]).\n     */\n    CH,\n\n    /**\n     * [Corsican](http://en.wikipedia.org/wiki/Corsican_language)\n     * ([cos][LanguageAlpha3Code.cos]).\n     */\n    CO,\n\n    /**\n     * [Cree](http://en.wikipedia.org/wiki/Cree_language)\n     * ([cre][LanguageAlpha3Code.cre]).\n     */\n    CR,\n\n    /**\n     * [Czech](http://en.wikipedia.org/wiki/Czech_language)\n     * ([ces][LanguageAlpha3Code.ce S], [cze][LanguageAlpha3Code.cze]).\n     */\n    CS,\n\n    /**\n     * [Church Slavonic](http://en.wikipedia.org/wiki/Old_Church_Slavonic)\n     * ([chu][LanguageAlpha3Code.chu]).\n     */\n    CU,\n\n    /**\n     * [Chuvash](http://en.wikipedia.org/wiki/Chuvash_language)\n     * ([chv][LanguageAlpha3Code.chv]).\n     */\n    CV,\n\n    /**\n     * [Welsh](http://en.wikipedia.org/wiki/Welsh_language)\n     * ([cym][LanguageAlpha3Code.cy M], [wel][LanguageAlpha3Code.wel]).\n     */\n    CY,\n\n    /**\n     * [Danish](http://en.wikipedia.org/wiki/Danish_language)\n     * ([dan][LanguageAlpha3Code.dan]).\n     */\n    DA,\n\n    /**\n     * [German](http://en.wikipedia.org/wiki/German_language)\n     * ([deu][LanguageAlpha3Code.de U], [ger][LanguageAlpha3Code.ger]).\n     */\n    DE,\n\n    /**\n     * [Dhivehi](http://en.wikipedia.org/wiki/Dhivehi_language)\n     * ([div][LanguageAlpha3Code.div]).\n     */\n    DV,\n\n    /**\n     * [Dzongkha](http://en.wikipedia.org/wiki/Dzongkha_language)\n     * ([dzo][LanguageAlpha3Code.dzo]).\n     */\n    DZ,\n\n    /**\n     * [Ewe](http://en.wikipedia.org/wiki/Ewe_language)\n     * ([ewe][LanguageAlpha3Code.ewe]).\n     */\n    EE,\n\n    /**\n     * [Greek](http://en.wikipedia.org/wiki/Greek_language)\n     * ([ell][LanguageAlpha3Code.el L], [gre][LanguageAlpha3Code.gre]).\n     */\n    EL,\n\n    /**\n     * [English](http://en.wikipedia.org/wiki/English_language)\n     * ([eng][LanguageAlpha3Code.eng]).\n     */\n    EN,\n\n    /**\n     * [Esperanto](http://en.wikipedia.org/wiki/Esperanto)\n     * ([epo][LanguageAlpha3Code.epo]).\n     */\n    EO,\n\n    /**\n     * [Spanish](http://en.wikipedia.org/wiki/Spanish_language)\n     * ([spa][LanguageAlpha3Code.spa]).\n     */\n    ES,\n\n    /**\n     * [Estonian](http://en.wikipedia.org/wiki/Estonian_language)\n     * ([est][LanguageAlpha3Code.est]).\n     */\n    ET,\n\n    /**\n     * [Basque](http://en.wikipedia.org/wiki/Basque_language)\n     * ([eus][LanguageAlpha3Code.eu S], [baq][LanguageAlpha3Code.baq]).\n     */\n    EU,\n\n    /**\n     * [Persian](http://en.wikipedia.org/wiki/Persian_language)\n     * ([fas][LanguageAlpha3Code.fa S], [per][LanguageAlpha3Code.per]).\n     */\n    FA,\n\n    /**\n     * [Fula](http://en.wikipedia.org/wiki/Fula_language)\n     * ([ful][LanguageAlpha3Code.ful]).\n     */\n    FF,\n\n    /**\n     * [Finnish](http://en.wikipedia.org/wiki/Finnish_language)\n     * ([fin][LanguageAlpha3Code.fin]).\n     */\n    FI,\n\n    /**\n     * [Fijian](http://en.wikipedia.org/wiki/Fijian_language)\n     * ([fij][LanguageAlpha3Code.fij]).\n     */\n    FJ,\n\n    /**\n     * [Faroese](http://en.wikipedia.org/wiki/Faroese_language)\n     * ([fao][LanguageAlpha3Code.fao]).\n     */\n    FO,\n\n    /**\n     * [French](http://en.wikipedia.org/wiki/French_language)\n     * ([fra][LanguageAlpha3Code.fr A], [fre][LanguageAlpha3Code.fre]).\n     */\n    FR,\n\n    /**\n     * [West Frisian](http://en.wikipedia.org/wiki/West_Frisian_language)\n     * ([fry][LanguageAlpha3Code.fry]).\n     */\n    FY,\n\n    /**\n     * [Irish](http://en.wikipedia.org/wiki/Irish_language)\n     * ([gle][LanguageAlpha3Code.gle]).\n     */\n    GA,\n\n    /**\n     * [Scottish Gaelic](http://en.wikipedia.org/wiki/Scottish_Gaelic_language)\n     * ([gla][LanguageAlpha3Code.gla]).\n     */\n    GD,\n\n    /**\n     * [Galician](http://en.wikipedia.org/wiki/Galician_language)\n     * ([glg][LanguageAlpha3Code.glg]).\n     */\n    GL,\n\n    /**\n     * [Guaran](http://en.wikipedia.org/wiki/Guaran%C3%AD_language)\n     * ([grn][LanguageAlpha3Code.grn]).\n     */\n    GN,\n\n    /**\n     * [Gujarati](http://en.wikipedia.org/wiki/Gujarati_language)\n     * ([guj][LanguageAlpha3Code.guj]).\n     */\n    GU,\n\n    /**\n     * [Manx](http://en.wikipedia.org/wiki/Manx_language)\n     * ([glv][LanguageAlpha3Code.glv]).\n     */\n    GV,\n\n    /**\n     * [Hausa](http://en.wikipedia.org/wiki/Hausa_language)\n     * ([hau][LanguageAlpha3Code.hau]).\n     */\n    HA,\n\n    /**\n     * [Hebrew](http://en.wikipedia.org/wiki/Hebrew_language)\n     * ([heb][LanguageAlpha3Code.heb]).\n     */\n    HE,\n\n    /**\n     * [Hindi](http://en.wikipedia.org/wiki/Hindi)\n     * ([hin][LanguageAlpha3Code.hin]).\n     */\n    HI,\n\n    /**\n     * [Hiri Motu](http://en.wikipedia.org/wiki/Hiri_Motu_language)\n     * ([hmo][LanguageAlpha3Code.hmo]).\n     */\n    HO,\n\n    /**\n     * [Croatian](http://en.wikipedia.org/wiki/Croatian_language)\n     * ([hrv][LanguageAlpha3Code.hrv]).\n     */\n    HR,\n\n    /**\n     * [Haitian](http://en.wikipedia.org/wiki/Haitian_Creole_language)\n     * ([hat][LanguageAlpha3Code.hat]).\n     */\n    HT,\n\n    /**\n     * [Hungarian](http://en.wikipedia.org/wiki/Hungarian_language)\n     * ([hun][LanguageAlpha3Code.hun]).\n     */\n    HU,\n\n    /**\n     * [Armenian](http://en.wikipedia.org/wiki/Armenian_language)\n     * ([hye][LanguageAlpha3Code.hy E], [arm][LanguageAlpha3Code.arm]).\n     */\n    HY,\n\n    /**\n     * [Herero](http://en.wikipedia.org/wiki/Herero_language)\n     * ([her][LanguageAlpha3Code.her]).\n     */\n    HZ,\n\n    /**\n     * [Interlingua](http://en.wikipedia.org/wiki/Interlingua)\n     * ([ina][LanguageAlpha3Code.ina]).\n     */\n    IA,\n\n    /**\n     * [Indonesian](http://en.wikipedia.org/wiki/Indonesian_language)\n     * ([ind][LanguageAlpha3Code.ind]).\n     */\n    ID,\n\n    /**\n     * [Interlingue](http://en.wikipedia.org/wiki/Interlingue_language)\n     * ([ile][LanguageAlpha3Code.ile]).\n     */\n    IE,\n\n    /**\n     * [Igbo](http://en.wikipedia.org/wiki/Igbo_language)\n     * ([ibo][LanguageAlpha3Code.ibo]).\n     */\n    IG,\n\n    /**\n     * [Nuosu](http://en.wikipedia.org/wiki/Nuosu_language)\n     * ([iii][LanguageAlpha3Code.iii]).\n     */\n    II,\n\n    /**\n     * [Inupiaq](http://en.wikipedia.org/wiki/Inupiaq_language)\n     * ([ipk][LanguageAlpha3Code.ipk]).\n     */\n    IK,\n\n    /**\n     * [Ido](http://en.wikipedia.org/wiki/Ido)\n     * ([ido][LanguageAlpha3Code.ido]).\n     */\n    IO,\n\n    /**\n     * [Icelandic](http://en.wikipedia.org/wiki/Icelandic_language)\n     * ([isl][LanguageAlpha3Code.is L], [ice][LanguageAlpha3Code.ice]).\n     */\n    IS,\n\n    /**\n     * [Italian](http://en.wikipedia.org/wiki/Italian_language)\n     * ([ita][LanguageAlpha3Code.ita]).\n     */\n    IT,\n\n    /**\n     * [Inuktitut](http://en.wikipedia.org/wiki/Inuktitut)\n     * ([iku][LanguageAlpha3Code.iku]).\n     */\n    IU,\n\n    /**\n     * [Japanese](http://en.wikipedia.org/wiki/Japanese_language)\n     * ([jpn][LanguageAlpha3Code.jpn]).\n     */\n    JA,\n\n    /**\n     * [Javanese](http://en.wikipedia.org/wiki/Javanese_language)\n     * ([jav][LanguageAlpha3Code.jav]).\n     */\n    JV,\n\n    /**\n     * [Georgian](http://en.wikipedia.org/wiki/Georgian_language)\n     * ([kat][LanguageAlpha3Code.ka T], [geo][LanguageAlpha3Code.geo]).\n     */\n    KA,\n\n    /**\n     * [Kongo](http://en.wikipedia.org/wiki/Kongo_language)\n     * ([kon][LanguageAlpha3Code.kon]).\n     */\n    KG,\n\n    /**\n     * [Kikuyu](http://en.wikipedia.org/wiki/Gikuyu_language)\n     * ([kik][LanguageAlpha3Code.kik]).\n     */\n    KI,\n\n    /**\n     * [Kwanyama](http://en.wikipedia.org/wiki/Kwanyama)\n     * ([kua][LanguageAlpha3Code.kua]).\n     */\n    KJ,\n\n    /**\n     * [Kazakh](http://en.wikipedia.org/wiki/Kazakh_language)\n     * ([kaz][LanguageAlpha3Code.kaz]).\n     */\n    KK,\n\n    /**\n     * [Kalaallisut](http://en.wikipedia.org/wiki/Kalaallisut_language)\n     * ([kal][LanguageAlpha3Code.kal]).\n     */\n    KL,\n\n    /**\n     * [Khmer](http://en.wikipedia.org/wiki/Khmer_language)\n     * ([khm][LanguageAlpha3Code.khm]).\n     */\n    KM,\n\n    /**\n     * [Kannada](http://en.wikipedia.org/wiki/Kannada_language)\n     * ([kan][LanguageAlpha3Code.kan]).\n     */\n    KN,\n\n    /**\n     * [Korean](http://en.wikipedia.org/wiki/Korean_language)\n     * ([kor][LanguageAlpha3Code.kor]).\n     */\n    KO,\n\n    /**\n     * [Kanuri](http://en.wikipedia.org/wiki/Kanuri_language)\n     * ([kau][LanguageAlpha3Code.kau]).\n     */\n    KR,\n\n    /**\n     * [Kashmiri](http://en.wikipedia.org/wiki/Kashmiri_language)\n     * ([kas][LanguageAlpha3Code.kas]).\n     */\n    KS,\n\n    /**\n     * [Kurdish](http://en.wikipedia.org/wiki/Kurdish_language)\n     * ([kur][LanguageAlpha3Code.kur]).\n     */\n    KU,\n\n    /**\n     * [Komi](http://en.wikipedia.org/wiki/Komi_language)\n     * ([kom][LanguageAlpha3Code.kom]).\n     */\n    KV,\n\n    /**\n     * [Cornish](http://en.wikipedia.org/wiki/Cornish_language)\n     * ([cor][LanguageAlpha3Code.cor]).\n     */\n    KW,\n\n    /**\n     * [Kyrgyz](http://en.wikipedia.org/wiki/Kyrgyz_language)\n     * ([kir][LanguageAlpha3Code.kir]).\n     */\n    KY,\n\n    /**\n     * [Latin](http://en.wikipedia.org/wiki/Latin)\n     * ([lat][LanguageAlpha3Code.lat]).\n     */\n    LA,\n\n    /**\n     * [Luxembourgish](http://en.wikipedia.org/wiki/Luxembourgish_language)\n     * ([ltz][LanguageAlpha3Code.ltz]).\n     */\n    LB,\n\n    /**\n     * [Ganda](http://en.wikipedia.org/wiki/Luganda)\n     * ([lug][LanguageAlpha3Code.lug]).\n     */\n    LG,\n\n    /**\n     * [Limburgish](http://en.wikipedia.org/wiki/Limburgish_language)\n     * ([lim][LanguageAlpha3Code.lim]).\n     */\n    LI,\n\n    /**\n     * [Lingala](http://en.wikipedia.org/wiki/Lingala_language)\n     * ([lin][LanguageAlpha3Code.lin]).\n     */\n    LN,\n\n    /**\n     * [Lao](http://en.wikipedia.org/wiki/Lao_language)\n     * ([lao][LanguageAlpha3Code.lao]).\n     */\n    LO,\n\n    /**\n     * [Lithuanian](http://en.wikipedia.org/wiki/Lithuanian_language)\n     * ([lit][LanguageAlpha3Code.lit]).\n     */\n    LT,\n\n    /**\n     * [Luba-Katanga](http://en.wikipedia.org/wiki/Tshiluba_language)\n     * ([lub][LanguageAlpha3Code.lub]).\n     */\n    LU,\n\n    /**\n     * [Latvian](http://en.wikipedia.org/wiki/Latvian_language)\n     * ([lav][LanguageAlpha3Code.lav]).\n     */\n    LV,\n\n    /**\n     * [Malagasy](http://en.wikipedia.org/wiki/Malagasy_language)\n     * ([mlg][LanguageAlpha3Code.mlg]).\n     */\n    MG,\n\n    /**\n     * [Marshallese](http://en.wikipedia.org/wiki/Marshallese_language)\n     * ([mah][LanguageAlpha3Code.mah]).\n     */\n    MH,\n\n    /**\n     * [M&#257;ori](http://en.wikipedia.org/wiki/M%C4%81ori_language)\n     * ([mir][LanguageAlpha3Code.mr I], [mao][LanguageAlpha3Code.mao]).\n     */\n    MI,\n\n    /**\n     * [Macedonian](http://en.wikipedia.org/wiki/Macedonian_language)\n     * ([mkd][LanguageAlpha3Code.mk D], [mac][LanguageAlpha3Code.mac])).\n     */\n    MK,\n\n    /**\n     * [Malayalam](http://en.wikipedia.org/wiki/Malayalam_language)\n     * ([mal][LanguageAlpha3Code.mal]).\n     */\n    ML,\n\n    /**\n     * [Mongolian](http://en.wikipedia.org/wiki/Mongolian_language)\n     * ([mon][LanguageAlpha3Code.mon]).\n     */\n    MN,\n\n    /**\n     * [Marathi](http://en.wikipedia.org/wiki/Marathi_language)\n     * ([mar][LanguageAlpha3Code.mar]).\n     */\n    MR,\n\n    /**\n     * [Malay](http://en.wikipedia.org/wiki/Malay_language)\n     * ([msa][LanguageAlpha3Code.ms A], [may][LanguageAlpha3Code.may]).\n     */\n    MS,\n\n    /**\n     * [Maltese](http://en.wikipedia.org/wiki/Maltese_language)\n     * ([mlt][LanguageAlpha3Code.mlt]).\n     */\n    MT,\n\n    /**\n     * [Burmese](http://en.wikipedia.org/wiki/Burmese_language)\n     * ([may][LanguageAlpha3Code.my A], [bur][LanguageAlpha3Code.bur]).\n     */\n    MY,\n\n    /**\n     * [Nauru](http://en.wikipedia.org/wiki/Nauruan_language)\n     * ([nau][LanguageAlpha3Code.nau]).\n     */\n    NA,\n\n    /**\n     * [Norwegian Bokml](http://en.wikipedia.org/wiki/Bokm%C3%A5l)\n     * ([nob][LanguageAlpha3Code.nob]).\n     */\n    NB,\n\n    /**\n     * [Northern Ndebele](http://en.wikipedia.org/wiki/Northern_Ndebele_language)\n     * ([nde][LanguageAlpha3Code.nde]).\n     */\n    ND,\n\n    /**\n     * [Nepali](http://en.wikipedia.org/wiki/Nepali_language)\n     * ([nep][LanguageAlpha3Code.nep]).\n     */\n    NE,\n\n    /**\n     * [Ndonga](http://en.wikipedia.org/wiki/Ndonga)\n     * ([ndo][LanguageAlpha3Code.ndo]).\n     */\n    NG,\n\n    /**\n     * [Dutch](http://en.wikipedia.org/wiki/Dutch_language)\n     * ([nld][LanguageAlpha3Code.nl D], [dut][LanguageAlpha3Code.dut]).\n     */\n    NL,\n\n    /**\n     * [Norwegian Nynorsk](http://en.wikipedia.org/wiki/Nynorsk)\n     * ([nno][LanguageAlpha3Code.nno]).\n     */\n    NN,\n\n    /**\n     * [Norwegian](http://en.wikipedia.org/wiki/Norwegian_language)\n     * ([nor][LanguageAlpha3Code.nor]).\n     *\n     * @see [Sprkkoder for POSIX locale i Norge](http://i18n.skolelinux.no/localekoder.txt)\n     *\n     * @see [Red Hat Bugzilla – Bug 532487 Legacy Norwegian locale\n     ](https://bugzilla.redhat.com/show_bug.cgi?id=532487) */\n    NO,\n\n    /**\n     * [Southern Ndebele](http://en.wikipedia.org/wiki/Southern_Ndebele_language)\n     * ([nbl][LanguageAlpha3Code.nbl]).\n     */\n    NR,\n\n    /**\n     * [Navajo](http://en.wikipedia.org/wiki/Navajo_language)\n     * ([nav][LanguageAlpha3Code.nav]).\n     */\n    NV,\n\n    /**\n     * [Chichewa](http://en.wikipedia.org/wiki/Chichewa_language)\n     * ([nya][LanguageAlpha3Code.nya]).\n     */\n    NY,\n\n    /**\n     * [Occitan](http://en.wikipedia.org/wiki/Occitan_language)\n     * ([oci][LanguageAlpha3Code.oci]).\n     */\n    OC,\n\n    /**\n     * [Ojibwe](http://en.wikipedia.org/wiki/Ojibwe_language)\n     * ([oji][LanguageAlpha3Code.oji]).\n     */\n    OJ,\n\n    /**\n     * [Oromo](http://en.wikipedia.org/wiki/Oromo_language)\n     * ([orm][LanguageAlpha3Code.orm]).\n     */\n    OM,\n\n    /**\n     * [Oriya](http://en.wikipedia.org/wiki/Oriya_language)\n     * ([ori][LanguageAlpha3Code.ori]).\n     */\n    OR,\n\n    /**\n     * [Ossetian](http://en.wikipedia.org/wiki/Ossetic_language)\n     * ([oss][LanguageAlpha3Code.oss]).\n     */\n    OS,\n\n    /**\n     * [Punjabi](http://en.wikipedia.org/wiki/Punjabi_language)\n     * ([pan][LanguageAlpha3Code.pan]).\n     */\n    PA,\n\n    /**\n     * [P&#257;li](http://en.wikipedia.org/wiki/P%C4%81li_language)\n     * ([pli][LanguageAlpha3Code.pli]).\n     */\n    PI,\n\n    /**\n     * [Polish](http://en.wikipedia.org/wiki/Polish_language)\n     * ([pol][LanguageAlpha3Code.pol]).\n     */\n    PL,\n\n    /**\n     * [Pashto](http://en.wikipedia.org/wiki/Pashto_language)\n     * ([pus][LanguageAlpha3Code.pus]).\n     */\n    PS,\n\n    /**\n     * [Portuguese](http://en.wikipedia.org/wiki/Portuguese_language)\n     * ([por][LanguageAlpha3Code.por]).\n     */\n    PT,\n\n    /**\n     * [Quechua](http://en.wikipedia.org/wiki/Quechua_language)\n     * ([que][LanguageAlpha3Code.que]).\n     */\n    QU,\n\n    /**\n     * [Romansh](http://en.wikipedia.org/wiki/Romansh_language)\n     * ([roh][LanguageAlpha3Code.roh]).\n     */\n    RM,\n\n    /**\n     * [Kirundi](http://en.wikipedia.org/wiki/Kirundi)\n     * ([run][LanguageAlpha3Code.run]).\n     */\n    RN,\n\n    /**\n     * [Romanian](http://en.wikipedia.org/wiki/Romanian_language)\n     * ([ron][LanguageAlpha3Code.ro N], [rum][LanguageAlpha3Code.rum]).\n     */\n    RO,\n\n    /**\n     * [Russian](http://en.wikipedia.org/wiki/Russian_language)\n     * ([run][LanguageAlpha3Code.run]).\n     */\n    RU,\n\n    /**\n     * [Kinyarwanda](http://en.wikipedia.org/wiki/Kinyarwanda)\n     * ([kin][LanguageAlpha3Code.kin]).\n     */\n    RW,\n\n    /**\n     * [Sanskrit](http://en.wikipedia.org/wiki/Sanskrit)\n     * ([san][LanguageAlpha3Code.san]).\n     */\n    SA,\n\n    /**\n     * [Sardinian](http://en.wikipedia.org/wiki/Sardinian_language)\n     * ([srd][LanguageAlpha3Code.srd]).\n     */\n    SC,\n\n    /**\n     * [Sindhi](http://en.wikipedia.org/wiki/Sindhi_language)\n     * ([snd][LanguageAlpha3Code.snd]).\n     */\n    SD,\n\n    /**\n     * [Northern Sami](http://en.wikipedia.org/wiki/Northern_Sami)\n     * ([sme][LanguageAlpha3Code.sme]).\n     */\n    SE,\n\n    /**\n     * [Sango](http://en.wikipedia.org/wiki/Sango_language)\n     * ([sag][LanguageAlpha3Code.sag]).\n     */\n    SG,\n\n    /**\n     * [Sinhala](http://en.wikipedia.org/wiki/Sinhala_language)\n     * ([sin][LanguageAlpha3Code.sin]).\n     */\n    SI,\n\n    /**\n     * [Slovak](http://en.wikipedia.org/wiki/Slovak_language)\n     * ([slk][LanguageAlpha3Code.sl K], [slo][LanguageAlpha3Code.slo]).\n     */\n    SK,\n\n    /**\n     * [Slovene](http://en.wikipedia.org/wiki/Slovene_language)\n     * ([slv][LanguageAlpha3Code.slv]).\n     */\n    SL,\n\n    /**\n     * [Samoan](http://en.wikipedia.org/wiki/Samoan_language)\n     * ([smo][LanguageAlpha3Code.smo]).\n     */\n    SM,\n\n    /**\n     * [Shona](http://en.wikipedia.org/wiki/Shona_language)\n     * ([sna][LanguageAlpha3Code.sna]).\n     */\n    SN,\n\n    /**\n     * [Somali](http://en.wikipedia.org/wiki/Somali_language)\n     * ([som][LanguageAlpha3Code.som]).\n     */\n    SO,\n\n    /**\n     * [Albanian](http://en.wikipedia.org/wiki/Albanian_language)\n     * ([sqi][LanguageAlpha3Code.sq I], [alb][LanguageAlpha3Code.alb]).\n     */\n    SQ,\n\n    /**\n     * [Serbian](http://en.wikipedia.org/wiki/Serbian_language)\n     * ([srp][LanguageAlpha3Code.srp]).\n     */\n    SR,\n\n    /**\n     * [Swati](http://en.wikipedia.org/wiki/Swati_language)\n     * ([ssw][LanguageAlpha3Code.ssw]).\n     */\n    SS,\n\n    /**\n     * [Southern Sotho](http://en.wikipedia.org/wiki/Sotho_language)\n     * ([sot][LanguageAlpha3Code.sot]).\n     */\n    ST,\n\n    /**\n     * [Sundanese](http://en.wikipedia.org/wiki/Sundanese_language)\n     * ([sun][LanguageAlpha3Code.sun]).\n     */\n    SU,\n\n    /**\n     * [Swedish](http://en.wikipedia.org/wiki/Swedish_language)\n     * ([swe][LanguageAlpha3Code.swe]).\n     */\n    SV,\n\n    /**\n     * [Swahili](http://en.wikipedia.org/wiki/Swahili_language)\n     * ([swa][LanguageAlpha3Code.swa]).\n     */\n    SW,\n\n    /**\n     * [Tamil](http://en.wikipedia.org/wiki/Tamil_language)\n     * ([tam][LanguageAlpha3Code.tam]).\n     */\n    TA,\n\n    /**\n     * [Telugu](http://en.wikipedia.org/wiki/Telugu_language)\n     * ([tel][LanguageAlpha3Code.tel]).\n     */\n    TE,\n\n    /**\n     * [Tajik](http://en.wikipedia.org/wiki/Tajik_language)\n     * ([tgk][LanguageAlpha3Code.tgk]).\n     */\n    TG,\n\n    /**\n     * [Thai](http://en.wikipedia.org/wiki/Thai_language)\n     * ([tha][LanguageAlpha3Code.tha]).\n     */\n    TH,\n\n    /**\n     * [Tigrinya](http://en.wikipedia.org/wiki/Tigrinya_language)\n     * ([tir][LanguageAlpha3Code.tir]).\n     */\n    TI,\n\n    /**\n     * [Turkmen](http://en.wikipedia.org/wiki/Turkmen_language)\n     * ([tuk][LanguageAlpha3Code.tuk]).\n     */\n    TK,\n\n    /**\n     * [Tagalog](http://en.wikipedia.org/wiki/Tagalog_language)\n     * ([tgl][LanguageAlpha3Code.tgl]).\n     */\n    TL,\n\n    /**\n     * [Tswana](http://en.wikipedia.org/wiki/Tswana_language)\n     * ([tsn][LanguageAlpha3Code.tsn]).\n     */\n    TN,\n\n    /**\n     * [Tongan](http://en.wikipedia.org/wiki/Tongan_language)\n     * ([ton][LanguageAlpha3Code.ton]).\n     */\n    TO,\n\n    /**\n     * [Turkish](http://en.wikipedia.org/wiki/Turkish_language)\n     * ([tur][LanguageAlpha3Code.tur]).\n     */\n    TR,\n\n    /**\n     * [Tsonga](http://en.wikipedia.org/wiki/Tsonga_language)\n     * ([tso][LanguageAlpha3Code.tso]).\n     */\n    TS,\n\n    /**\n     * [Tatar](http://en.wikipedia.org/wiki/Tatar_language)\n     * ([tat][LanguageAlpha3Code.tat]).\n     */\n    TT,\n\n    /**\n     * [Twi](http://en.wikipedia.org/wiki/Twi)\n     * ([twi][LanguageAlpha3Code.twi]).\n     */\n    TW,\n\n    /**\n     * [Tahitian](http://en.wikipedia.org/wiki/Tahitian_language)\n     * ([tah][LanguageAlpha3Code.tah]).\n     */\n    TY,\n\n    /**\n     * [Uighur](http://en.wikipedia.org/wiki/Uyghur_language)\n     * ([uig][LanguageAlpha3Code.uig]).\n     */\n    UG,\n\n    /**\n     * [Ukrainian](http://en.wikipedia.org/wiki/Ukrainian_language)\n     * ([ukr][LanguageAlpha3Code.ukr]).\n     */\n    UK,\n\n    /**\n     * [Urdu](http://en.wikipedia.org/wiki/Urdu)\n     * ([urd][LanguageAlpha3Code.urd]).\n     */\n    UR,\n\n    /**\n     * [Uzbek](http://en.wikipedia.org/wiki/Uzbek_language)\n     * ([uzb][LanguageAlpha3Code.uzb]).\n     */\n    UZ,\n\n    /**\n     * [Venda](http://en.wikipedia.org/wiki/Venda_language)\n     * ([ven][LanguageAlpha3Code.ven]).\n     */\n    VE,\n\n    /**\n     * [Vietnamese](http://en.wikipedia.org/wiki/Vietnamese_language)\n     * ([vie][LanguageAlpha3Code.vie]).\n     */\n    VI,\n\n    /**\n     * [Volapk](http://en.wikipedia.org/wiki/Volap%C3%BCk)\n     * ([vol][LanguageAlpha3Code.vol]).\n     */\n    VO,\n\n    /**\n     * [Walloon](http://en.wikipedia.org/wiki/Walloon_language)\n     * ([wln][LanguageAlpha3Code.wln]).\n     */\n    WA,\n\n    /**\n     * [Wolof](http://en.wikipedia.org/wiki/Wolof_language)\n     * ([wol][LanguageAlpha3Code.wol]).\n     */\n    WO,\n\n    /**\n     * [Xhosa](http://en.wikipedia.org/wiki/Xhosa_language)\n     * ([xho][LanguageAlpha3Code.xho]).\n     */\n    XH,\n\n    /**\n     * [Yiddish](http://en.wikipedia.org/wiki/Yiddish_language)\n     * ([yid][LanguageAlpha3Code.yid]).\n     */\n    YI,\n\n    /**\n     * [Yoruba](http://en.wikipedia.org/wiki/Yoruba_language)\n     * ([yor][LanguageAlpha3Code.yor]).\n     */\n    YO,\n\n    /**\n     * [Zhuang](http://en.wikipedia.org/wiki/Zhuang_languages)\n     * ([zha][LanguageAlpha3Code.zha]).\n     */\n    ZA,\n\n    /**\n     * [Chinese](http://en.wikipedia.org/wiki/Chinese_language)\n     * ([zho][LanguageAlpha3Code.zh O], [chi][LanguageAlpha3Code.chi]).\n     */\n    ZH\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/Locale.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\n/**\n * Locale code.\n *\n *\n *\n * The list of the enum entries was generated based on the output from\n * [ Locale.getAvailableLocales()][java.util.Locale.getAvailableLocales] of Java SE 7, but locales whose\n * format do not match either 'xx' or 'xx-XX' were excluded.\n *\n *\n * <pre style=\"background-color: #EEEEEE; margin-left: 2em; margin-right: 2em; border: 1px solid black;\">\n * <span style=\"color: darkgreen;\">// List all the locale codes.</span>\n * for (LocaleCode code : LocaleCode.values())\n * {\n * String language = code.[.getLanguage].[getName()][Language.GEtName];\n * String country  = code.[.getCountry] != null\n * ? code.[.getCountry].[getName()][Market.getName] : null;\n *\n * <span style=\"color: darkgreen;\">// For example, \"[de-DE] German, Germany\" is printed.</span>\n * System.out.format(<span style=\"color: darkred;\">\"[%s] %s, %s\\n\"</span>, code, language, country);\n * }\n *\n * <span style=\"color: darkgreen;\">// Get a LocaleCode instance in various ways.</span>\n * LocaleCode code;\n * code = LocaleCode.[getByCode][.getByCode](<span style=\"color: darkred;\">\"en-GB\"</span>);\n * code = LocaleCode.[getByCode][.getByCode](<span style=\"color: darkred;\">\"es\"</span>, <span style=\"color: darkred;\">\"ES\"</span>);\n * code = LocaleCode.[getByLocale][.getByLocale](new Locale(<span style=\"color: darkred;\">\"pt\"</span>, <span style=\"color: darkred;\">\"BR\"</span>));\n *\n * <span style=\"color: darkgreen;\">// Convert to a Locale instance.</span>\n * Locale locale = LocaleCode.[.en].[.toLocale];\n *\n * <span style=\"color: darkgreen;\">// toLocale() of some LocaleCode instances does not create</span>\n * <span style=\"color: darkgreen;\">// a new Locale instance but returns a static variable of</span>\n * <span style=\"color: darkgreen;\">// Locale class instead. See [.toLocale] for details.</span>\n * if (locale == Locale.ENGLISH)\n * {\n * System.out.println(<span style=\"color: darkred;\">\"Locale.en.toLocale() returned Locale.ENGLISH\"</span>);\n * }\n *\n * <span style=\"color: darkgreen;\">// Get a list of LocaleCode instances whose language is Arabic.</span>\n * List&lt;LocaleCode&gt; list = LocaleCode.[getByLanguage][.getByLanguage]([LanguageCode.ar]);\n *\n * <span style=\"color: darkgreen;\">// Get a list of LocaleCode instances whose country is Switzerland.</span>\n * list = LocaleCode.[getByCountry][.getByCountry]([Market.CH]);\n</pre> *\n *\n * @author Takahiko Kawasaki\n */\npublic enum class Locale(public val language: Language, public val country: Market) {\n    /**\n     * [Arabic][Language.AR]\n     */\n\n    /**\n     * [Arabic][Language.AR], [United Arab Emirates][Market.AE]\n     */\n    AR_AE(Language.AR, Market.AE),\n\n    /**\n     * [Arabic][Language.AR], [Bahrain][Market.BH]\n     */\n    AR_BH(Language.AR, Market.BH),\n\n    /**\n     * [Arabic][Language.AR], [Algeria][Market.DZ]\n     */\n    AR_DZ(Language.AR, Market.DZ),\n\n    /**\n     * [Arabic][Language.AR], [Egypt][Market.EG]\n     */\n    AR_EG(Language.AR, Market.EG),\n\n    /**\n     * [Arabic][Language.AR], [Iraq][Market.IQ]\n     */\n    AR_IQ(Language.AR, Market.IQ),\n\n    /**\n     * [Arabic][Language.AR], [Jordan][Market.JO]\n     */\n    AR_JO(Language.AR, Market.JO),\n\n    /**\n     * [Arabic][Language.AR], [Kuwait][Market.KW]\n     */\n    AR_KW(Language.AR, Market.KW),\n\n    /**\n     * [Arabic][Language.AR], [Lebanon][Market.LB]\n     */\n    AR_LB(Language.AR, Market.LB),\n\n    /**\n     * [Arabic][Language.AR], [Libya][Market.LY]\n     */\n    AR_LY(Language.AR, Market.LY),\n\n    /**\n     * [Arabic][Language.AR], [Morocco][Market.MA]\n     */\n    AR_MA(Language.AR, Market.MA),\n\n    /**\n     * [Arabic][Language.AR], [Oman][Market.OM]\n     */\n    AR_OM(Language.AR, Market.OM),\n\n    /**\n     * [Arabic][Language.AR], [Qatar][Market.QA]\n     */\n    AR_QA(Language.AR, Market.QA),\n\n    /**\n     * [Arabic][Language.AR], [Saudi Arabia][Market.SA]\n     */\n    AR_SA(Language.AR, Market.SA),\n\n    /**\n     * [Arabic][Language.AR], [Sudan][Market.SD]\n     */\n    AR_SD(Language.AR, Market.SD),\n\n    /**\n     * [Arabic][Language.AR], [Syrian Arab Republic][Market.SY]\n     */\n    AR_SY(Language.AR, Market.SY),\n\n    /**\n     * [Arabic][Language.AR], [Tunisia][Market.TN]\n     */\n    AR_TN(Language.AR, Market.TN),\n\n    /**\n     * [Arabic][Language.AR], [Yemen][Market.YE]\n     */\n    AR_YE(Language.AR, Market.YE),\n    /**\n     * [Belarusian][Language.BE]\n     */\n\n    /**\n     * [Belarusian][Language.BE], [Belarus][Market.BY]\n     */\n    BE_BY(Language.BE, Market.BY),\n    /**\n     * [Bulgarian][Language.BG]\n     */\n\n    /**\n     * [Bulgarian][Language.BG], [Bulgaria][Market.BG]\n     */\n    BG_BG(Language.BG, Market.BG),\n    /**\n     * [Catalan][Language.CA]\n     */\n\n    /**\n     * [Catalan][Language.CA], [Spain][Market.ES]\n     */\n    CA_ES(Language.CA, Market.ES),\n    /**\n     * [Czech][Language.CS]\n     */\n\n    /**\n     * [Czech][Language.CS], [Czech Republic][Market.CZ]\n     */\n    CS_CZ(Language.CS, Market.CZ),\n    /**\n     * [Danish][Language.DA]\n     */\n\n    /**\n     * [Danish][Language.DA], [Denmark][Market.DK]\n     */\n    DA_DK(Language.DA, Market.DK),\n    /**\n     * [German][Language.DE]\n     */\n\n    /**\n     * [German][Language.DE], [Austria][Market.AT]\n     */\n    DE_AT(Language.DE, Market.AT),\n\n    /**\n     * [German][Language.DE], [Switzerland][Market.CH]\n     */\n    DE_CH(Language.DE, Market.CH),\n\n    /**\n     * [German][Language.DE], [Germany][Market.DE]\n     */\n    DE_DE(Language.DE, Market.DE),\n\n    /**\n     * [German][Language.DE], [Luxembourg][Market.LU]\n     */\n    DE_LU(Language.DE, Market.LU),\n    /**\n     * [Greek][Language.EL]\n     */\n\n    /**\n     * [Greek][Language.EL], [Cyprus][Market.CY]\n     */\n    EL_CY(Language.EL, Market.CY),\n\n    /**\n     * [Greek][Language.EL], [Greece][Market.GR]\n     */\n    EL_GR(Language.EL, Market.GR),\n    /**\n     * [English][Language.EN]\n     */\n\n    /**\n     * [English][Language.EN], [Australia][Market.AU]\n     */\n    EN_AU(Language.EN, Market.AU),\n\n    /**\n     * [English][Language.EN], [Canada][Market.CA]\n     */\n    EN_CA(Language.EN, Market.CA),\n\n    /**\n     * [English][Language.EN], [United Kingdom][Market.GB]\n     */\n    EN_GB(Language.EN, Market.GB),\n\n    /**\n     * [English][Language.EN], [Hong Kong][Market.HK]\n     *\n     * @since 1.22\n     */\n    EN_HK(Language.EN, Market.HK),\n\n    /**\n     * [English][Language.EN], [Ireland][Market.IE]\n     */\n    EN_IE(Language.EN, Market.IE),\n\n    /**\n     * [English][Language.EN], [India][Market.IN]\n     */\n    EN_IN(Language.EN, Market.IN),\n\n    /**\n     * [English][Language.EN], [Malta][Market.MT]\n     */\n    EN_MT(Language.EN, Market.MT),\n\n    /**\n     * [English][Language.EN], [New Zealand][Market.NZ]\n     */\n    EN_NZ(Language.EN, Market.NZ),\n\n    /**\n     * [English][Language.EN], [Philippines][Market.PH]\n     */\n    EN_PH(Language.EN, Market.PH),\n\n    /**\n     * [English][Language.EN], [Singapore][Market.SG]\n     */\n    EN_SG(Language.EN, Market.SG),\n\n    /**\n     * [English][Language.EN], [United States][Market.US]\n     */\n    EN_US(Language.EN, Market.US),\n\n    /**\n     * [English][Language.EN], [South Africa][Market.ZA]\n     */\n    EN_ZA(Language.EN, Market.ZA),\n    /**\n     * [Spanish][Language.ES]\n     */\n\n    /**\n     * [Spanish][Language.ES], [Argentina][Market.AR]\n     */\n    ES_AR(Language.ES, Market.AR),\n\n    /**\n     * [Spanish][Language.ES], [Bolivia, Plurinational State of][Market.BO]\n     */\n    ES_BO(Language.ES, Market.BO),\n\n    /**\n     * [Spanish][Language.ES], [Chile][Market.CL]\n     */\n    ES_CL(Language.ES, Market.CL),\n\n    /**\n     * [Spanish][Language.ES], [Colombia][Market.CO]\n     */\n    ES_CO(Language.ES, Market.CO),\n\n    /**\n     * [Spanish][Language.ES], [Costa Rica][Market.CR]\n     */\n    ES_CR(Language.ES, Market.CR),\n\n    /**\n     * [Spanish][Language.ES], [Dominican Republic][Market.DO]\n     */\n    ES_DO(Language.ES, Market.DO),\n\n    /**\n     * [Spanish][Language.ES], [Ecuador][Market.EC]\n     */\n    ES_EC(Language.ES, Market.EC),\n\n    /**\n     * [Spanish][Language.ES], [Spain][Market.ES]\n     */\n    ES_ES(Language.ES, Market.ES),\n\n    /**\n     * [Spanish][Language.ES], [Guatemala][Market.GT]\n     */\n    ES_GT(Language.ES, Market.GT),\n\n    /**\n     * [Spanish][Language.ES], [Honduras][Market.HN]\n     */\n    ES_HN(Language.ES, Market.HN),\n\n    /**\n     * [Spanish][Language.ES], [Mexico][Market.MX]\n     */\n    ES_MX(Language.ES, Market.MX),\n\n    /**\n     * [Spanish][Language.ES], [Nicaragua][Market.NI]\n     */\n    ES_NI(Language.ES, Market.NI),\n\n    /**\n     * [Spanish][Language.ES], [Panama][Market.PA]\n     */\n    ES_PA(Language.ES, Market.PA),\n\n    /**\n     * [Spanish][Language.ES], [Peru][Market.PE]\n     */\n    ES_PE(Language.ES, Market.PE),\n\n    /**\n     * [Spanish][Language.ES], [Puerto Rico][Market.PR]\n     */\n    ES_PR(Language.ES, Market.PR),\n\n    /**\n     * [Spanish][Language.ES], [Paraguay][Market.PY]\n     */\n    ES_PY(Language.ES, Market.PY),\n\n    /**\n     * [Spanish][Language.ES], [El Salvador][Market.SV]\n     */\n    ES_SV(Language.ES, Market.SV),\n\n    /**\n     * [Spanish][Language.ES], [United States][Market.US]\n     */\n    ES_US(Language.ES, Market.US),\n\n    /**\n     * [Spanish][Language.ES], [Uruguay][Market.UY]\n     */\n    ES_UY(Language.ES, Market.UY),\n\n    /**\n     * [Spanish][Language.ES], [Venezuela, Bolivarian Republic of][Market.VE]\n     */\n    ES_VE(Language.ES, Market.VE),\n    /**\n     * [Estonian][Language.ET]\n     */\n\n    /**\n     * [Estonian][Language.ET], [Estonia][Market.EE]\n     */\n    ET_EE(Language.ET, Market.EE),\n    /**\n     * [Farsi][Language.FA]\n     *\n     * @since 1.21\n     */\n\n    /**\n     * [Farsi][Language.FA], [Iran][Market.IR]\n     *\n     * @since 1.21\n     */\n    FA_IR(Language.FA, Market.IR),\n    /**\n     * [Finnish][Language.FI]\n     */\n\n    /**\n     * [Finnish][Language.FI], [Finland][Market.FI]\n     */\n    FI_FI(Language.FI, Market.FI),\n    /**\n     * [French][Language.FR]\n     */\n\n    /**\n     * [French][Language.FR], [Belgium][Market.BE]\n     */\n    FR_BE(Language.FR, Market.BE),\n\n    /**\n     * [French][Language.FR], [Canada][Market.CA]\n     */\n    FR_CA(Language.FR, Market.CA),\n\n    /**\n     * [French][Language.FR], [Switzerland][Market.CH]\n     */\n    FR_CH(Language.FR, Market.CH),\n\n    /**\n     * [French][Language.FR], [France][Market.FR]\n     */\n    FR_FR(Language.FR, Market.FR),\n\n    /**\n     * [French][Language.FR], [Luxembourg][Market.LU]\n     */\n    FR_LU(Language.FR, Market.LU),\n    /**\n     * [Irish][Language.GA]\n     */\n\n    /**\n     * [Irish][Language.GA], [Ireland][Market.IE]\n     */\n    GA_IE(Language.GA, Market.IE),\n    /**\n     * [Hebrew][Language.HE]\n     */\n\n    /**\n     * [Hebrew][Language.HE], [Israel][Market.IL]\n     */\n    HE_IL(Language.HE, Market.IL),\n\n    /**\n     * [Hindi][Language.HI], [India][Market.IN]\n     */\n    HI_IN(Language.HI, Market.IN),\n    /**\n     * [Croatian][Language.HR]\n     */\n\n    /**\n     * [Croatian][Language.HR], [Croatia][Market.HR]\n     */\n    HR_HR(Language.HR, Market.HR),\n    /**\n     * [Hungarian][Language.HU]\n     */\n\n    /**\n     * [Hungarian][Language.HU], [Hungary][Market.HU]\n     */\n    HU_HU(Language.HU, Market.HU),\n    /**\n     * [Indonesian][Language.ID]\n     */\n\n    /**\n     * [Indonesian][Language.ID], [Indonesia][Market.ID]\n     */\n    ID_ID(Language.ID, Market.ID),\n    /**\n     * [Icelandic][LanguageCode. is]\n     */\n\n    /**\n     * [Icelandic][LanguageCode. is], [Iceland][Market.IS]\n     */\n    IS_IS(Language.IS, Market.IS),\n    /**\n     * [Italian][Language.IT]\n     */\n\n    /**\n     * [Italian][Language.IT], [Switzerland][Market.CH]\n     */\n    IT_CH(Language.IT, Market.CH),\n\n    /**\n     * [Italian][Language.IT], [Italy][Market.IT]\n     */\n    IT_IT(Language.IT, Market.IT),\n    /**\n     * [Japanese][Language.JA]\n     */\n\n    /**\n     * [Japanese][Language.JA], [Japan][Market.JP]\n     */\n    JA_JP(Language.JA, Market.JP),\n\n    /**\n     * [Kazakh][Language.KK], [Kazakhstan][Market.KZ]\n     *\n     * @since 1.22\n     */\n    KK_KZ(Language.KK, Market.KZ),\n    /**\n     * [Korean][Language.KO]\n     */\n\n    /**\n     * [Korean][Language.KO], [Korea, Republic of][Market.KR]\n     */\n    KO_KR(Language.KO, Market.KR),\n    /**\n     * [Lithuanian][Language.LT]\n     */\n\n    /**\n     * [Lithuanian][Language.LT], [Lithuania][Market.LT]\n     */\n    LT_LT(Language.LT, Market.LT),\n    /**\n     * [Latvian][Language.LV]\n     */\n\n    /**\n     * [Latvian][Language.LV], [Latvia][Market.LV]\n     */\n    LV_LV(Language.LV, Market.LV),\n    /**\n     * [Macedonian][Language.MK]\n     */\n\n    /**\n     * [Macedonian][Language.MK], [Macedonia, the former Yugoslav Republic of][Market.MK]\n     */\n    MK_MK(Language.MK, Market.MK),\n    /**\n     * [Malay][Language.MS]\n     */\n\n    /**\n     * [Malay][Language.MS], [Malaysia][Market.MY]\n     */\n    MS_MY(Language.MS, Market.MY),\n    /**\n     * [Maltese][Language.MT]\n     */\n\n    /**\n     * [Maltese][Language.MT], [Malta][Market.MT]\n     */\n    MT_MT(Language.MT, Market.MT),\n    /**\n     * [Norwegian Bokm&amp;aring;l][Language.NB]\n     *\n     * @since 1.8\n     */\n\n    /**\n     * [Norwegian Bokm&amp;aring;l][Language.NB], [Norway][Market.NO]\n     *\n     * @since 1.8\n     */\n    NB_NO(Language.NB, Market.NO),\n    /**\n     * [Dutch][Language.NL]\n     */\n\n    /**\n     * [Dutch][Language.NL], [Belgium][Market.BE]\n     */\n    NL_BE(Language.NL, Market.BE),\n\n    /**\n     * [Dutch][Language.NL], [Netherlands][Market.NL]\n     */\n    NL_NL(Language.NL, Market.NL),\n\n    /**\n     * [Norwegian Nynorsk][Language.NN], [Norway][Market.NO]\n     */\n    NN_NO(Language.NN, Market.NO),\n    /**\n     * [Norwegian][Language.NO]\n     *\n     * @see [Sprkkoder for POSIX locale i Norge](http://i18n.skolelinux.no/localekoder.txt)\n     *\n     * @see [Red Hat Bugzilla – Bug 532487 Legacy Norwegian locale\n     ](https://bugzilla.redhat.com/show_bug.cgi?id=532487) */\n\n    /**\n     * [Norwegian][Language.NO], [Norway][Market.NO]\n     *\n     * @see [Sprkkoder for POSIX locale i Norge](http://i18n.skolelinux.no/localekoder.txt)\n     *\n     * @see [Red Hat Bugzilla – Bug 532487 Legacy Norwegian locale\n     ](https://bugzilla.redhat.com/show_bug.cgi?id=532487) */\n    NO_NO(Language.NO, Market.NO),\n    /**\n     * [Polish][Language.PL]\n     */\n\n    /**\n     * [Polish][Language.PL], [Poland][Market.PL]\n     */\n    PL_PL(Language.PL, Market.PL),\n    /**\n     * [Portuguese][Language.PT]\n     */\n\n    /**\n     * [Portuguese][Language.PT], [Brazil][Market.BR]\n     */\n    PT_BR(Language.PT, Market.BR),\n\n    /**\n     * [Portuguese][Language.PT], [Portugal][Market.PT]\n     */\n    PT_PT(Language.PT, Market.PT),\n    /**\n     * [Romanian][Language.RO]\n     */\n\n    /**\n     * [Romanian][Language.RO], [Moldova, Republic of][Market.MD]\n     */\n    RO_MD(Language.RO, Market.MD),\n\n    /**\n     * [Romanian][Language.RO], [Romania][Market.RO]\n     */\n    RO_RO(Language.RO, Market.RO),\n    /**\n     * [Russian][Language.RU]\n     */\n\n    /**\n     * [Russian][Language.RU], [Kazakhstan][Market.KZ]\n     *\n     * @since 1.22\n     */\n    RU_KZ(Language.RU, Market.KZ),\n\n    /**\n     * [Russian][Language.RU], [Russian Federation][Market.RU]\n     */\n    RU_RU(Language.RU, Market.RU),\n    /**\n     * [Northern Sami][Language.SE]\n     *\n     * @since 1.8\n     */\n\n    /**\n     * [Northern Sami][Language.SE], [Norway][Market.NO]\n     *\n     * @since 1.8\n     */\n    SE_NO(Language.SE, Market.NO),\n    /**\n     * [Slovak][Language.SK]\n     */\n\n    /**\n     * [Slovak][Language.SK], [Slovakia][Market.SK]\n     */\n    SK_SK(Language.SK, Market.SK),\n    /**\n     * [Slovene][Language.SL]\n     */\n\n    /**\n     * [Slovene][Language.SL], [Slovenia][Market.SI]\n     */\n    SL_SI(Language.SL, Market.SI),\n    /**\n     * [Albanian][Language.SQ]\n     */\n\n    /**\n     * [Albanian][Language.SQ], [Albania][Market.AL]\n     */\n    SQ_AL(Language.SQ, Market.AL),\n    /**\n     * [Serbian][Language.SR]\n     */\n\n    /**\n     * [Serbian][Language.SR], [Bosnia and Herzegovina][Market.BA]\n     */\n    SR_BA(Language.SR, Market.BA),\n\n    /**\n     * [Serbian][Language.SR], [Serbia and Montenegro][Market.CS]\n     */\n    SR_CS(Language.SR, Market.CS),\n\n    /**\n     * [Serbian][Language.SR], [Montenegro][Market.ME]\n     */\n    SR_ME(Language.SR, Market.ME),\n\n    /**\n     * [Serbian][Language.SR], [Serbia][Market.RS]\n     */\n    SR_RS(Language.SR, Market.RS),\n    /**\n     * [Swedish][Language.SV]\n     */\n\n    /**\n     * [Swedish][Language.SV], [Sweden][Market.SE]\n     */\n    SV_SE(Language.SV, Market.SE),\n    /**\n     * [Thai][Language.TH]\n     */\n\n    /**\n     * [Thai][Language.TH], [Thailand][Market.TH]\n     */\n    TH_TH(Language.TH, Market.TH),\n    /**\n     * [Turkish][Language.TR]\n     */\n\n    /**\n     * [Turkish][Language.TR], [Turkey][Market.TR]\n     */\n    TR_TR(Language.TR, Market.TR),\n    /**\n     * [Ukrainian][Language.UK]\n     */\n\n    /**\n     * [Ukrainian][Language.UK], [Ukraine][Market.UA]\n     */\n    UK_UA(Language.UK, Market.UA),\n    /**\n     * [Vietnamese][Language.VI]\n     */\n    /**\n     * [Vietnamese][Language.VI], [Viet Nam][Market.VN]\n     */\n    VI_VN(Language.VI, Market.VN),\n\n    /**\n     * [Chinese][Language.ZH], [China][Market.CN]\n     */\n    ZH_CN(Language.ZH, Market.CN),\n\n    /**\n     * [Chinese][Language.ZH], [Hong Kong][Market.HK]\n     */\n    ZH_HK(Language.ZH, Market.HK),\n\n    /**\n     * [Chinese][Language.ZH], [Singapore][Market.SG]\n     */\n    ZH_SG(Language.ZH, Market.SG),\n\n    /**\n     * [Chinese][Language.ZH], [Taiwan, Province of China][Market.TW]\n     */\n    ZH_TW(Language.ZH, Market.TW);\n\n    /**\n     * Get the string representation of this locale code. Its format is\n     * either of the following:\n     *\n     *\n     *  * *language*\n     *  * *language*`-`*country*\n     *\n     *\n     *\n     *\n     * where *language* is an [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) code\n     * and *country* is an [ISO 3166-1\n * alpha-2](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code.\n     *\n     *\n     * @return\n     * The string representation of this locale code.\n     */\n    override fun toString(): String {\n        return name\n    }\n\n    public companion object {\n        public fun from(language: Language, country: Market): Locale? {\n            return entries.find { locale -> locale.language == language && locale.country == country }\n        }\n    }\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/Market.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport com.adamratzman.spotify.SpotifyAppApi\n\n/*\n * Copyright (C) 2012-2019 Neo Visionaries Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * [ISO 3166-1](http://en.wikipedia.org/wiki/ISO_3166-1) country code.\n *\n * **Note**: Use [Market.FROM_TOKEN] if you want to use the client's locale. This should not be used with [SpotifyAppApi]\n *\n * @author Takahiko Kawasaki (https://github.com/TakahikoKawasaki/nv-i18n)\n */\npublic enum class Market(\n    /**\n     * Get the country name.\n     *\n     * @return\n     * The country name.\n     */\n    public val marketName: String,\n    /**\n     * Get the [ISO 3166-1 alpha-3](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) code.\n     *\n     * @return\n     * The [ISO 3166-1 alpha-3](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) code.\n     * Some country codes reserved exceptionally (such as [.EU])\n     * returns `null`.\n     */\n    public val alpha3: String?,\n    /**\n     * Get the [ISO 3166-1 numeric](http://en.wikipedia.org/wiki/ISO_3166-1_numeric) code.\n     *\n     * @return\n     * The [ISO 3166-1 numeric](http://en.wikipedia.org/wiki/ISO_3166-1_numeric) code.\n     * Country codes reserved exceptionally (such as [.EU])\n     * returns `-1`.\n     */\n    public val numeric: Int,\n    /**\n     * Get the assignment state of this country code in ISO 3166-1.\n     *\n     * @return\n     * The assignment state.\n     *\n     * @see [Decoding table of ISO 3166-1 alpha-2 codes](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.Decoding_table)\n     */\n    public val assignment: Assignment\n) {\n    /**\n     * [Ascension Island](http://en.wikipedia.org/wiki/Ascension_Island)\n     * [Market Code: AC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AC)\n     */\n    AC(\"Ascension Island\", \"ASC\", -1, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [Andorra](http://en.wikipedia.org/wiki/Andorra)\n     * [Market Code: AD](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AD)\n     */\n    AD(\"Andorra\", \"AND\", 20, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [United Arab Emirates](http://en.wikipedia.org/wiki/United_Arab_Emirates)\n     * [Market Code: AE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AE)\n     */\n    AE(\"United Arab Emirates\", \"ARE\", 784, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Afghanistan](http://en.wikipedia.org/wiki/Afghanistan)\n     * [Market Code: AF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AF)\n     */\n    AF(\"Afghanistan\", \"AFG\", 4, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Antigua and Barbuda](http://en.wikipedia.org/wiki/Antigua_and_Barbuda)\n     * [Market Code: AG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AG)\n     */\n    AG(\"Antigua and Barbuda\", \"ATG\", 28, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Anguilla](http://en.wikipedia.org/wiki/Anguilla)\n     * [Market Code: AI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AI)\n     */\n    AI(\"Anguilla\", \"AIA\", 660, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Albania](http://en.wikipedia.org/wiki/Albania)\n     * [AL](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AL), ALB, 8,\n     * Officially assigned]\n     */\n    AL(\"Albania\", \"ALB\", 8, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Armenia](http://en.wikipedia.org/wiki/Armenia)\n     * [Market Code: AM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AM)\n     */\n    AM(\"Armenia\", \"ARM\", 51, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Netherlands Antilles](http://en.wikipedia.org/wiki/Netherlands_Antilles)\n     * [Market Code: AN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AN)\n     *\n     *\n     *\n     * Since version 1.16, the value of alpha-3 code of this entry is `ANT`\n     * (not `[ANHH](http://en.wikipedia.org/wiki/ISO_3166-3#ANHH)`).\n     *\n     */\n    AN(\"Netherlands Antilles\", \"ANT\", 530, Assignment.TRANSITIONALLY_RESERVED),\n\n    /**\n     * [Angola](http://en.wikipedia.org/wiki/Angola)\n     * [Market Code: AO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AO)\n     */\n    AO(\"Angola\", \"AGO\", 24, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Antarctica](http://en.wikipedia.org/wiki/Antarctica)\n     * [Market Code: AQ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AQ)\n     */\n    AQ(\"Antarctica\", \"ATA\", 10, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Argentina](http://en.wikipedia.org/wiki/Argentina)\n     * [Market Code: AR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AR)\n     */\n    AR(\"Argentina\", \"ARG\", 32, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [American Samoa](http://en.wikipedia.org/wiki/American_Samoa)\n     * [Market Code: AS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AS)\n     */\n    AS(\"American Samoa\", \"ASM\", 16, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Austria](http://en.wikipedia.org/wiki/Austria)\n     * [Market Code: AT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AT)\n     */\n    AT(\"Austria\", \"AUT\", 40, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Australia](http://en.wikipedia.org/wiki/Australia)\n     * [Market Code: AU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AU)\n     */\n    AU(\"Australia\", \"AUS\", 36, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Aruba](http://en.wikipedia.org/wiki/Aruba)\n     * [Market Code: AW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AW)\n     */\n    AW(\"Aruba\", \"ABW\", 533, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [land Islands](http://en.wikipedia.org/wiki/%C3%85land_Islands)\n     * [Market Code: AX](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AX)\n     *\n     *\n     *\n     * The country name was changed from \"\\u212Bland Islands\" (up to 1.14)\n     * to \"\\u00C5land Islands\" (since 1.15).\n     *\n     */\n    AX(\"\\u00C5land Islands\", \"ALA\", 248, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Azerbaijan](http://en.wikipedia.org/wiki/Azerbaijan)\n     * [Market Code: AZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#AZ)\n     */\n    AZ(\"Azerbaijan\", \"AZE\", 31, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Bosnia and Herzegovina](http://en.wikipedia.org/wiki/Bosnia_and_Herzegovina)\n     * [Market Code: BA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BA)\n     */\n    BA(\"Bosnia and Herzegovina\", \"BIH\", 70, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Barbados](http://en.wikipedia.org/wiki/Barbados)\n     * [Market Code: BB](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BB)\n     */\n    BB(\"Barbados\", \"BRB\", 52, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Bangladesh](http://en.wikipedia.org/wiki/Bangladesh)\n     * [Market Code: BD](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BD)\n     */\n    BD(\"Bangladesh\", \"BGD\", 50, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Belgium](http://en.wikipedia.org/wiki/Belgium)\n     * [Market Code: BE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BE)\n     */\n    BE(\"Belgium\", \"BEL\", 56, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Burkina Faso](http://en.wikipedia.org/wiki/Burkina_Faso)\n     * [Market Code: BF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BF)\n     */\n    BF(\"Burkina Faso\", \"BFA\", 854, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Bulgaria](http://en.wikipedia.org/wiki/Bulgaria)\n     * [Market Code: BG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BG)\n     */\n    BG(\"Bulgaria\", \"BGR\", 100, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Bahrain](http://en.wikipedia.org/wiki/Bahrain)\n     * [Market Code: BH](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BH)\n     */\n    BH(\"Bahrain\", \"BHR\", 48, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Burundi](http://en.wikipedia.org/wiki/Burundi)\n     * [Market Code: BI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BI)\n     */\n    BI(\"Burundi\", \"BDI\", 108, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Benin](http://en.wikipedia.org/wiki/Benin)\n     * [Market Code: BJ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BJ)\n     */\n    BJ(\"Benin\", \"BEN\", 204, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Saint Barthlemy](http://en.wikipedia.org/wiki/Saint_Barth%C3%A9lemy)\n     * [Market Code: BL](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BL)\n     */\n    BL(\"Saint Barth\\u00E9lemy\", \"BLM\", 652, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Bermuda](http://en.wikipedia.org/wiki/Bermuda)\n     * [Market Code: BM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BM)\n     */\n    BM(\"Bermuda\", \"BMU\", 60, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Brunei Darussalam](http://en.wikipedia.org/wiki/Brunei)\n     * [Market Code: BN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BN)\n     */\n    BN(\"Brunei Darussalam\", \"BRN\", 96, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Bolivia, Plurinational State of](http://en.wikipedia.org/wiki/Bolivia)\n     * [Market Code: BO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BO)\n     */\n    BO(\"Bolivia, Plurinational State of\", \"BOL\", 68, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Bonaire, Sint Eustatius and Saba](http://en.wikipedia.org/wiki/Caribbean_Netherlands)\n     * [Market Code: BQ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BQ)\n     */\n    BQ(\"Bonaire, Sint Eustatius and Saba\", \"BES\", 535, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Brazil](http://en.wikipedia.org/wiki/Brazil)\n     * [Market Code: BR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BR)\n     */\n    BR(\"Brazil\", \"BRA\", 76, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Bahamas](http://en.wikipedia.org/wiki/The_Bahamas)\n     * [Market Code: BS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BS)\n     */\n    BS(\"Bahamas\", \"BHS\", 44, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Bhutan](http://en.wikipedia.org/wiki/Bhutan)\n     * [Market Code: BT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BT)\n     */\n    BT(\"Bhutan\", \"BTN\", 64, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Burma](http://en.wikipedia.org/wiki/Burma)\n     * [Market Code: BU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BU)\n     *\n     *\n     *\n     * Since version 1.16, the value of alpha-3 code of this entry is `BUR`\n     * (not `[BUMM](http://en.wikipedia.org/wiki/ISO_3166-3#BUMM)`).\n     *\n     *\n     * @see .MM\n     */\n    BU(\"Burma\", \"BUR\", 104, Assignment.TRANSITIONALLY_RESERVED),\n\n    /**\n     * [Bouvet Island](http://en.wikipedia.org/wiki/Bouvet_Island)\n     * [Market Code: BV](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BV)\n     */\n    BV(\"Bouvet Island\", \"BVT\", 74, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Botswana](http://en.wikipedia.org/wiki/Botswana)\n     * [Market Code: BW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BW)\n     */\n    BW(\"Botswana\", \"BWA\", 72, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Belarus](http://en.wikipedia.org/wiki/Belarus)\n     * [Market Code: BY](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BY)\n     */\n    BY(\"Belarus\", \"BLR\", 112, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Belize](http://en.wikipedia.org/wiki/Belize)\n     * [Market Code: BZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#BZ)\n     */\n    BZ(\"Belize\", \"BLZ\", 84, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Canada](http://en.wikipedia.org/wiki/Canada)\n     * [Market Code: CA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CA)\n     */\n    CA(\"Canada\", \"CAN\", 124, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Cocos (Keeling) Islands](http://en.wikipedia.org/wiki/Cocos_(Keeling)_Islands)\n     * [Market Code: CC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CC)\n     */\n    CC(\"Cocos (Keeling) Islands\", \"CCK\", 166, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Congo, the Democratic Republic of the](http://en.wikipedia.org/wiki/Democratic_Republic_of_the_Congo)\n     * [Market Code: CD](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CD)\n     *\n     * @see .ZR\n     */\n    CD(\"Congo, the Democratic Republic of the\", \"COD\", 180, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Central African Republic](http://en.wikipedia.org/wiki/Central_African_Republic)\n     * [Market Code: CF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CF)\n     */\n    CF(\"Central African Republic\", \"CAF\", 140, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Congo](http://en.wikipedia.org/wiki/Republic_of_the_Congo)\n     * [Market Code: CG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CG)\n     */\n    CG(\"Congo\", \"COG\", 178, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Switzerland](http://en.wikipedia.org/wiki/Switzerland)\n     * [Market Code: CH](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CH)\n     */\n    CH(\"Switzerland\", \"CHE\", 756, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Cte d'Ivoire](http://en.wikipedia.org/wiki/C%C3%B4te_d%27Ivoire)\n     * [Market Code: CI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CI)\n     */\n    CI(\"C\\u00F4te d'Ivoire\", \"CIV\", 384, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Cook Islands](http://en.wikipedia.org/wiki/Cook_Islands)\n     * [Market Code: CK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CK)\n     */\n    CK(\"Cook Islands\", \"COK\", 184, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Chile](http://en.wikipedia.org/wiki/Chile)\n     * [Market Code: CL](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CL)\n     */\n    CL(\"Chile\", \"CHL\", 152, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Cameroon](http://en.wikipedia.org/wiki/Cameroon)\n     * [Market Code: CM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CM)\n     */\n    CM(\"Cameroon\", \"CMR\", 120, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [China](http://en.wikipedia.org/wiki/China)\n     * [Market Code: CN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CN)\n     */\n    CN(\"China\", \"CHN\", 156, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Colombia](http://en.wikipedia.org/wiki/Colombia)\n     * [Market Code: CO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CO)\n     */\n    CO(\"Colombia\", \"COL\", 170, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Clipperton Island](http://en.wikipedia.org/wiki/Clipperton_Island)\n     * [Market Code: CP](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CP)\n     */\n    CP(\"Clipperton Island\", \"CPT\", -1, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [Costa Rica](http://en.wikipedia.org/wiki/Costa_Rica)\n     * [Market Code: CR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CR)\n     */\n    CR(\"Costa Rica\", \"CRI\", 188, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Serbia and Montenegro](http://en.wikipedia.org/wiki/Serbia_and_Montenegro)\n     * [Market Code: CS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CS)\n     *\n     *\n     *\n     * Since version 1.16, the value of alpha-3 code of this entry is `SCG`\n     * (not `[CSXX](http://en.wikipedia.org/wiki/ISO_3166-3#CSXX)`).\n     *\n     */\n    CS(\"Serbia and Montenegro\", \"SCG\", 891, Assignment.TRANSITIONALLY_RESERVED),\n\n    /**\n     * [Cuba](http://en.wikipedia.org/wiki/Cuba)\n     * [Market Code: CU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CU)\n     */\n    CU(\"Cuba\", \"CUB\", 192, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Cape Verde](http://en.wikipedia.org/wiki/Cape_Verde)\n     * [Market Code: CV](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CV)\n     */\n    CV(\"Cape Verde\", \"CPV\", 132, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Curaao](http://en.wikipedia.org/wiki/Cura%C3%A7ao)\n     * [Market Code: CW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CW)\n     */\n    CW(\"Cura\\u00E7ao\", \"CUW\", 531, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Christmas Island](http://en.wikipedia.org/wiki/Christmas_Island)\n     * [Market Code: CX](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CX)\n     */\n    CX(\"Christmas Island\", \"CXR\", 162, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Cyprus](http://en.wikipedia.org/wiki/Cyprus)\n     * [Market Code: CY](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CY)\n     */\n    CY(\"Cyprus\", \"CYP\", 196, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Czech Republic](http://en.wikipedia.org/wiki/Czech_Republic)\n     * [Market Code: CZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#CZ)\n     */\n    CZ(\"Czech Republic\", \"CZE\", 203, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Germany](http://en.wikipedia.org/wiki/Germany)\n     * [Market Code: DE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#DE)\n     */\n    DE(\"Germany\", \"DEU\", 276, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Diego Garcia](http://en.wikipedia.org/wiki/Diego_Garcia)\n     * [Market Code: DG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#DG)\n     */\n    DG(\"Diego Garcia\", \"DGA\", -1, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [Djibouti](http://en.wikipedia.org/wiki/Djibouti)\n     * [Market Code: DJ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#DJ)\n     */\n    DJ(\"Djibouti\", \"DJI\", 262, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Denmark](http://en.wikipedia.org/wiki/Denmark)\n     * [Market Code: DK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#DK)\n     */\n    DK(\"Denmark\", \"DNK\", 208, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Dominica](http://en.wikipedia.org/wiki/Dominica)\n     * [Market Code: DM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#DM)\n     */\n    DM(\"Dominica\", \"DMA\", 212, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Dominican Republic](http://en.wikipedia.org/wiki/Dominican_Republic)\n     * [Market Code: DO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#DO)\n     */\n    DO(\"Dominican Republic\", \"DOM\", 214, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Algeria](http://en.wikipedia.org/wiki/Algeria)\n     * [Market Code: DZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#DZ)\n     */\n    DZ(\"Algeria\", \"DZA\", 12, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Ceuta](http://en.wikipedia.org/wiki/Ceuta),\n     * [Melilla](http://en.wikipedia.org/wiki/Melilla)\n     * [Market Code: EA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#EA)\n     */\n    EA(\"Ceuta, Melilla\", null, -1, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [Ecuador](http://en.wikipedia.org/wiki/Ecuador)\n     * [Market Code: EC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#EC)\n     */\n    EC(\"Ecuador\", \"ECU\", 218, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Estonia](http://en.wikipedia.org/wiki/Estonia)\n     * [Market Code: EE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#EE)\n     */\n    EE(\"Estonia\", \"EST\", 233, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Egypt](http://en.wikipedia.org/wiki/Egypt)\n     * [Market Code: EG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#EG)\n     */\n    EG(\"Egypt\", \"EGY\", 818, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Western Sahara](http://en.wikipedia.org/wiki/Western_Sahara)\n     * [Market Code: EH](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#EH)\n     */\n    EH(\"Western Sahara\", \"ESH\", 732, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Eritrea](http://en.wikipedia.org/wiki/Eritrea)\n     * [Market Code: ER](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ER)\n     */\n    ER(\"Eritrea\", \"ERI\", 232, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Spain](http://en.wikipedia.org/wiki/Spain)\n     * [Market Code: ES](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ES)\n     */\n    ES(\"Spain\", \"ESP\", 724, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Ethiopia](http://en.wikipedia.org/wiki/Ethiopia)\n     * [Market Code: ET](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ET)\n     */\n    ET(\"Ethiopia\", \"ETH\", 231, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [European Union](http://en.wikipedia.org/wiki/European_Union)\n     * [Market Code: EU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#EU)\n     */\n    EU(\"European Union\", null, -1, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [Eurozone](http://en.wikipedia.org/wiki/Eurozone)\n     * [Market Code: EZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#EZ)\n     *\n     * @since 1.23\n     */\n    EZ(\"Eurozone\", null, -1, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [Finland](http://en.wikipedia.org/wiki/Finland)\n     * [Market Code: FI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#FI)\n     *\n     * @see .SF\n     */\n    FI(\"Finland\", \"FIN\", 246, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Fiji](http://en.wikipedia.org/wiki/Fiji)\n     * [Market Code: FJ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#)\n     */\n    FJ(\"Fiji\", \"FJI\", 242, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Falkland Islands (Malvinas)](http://en.wikipedia.org/wiki/Falkland_Islands)\n     * [Market Code: FK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#FK)\n     */\n    FK(\"Falkland Islands (Malvinas)\", \"FLK\", 238, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Micronesia, Federated States of](http://en.wikipedia.org/wiki/Federated_States_of_Micronesia)\n     * [Market Code: FM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#FM)\n     */\n    FM(\"Micronesia, Federated States of\", \"FSM\", 583, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Faroe Islands](http://en.wikipedia.org/wiki/Faroe_Islands)\n     * [Market Code: FO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#FO)\n     */\n    FO(\"Faroe Islands\", \"FRO\", 234, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [France](http://en.wikipedia.org/wiki/France)\n     * [Market Code: FR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#FR)\n     */\n    FR(\"France\", \"FRA\", 250, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [France, Metropolitan](http://en.wikipedia.org/wiki/Metropolitan_France)\n     * [Market Code: FX](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#FX)\n     *\n     *\n     *\n     * Since version 1.17, the numeric code of this entry is 249.\n     *\n     */\n    FX(\"France, Metropolitan\", \"FXX\", 249, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [Gabon ](http://en.wikipedia.org/wiki/Gabon)\n     * [Market Code: GA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GA)\n     */\n    GA(\"Gabon\", \"GAB\", 266, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [United Kingdom](http://en.wikipedia.org/wiki/United_Kingdom)\n     * [Market Code: GB](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GB)\n     *\n     * @see .UK\n     */\n    GB(\"United Kingdom\", \"GBR\", 826, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Grenada](http://en.wikipedia.org/wiki/Grenada)\n     * [Market Code: GD](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GD)\n     */\n    GD(\"Grenada\", \"GRD\", 308, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Georgia](http://en.wikipedia.org/wiki/Georgia_(country))\n     * [Market Code: GE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GE)\n     */\n    GE(\"Georgia\", \"GEO\", 268, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [French Guiana](http://en.wikipedia.org/wiki/French_Guiana)\n     * [Market Code: GF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GF)\n     */\n    GF(\"French Guiana\", \"GUF\", 254, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Guernsey](http://en.wikipedia.org/wiki/Guernsey)\n     * [Market Code: GG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GG)\n     */\n    GG(\"Guernsey\", \"GGY\", 831, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Ghana](http://en.wikipedia.org/wiki/Ghana)\n     * [Market Code: GH](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GH)\n     */\n    GH(\"Ghana\", \"GHA\", 288, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Gibraltar](http://en.wikipedia.org/wiki/Gibraltar)\n     * [Market Code: GI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GI)\n     */\n    GI(\"Gibraltar\", \"GIB\", 292, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Greenland](http://en.wikipedia.org/wiki/Greenland)\n     * [Market Code: GL](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GL)\n     */\n    GL(\"Greenland\", \"GRL\", 304, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Gambia](http://en.wikipedia.org/wiki/The_Gambia)\n     * [Market Code: GM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GM)\n     */\n    GM(\"Gambia\", \"GMB\", 270, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Guinea](http://en.wikipedia.org/wiki/Guinea)\n     * [Market Code: GN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GN)\n     */\n    GN(\"Guinea\", \"GIN\", 324, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Guadeloupe](http://en.wikipedia.org/wiki/Guadeloupe)\n     * [Market Code: GP](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GP)\n     */\n    GP(\"Guadeloupe\", \"GLP\", 312, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Equatorial Guinea](http://en.wikipedia.org/wiki/Equatorial_Guinea)\n     * [Market Code: GQ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GQ)\n     */\n    GQ(\"Equatorial Guinea\", \"GNQ\", 226, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Greece](http://en.wikipedia.org/wiki/Greece)\n     * [Market Code: GR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GR)\n     */\n    GR(\"Greece\", \"GRC\", 300, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [South Georgia and the South Sandwich Islands](http://en.wikipedia.org/wiki/South_Georgia_and_the_South_Sandwich_Islands)\n     * [Market Code: GS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GS)\n     */\n    GS(\"South Georgia and the South Sandwich Islands\", \"SGS\", 239, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Guatemala](http://en.wikipedia.org/wiki/Guatemala)\n     * [Market Code: GT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GT)\n     */\n    GT(\"Guatemala\", \"GTM\", 320, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Guam](http://en.wikipedia.org/wiki/Guam)\n     * [Market Code: GU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GU)\n     */\n    GU(\"Guam\", \"GUM\", 316, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Guinea-Bissau](http://en.wikipedia.org/wiki/Guinea-Bissau)\n     * [Market Code: GW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GW)\n     */\n    GW(\"Guinea-Bissau\", \"GNB\", 624, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Guyana](http://en.wikipedia.org/wiki/Guyana)\n     * [Market Code: GY](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#GY)\n     */\n    GY(\"Guyana\", \"GUY\", 328, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Hong Kong](http://en.wikipedia.org/wiki/Hong_Kong)\n     * [Market Code: HK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#HK)\n     */\n    HK(\"Hong Kong\", \"HKG\", 344, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Heard Island and McDonald Islands](http://en.wikipedia.org/wiki/Heard_Island_and_McDonald_Islands)\n     * [Market Code: HM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#HM)\n     */\n    HM(\"Heard Island and McDonald Islands\", \"HMD\", 334, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Honduras](http://en.wikipedia.org/wiki/Honduras)\n     * [Market Code: HN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#HN)\n     */\n    HN(\"Honduras\", \"HND\", 340, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Croatia](http://en.wikipedia.org/wiki/Croatia)\n     * [Market Code: HR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#HR)\n     */\n    HR(\"Croatia\", \"HRV\", 191, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Haiti](http://en.wikipedia.org/wiki/Haiti)\n     * [Market Code: HT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#HT)\n     */\n    HT(\"Haiti\", \"HTI\", 332, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Hungary](http://en.wikipedia.org/wiki/Hungary)\n     * [Market Code: HU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#HU)\n     */\n    HU(\"Hungary\", \"HUN\", 348, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Canary Islands](http://en.wikipedia.org/wiki/Canary_Islands)\n     * [Market Code: IC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IC)\n     */\n    IC(\"Canary Islands\", null, -1, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [Indonesia](http://en.wikipedia.org/wiki/Indonesia)\n     * [Market Code: ID](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ID)\n     */\n    ID(\"Indonesia\", \"IDN\", 360, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Ireland](http://en.wikipedia.org/wiki/Republic_of_Ireland)\n     * [Market Code: IE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IE)\n     */\n    IE(\"Ireland\", \"IRL\", 372, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Israel](http://en.wikipedia.org/wiki/Israel)\n     * [Market Code: IL](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IL)\n     */\n    IL(\"Israel\", \"ISR\", 376, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Isle of Man](http://en.wikipedia.org/wiki/Isle_of_Man)\n     * [Market Code: IM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IM)\n     */\n    IM(\"Isle of Man\", \"IMN\", 833, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [India](http://en.wikipedia.org/wiki/India)\n     * [Market Code: IN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IN)\n     */\n    IN(\"India\", \"IND\", 356, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [British Indian Ocean Territory](http://en.wikipedia.org/wiki/British_Indian_Ocean_Territory)\n     * [Market Code: IO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IO)\n     */\n    IO(\"British Indian Ocean Territory\", \"IOT\", 86, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Iraq](http://en.wikipedia.org/wiki/Iraq)\n     * [Market Code: IQ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IQ)\n     */\n    IQ(\"Iraq\", \"IRQ\", 368, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Iran, Islamic Republic of](http://en.wikipedia.org/wiki/Iran)\n     * [Market Code: IR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IR)\n     */\n    IR(\"Iran, Islamic Republic of\", \"IRN\", 364, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Iceland](http://en.wikipedia.org/wiki/Iceland)\n     * [Market Code: IS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IS)\n     */\n    IS(\"Iceland\", \"ISL\", 352, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Italy](http://en.wikipedia.org/wiki/Italy)\n     * [Market Code: IT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#IT)\n     */\n    IT(\"Italy\", \"ITA\", 380, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Jersey](http://en.wikipedia.org/wiki/Jersey)\n     * [Market Code: JE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#JE)\n     */\n    JE(\"Jersey\", \"JEY\", 832, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Jamaica](http://en.wikipedia.org/wiki/Jamaica)\n     * [Market Code: JM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#JM)\n     */\n    JM(\"Jamaica\", \"JAM\", 388, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Jordan](http://en.wikipedia.org/wiki/Jordan)\n     * [Market Code: JO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#JO)\n     */\n    JO(\"Jordan\", \"JOR\", 400, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Japan](http://en.wikipedia.org/wiki/Japan)\n     * [Market Code: JP](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#JP)\n     */\n    JP(\"Japan\", \"JPN\", 392, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Kenya](http://en.wikipedia.org/wiki/Kenya)\n     * [Market Code: KE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KE)\n     */\n    KE(\"Kenya\", \"KEN\", 404, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Kyrgyzstan](http://en.wikipedia.org/wiki/Kyrgyzstan)\n     * [Market Code: KG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KG)\n     */\n    KG(\"Kyrgyzstan\", \"KGZ\", 417, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Cambodia](http://en.wikipedia.org/wiki/Cambodia)\n     * [Market Code: KH](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KH)\n     */\n    KH(\"Cambodia\", \"KHM\", 116, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Kiribati](http://en.wikipedia.org/wiki/Kiribati)\n     * [Market Code: KI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KI)\n     */\n    KI(\"Kiribati\", \"KIR\", 296, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Comoros](http://en.wikipedia.org/wiki/Comoros)\n     * [Market Code: KM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KM)\n     */\n    KM(\"Comoros\", \"COM\", 174, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Saint Kitts and Nevis](http://en.wikipedia.org/wiki/Saint_Kitts_and_Nevis)\n     * [Market Code: KN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KN)\n     */\n    KN(\"Saint Kitts and Nevis\", \"KNA\", 659, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Korea, Democratic People's Republic of](http://en.wikipedia.org/wiki/North_Korea)\n     * [Market Code: KP](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KP)\n     */\n    KP(\"Korea, Democratic People's Republic of\", \"PRK\", 408, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Korea, Republic of](http://en.wikipedia.org/wiki/South_Korea)\n     * [Market Code: KR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KR)\n     */\n    KR(\"Korea, Republic of\", \"KOR\", 410, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Kuwait](http://en.wikipedia.org/wiki/Kuwait)\n     * [Market Code: KW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KW)\n     */\n    KW(\"Kuwait\", \"KWT\", 414, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Cayman Islands](http://en.wikipedia.org/wiki/Cayman_Islands)\n     * [Market Code: KY](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KY)\n     */\n    KY(\"Cayman Islands\", \"CYM\", 136, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Kazakhstan](http://en.wikipedia.org/wiki/Kazakhstan)\n     * [Market Code: KZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#KZ)\n     */\n    KZ(\"Kazakhstan\", \"KAZ\", 398, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Lao People's Democratic Republic](http://en.wikipedia.org/wiki/Laos)\n     * [Market Code: LA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LA)\n     */\n    LA(\"Lao People's Democratic Republic\", \"LAO\", 418, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Lebanon](http://en.wikipedia.org/wiki/Lebanon)\n     * [Market Code: LB](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LB)\n     */\n    LB(\"Lebanon\", \"LBN\", 422, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Saint Lucia](http://en.wikipedia.org/wiki/Saint_Lucia)\n     * [Market Code: LC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LC)\n     */\n    LC(\"Saint Lucia\", \"LCA\", 662, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Liechtenstein](http://en.wikipedia.org/wiki/Liechtenstein)\n     * [Market Code: LI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LI)\n     */\n    LI(\"Liechtenstein\", \"LIE\", 438, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Sri Lanka](http://en.wikipedia.org/wiki/Sri_Lanka)\n     * [Market Code: LK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LK)\n     */\n    LK(\"Sri Lanka\", \"LKA\", 144, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Liberia](http://en.wikipedia.org/wiki/Liberia)\n     * [Market Code: LR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LR)\n     */\n    LR(\"Liberia\", \"LBR\", 430, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Lesotho](http://en.wikipedia.org/wiki/Lesotho)\n     * [Market Code: LS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LS)\n     */\n    LS(\"Lesotho\", \"LSO\", 426, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Lithuania](http://en.wikipedia.org/wiki/Lithuania)\n     * [Market Code: LT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LT)\n     */\n    LT(\"Lithuania\", \"LTU\", 440, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Luxembourg](http://en.wikipedia.org/wiki/Luxembourg)\n     * [Market Code: LU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LU)\n     */\n    LU(\"Luxembourg\", \"LUX\", 442, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Latvia](http://en.wikipedia.org/wiki/Latvia)\n     * [Market Code: LV](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LV)\n     */\n    LV(\"Latvia\", \"LVA\", 428, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Libya](http://en.wikipedia.org/wiki/Libya)\n     * [Market Code: LY](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#LY)\n     */\n    LY(\"Libya\", \"LBY\", 434, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Morocco](http://en.wikipedia.org/wiki/Morocco)\n     * [Market Code: MA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MA)\n     */\n    MA(\"Morocco\", \"MAR\", 504, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Monaco](http://en.wikipedia.org/wiki/Monaco)\n     * [Market Code: MC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MC)\n     */\n    MC(\"Monaco\", \"MCO\", 492, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Moldova, Republic of](http://en.wikipedia.org/wiki/Moldova)\n     * [Market Code: MD](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MD)\n     */\n    MD(\"Moldova, Republic of\", \"MDA\", 498, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Montenegro](http://en.wikipedia.org/wiki/Montenegro)\n     * [Market Code: ME](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ME)\n     */\n    ME(\"Montenegro\", \"MNE\", 499, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Saint Martin (French part)](http://en.wikipedia.org/wiki/Collectivity_of_Saint_Martin)\n     * [Market Code: MF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MF)\n     */\n    MF(\"Saint Martin (French part)\", \"MAF\", 663, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Madagascar](http://en.wikipedia.org/wiki/Madagascar)\n     * [Market Code: MG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MG)\n     */\n    MG(\"Madagascar\", \"MDG\", 450, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Marshall Islands](http://en.wikipedia.org/wiki/Marshall_Islands)\n     * [Market Code: MH](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MH)\n     */\n    MH(\"Marshall Islands\", \"MHL\", 584, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [North Macedonia, Republic of](https://en.wikipedia.org/wiki/North_Macedonia)\n     * [Market Code: MK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MK)\n     */\n    MK(\"North Macedonia, Republic of\", \"MKD\", 807, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Mali](http://en.wikipedia.org/wiki/Mali)\n     * [Market Code: ML](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ML)\n     */\n    ML(\"Mali\", \"MLI\", 466, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Myanmar](http://en.wikipedia.org/wiki/Myanmar)\n     * [Market Code: MM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MM)\n     *\n     * @see .BU\n     */\n    MM(\"Myanmar\", \"MMR\", 104, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Mongolia](http://en.wikipedia.org/wiki/Mongolia)\n     * [Market Code: MN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MN)\n     */\n    MN(\"Mongolia\", \"MNG\", 496, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Macao](http://en.wikipedia.org/wiki/Macau)\n     * [Market Code: MO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MO)\n     */\n    MO(\"Macao\", \"MAC\", 446, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Northern Mariana Islands](http://en.wikipedia.org/wiki/Northern_Mariana_Islands)\n     * [Market Code: MP](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MP)\n     */\n    MP(\"Northern Mariana Islands\", \"MNP\", 580, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Martinique](http://en.wikipedia.org/wiki/Martinique)\n     * [Market Code: MQ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MQ)\n     */\n    MQ(\"Martinique\", \"MTQ\", 474, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Mauritania](http://en.wikipedia.org/wiki/Mauritania)\n     * [Market Code: MR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MR)\n     */\n    MR(\"Mauritania\", \"MRT\", 478, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Montserrat](http://en.wikipedia.org/wiki/Montserrat)\n     * [Market Code: MS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MS)\n     */\n    MS(\"Montserrat\", \"MSR\", 500, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Malta](http://en.wikipedia.org/wiki/Malta)\n     * [Market Code: MT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MT)\n     */\n    MT(\"Malta\", \"MLT\", 470, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Mauritius](http://en.wikipedia.org/wiki/Mauritius)\n     * [Market Code: MU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MU)\n     */\n    MU(\"Mauritius\", \"MUS\", 480, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Maldives](http://en.wikipedia.org/wiki/Maldives)\n     * [Market Code: MV](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MV)\n     */\n    MV(\"Maldives\", \"MDV\", 462, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Malawi](http://en.wikipedia.org/wiki/Malawi)\n     * [Market Code: MW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MW)\n     */\n    MW(\"Malawi\", \"MWI\", 454, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Mexico](http://en.wikipedia.org/wiki/Mexico)\n     * [Market Code: MX](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MX)\n     */\n    MX(\"Mexico\", \"MEX\", 484, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Malaysia](http://en.wikipedia.org/wiki/Malaysia)\n     * [Market Code: MY](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MY)\n     */\n    MY(\"Malaysia\", \"MYS\", 458, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Mozambique](http://en.wikipedia.org/wiki/Mozambique)\n     * [Market Code: MZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#MZ)\n     */\n    MZ(\"Mozambique\", \"MOZ\", 508, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Namibia](http://en.wikipedia.org/wiki/Namibia)\n     * [Market Code: NA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NA)\n     */\n    NA(\"Namibia\", \"NAM\", 516, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [New Caledonia](http://en.wikipedia.org/wiki/New_Caledonia)\n     * [Market Code: NC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NC)\n     */\n    NC(\"New Caledonia\", \"NCL\", 540, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Niger](http://en.wikipedia.org/wiki/Niger)\n     * [Market Code: NE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NE)\n     */\n    NE(\"Niger\", \"NER\", 562, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Norfolk Island](http://en.wikipedia.org/wiki/Norfolk_Island)\n     * [Market Code: NF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NF)\n     */\n    NF(\"Norfolk Island\", \"NFK\", 574, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Nigeria](http://en.wikipedia.org/wiki/Nigeria)\n     * [Market Code: NG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NG)\n     */\n    NG(\"Nigeria\", \"NGA\", 566, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Nicaragua](http://en.wikipedia.org/wiki/Nicaragua)\n     * [Market Code: NI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NI)\n     */\n    NI(\"Nicaragua\", \"NIC\", 558, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Netherlands](http://en.wikipedia.org/wiki/Netherlands)\n     * [Market Code: NL](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NL)\n     */\n    NL(\"Netherlands\", \"NLD\", 528, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Norway](http://en.wikipedia.org/wiki/Norway)\n     * [Market Code: NO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NO)\n     */\n    NO(\"Norway\", \"NOR\", 578, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Nepal](http://en.wikipedia.org/wiki/Nepal)\n     * [Market Code: NP](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NP)\n     */\n    NP(\"Nepal\", \"NPL\", 524, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Nauru](http://en.wikipedia.org/wiki/Nauru)\n     * [Market Code: NR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NR)\n     */\n    NR(\"Nauru\", \"NRU\", 520, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Neutral Zone](http://en.wikipedia.org/wiki/Saudi%E2%80%93Iraqi_neutral_zone)\n     * [Market Code: NT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NT)\n     *\n     *\n     *\n     * Since version 1.16, the value of alpha-3 code of this entry is `NTZ`\n     * (not `[NTHH](http://en.wikipedia.org/wiki/ISO_3166-3#NTHH)`).\n     *\n     */\n    NT(\"Neutral Zone\", \"NTZ\", 536, Assignment.TRANSITIONALLY_RESERVED),\n\n    /**\n     * [Niue](http://en.wikipedia.org/wiki/Niue)\n     * [Market Code: NU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NU)\n     */\n    NU(\"Niue\", \"NIU\", 570, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [New Zealand](http://en.wikipedia.org/wiki/New_Zealand)\n     * [Market Code: NZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#NZ)\n     */\n    NZ(\"New Zealand\", \"NZL\", 554, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Oman](http://en.wikipedia.org/wiki/Oman\"\")\n     * [Market Code: OM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#OM)\n     */\n    OM(\"Oman\", \"OMN\", 512, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Panama](http://en.wikipedia.org/wiki/Panama)\n     * [Market Code: PA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PA)\n     */\n    PA(\"Panama\", \"PAN\", 591, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Peru](http://en.wikipedia.org/wiki/Peru)\n     * [Market Code: PE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PE)\n     */\n    PE(\"Peru\", \"PER\", 604, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [French Polynesia](http://en.wikipedia.org/wiki/French_Polynesia)\n     * [Market Code: PF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PF)\n     */\n    PF(\"French Polynesia\", \"PYF\", 258, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Papua New Guinea](http://en.wikipedia.org/wiki/Papua_New_Guinea)\n     * [Market Code: PG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PG)\n     */\n    PG(\"Papua New Guinea\", \"PNG\", 598, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Philippines](http://en.wikipedia.org/wiki/Philippines)\n     * [Market Code: PH](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PH)\n     */\n    PH(\"Philippines\", \"PHL\", 608, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Pakistan](http://en.wikipedia.org/wiki/Pakistan)\n     * [Market Code: PK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PK)\n     */\n    PK(\"Pakistan\", \"PAK\", 586, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Poland](http://en.wikipedia.org/wiki/Poland)\n     * [Market Code: PL](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PL)\n     */\n    PL(\"Poland\", \"POL\", 616, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Saint Pierre and Miquelon](http://en.wikipedia.org/wiki/Saint_Pierre_and_Miquelon)\n     * [Market Code: PM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PM)\n     */\n    PM(\"Saint Pierre and Miquelon\", \"SPM\", 666, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Pitcairn](http://en.wikipedia.org/wiki/Pitcairn_Islands)\n     * [Market Code: PN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PN)\n     */\n    PN(\"Pitcairn\", \"PCN\", 612, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Puerto Rico](http://en.wikipedia.org/wiki/Puerto_Rico)\n     * [Market Code: PR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PR)\n     */\n    PR(\"Puerto Rico\", \"PRI\", 630, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Palestine, State of](http://en.wikipedia.org/wiki/Palestinian_territories)\n     * [Market Code: PS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PS)\n     */\n    PS(\"Palestine, State of\", \"PSE\", 275, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Portugal](http://en.wikipedia.org/wiki/Portugal)\n     * [Market Code: PT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PT)\n     */\n    PT(\"Portugal\", \"PRT\", 620, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Palau](http://en.wikipedia.org/wiki/Palau)\n     * [Market Code: PW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PW)\n     */\n    PW(\"Palau\", \"PLW\", 585, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Paraguay](http://en.wikipedia.org/wiki/Paraguay)\n     * [Market Code: PY](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#PY)\n     */\n    PY(\"Paraguay\", \"PRY\", 600, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Qatar](http://en.wikipedia.org/wiki/Qatar)\n     * [Market Code: QA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#QA)\n     */\n    QA(\"Qatar\", \"QAT\", 634, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Runion](http://en.wikipedia.org/wiki/R%C3%A9union)\n     * [Market Code: RE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#RE)\n     */\n    RE(\"R\\u00E9union\", \"REU\", 638, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Romania](http://en.wikipedia.org/wiki/Romania)\n     * [Market Code: RO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#RO)\n     */\n    RO(\"Romania\", \"ROU\", 642, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Serbia](http://en.wikipedia.org/wiki/Serbia)\n     * [Market Code: RS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#RS)\n     */\n    RS(\"Serbia\", \"SRB\", 688, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Russian Federation](http://en.wikipedia.org/wiki/Russia)\n     * [Market Code: RU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#RU)\n     */\n    RU(\"Russian Federation\", \"RUS\", 643, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Rwanda](http://en.wikipedia.org/wiki/Rwanda)\n     * [Market Code: RW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#RW)\n     */\n    RW(\"Rwanda\", \"RWA\", 646, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Saudi Arabia](http://en.wikipedia.org/wiki/Saudi_Arabia)\n     * [Market Code: SA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SA)\n     */\n    SA(\"Saudi Arabia\", \"SAU\", 682, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Solomon Islands](http://en.wikipedia.org/wiki/Solomon_Islands)\n     * [Market Code: SB](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SB)\n     */\n    SB(\"Solomon Islands\", \"SLB\", 90, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Seychelles](http://en.wikipedia.org/wiki/Seychelles)\n     * [Market Code: SC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SC)\n     */\n    SC(\"Seychelles\", \"SYC\", 690, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Sudan](http://en.wikipedia.org/wiki/Sudan)\n     * [Market Code: SD](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SD)\n     */\n    SD(\"Sudan\", \"SDN\", 729, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Sweden](http://en.wikipedia.org/wiki/Sweden)\n     * [Market Code: SE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SE)\n     */\n    SE(\"Sweden\", \"SWE\", 752, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Finland](http://en.wikipedia.org/wiki/Finland)\n     * [Market Code: SF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SF)\n     *\n     * @see .FI\n     */\n    SF(\"Finland\", \"FIN\", 246, Assignment.TRANSITIONALLY_RESERVED),\n\n    /**\n     * [Singapore](http://en.wikipedia.org/wiki/Singapore)\n     * [Market Code: SG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SG)\n     */\n    SG(\"Singapore\", \"SGP\", 702, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Saint Helena, Ascension and Tristan da Cunha](http://en.wikipedia.org/wiki/Saint_Helena,_Ascension_and_Tristan_da_Cunha)\n     * [Market Code: SH](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SH)\n     */\n    SH(\"Saint Helena, Ascension and Tristan da Cunha\", \"SHN\", 654, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Slovenia](http://en.wikipedia.org/wiki/Slovenia)\n     * [Market Code: SI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SI)\n     */\n    SI(\"Slovenia\", \"SVN\", 705, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Svalbard and Jan Mayen](http://en.wikipedia.org/wiki/Svalbard_and_Jan_Mayen)\n     * [Market Code: SJ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SJ)\n     */\n    SJ(\"Svalbard and Jan Mayen\", \"SJM\", 744, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Slovakia](http://en.wikipedia.org/wiki/Slovakia)\n     * [Market Code: SK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SK)\n     */\n    SK(\"Slovakia\", \"SVK\", 703, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Sierra Leone](http://en.wikipedia.org/wiki/Sierra_Leone)\n     * [Market Code: SL](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SL)\n     */\n    SL(\"Sierra Leone\", \"SLE\", 694, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [San Marino](http://en.wikipedia.org/wiki/San_Marino)\n     * [Market Code: SM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SM)\n     */\n    SM(\"San Marino\", \"SMR\", 674, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Senegal](http://en.wikipedia.org/wiki/Senegal)\n     * [Market Code: SN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SN)\n     */\n    SN(\"Senegal\", \"SEN\", 686, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Somalia](http://en.wikipedia.org/wiki/Somalia)\n     * [Market Code: SO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SO)\n     */\n    SO(\"Somalia\", \"SOM\", 706, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Suriname](http://en.wikipedia.org/wiki/Suriname)\n     * [Market Code: SR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SR)\n     */\n    SR(\"Suriname\", \"SUR\", 740, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [South Sudan](http://en.wikipedia.org/wiki/South_Sudan)\n     * [Market Code: SS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SS)\n     */\n    SS(\"South Sudan\", \"SSD\", 728, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Sao Tome and Principe](http://en.wikipedia.org/wiki/S%C3%A3o_Tom%C3%A9_and_Pr%C3%ADncipe)\n     * [Market Code: ST](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ST)\n     */\n    ST(\"Sao Tome and Principe\", \"STP\", 678, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [USSR](http://en.wikipedia.org/wiki/Soviet_Union)\n     * [Market Code: SU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SU)\n     *\n     *\n     *\n     * Since version 1.17, the numeric code of this entry is 810.\n     *\n     */\n    SU(\"USSR\", \"SUN\", 810, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [El Salvador](http://en.wikipedia.org/wiki/El_Salvador)\n     * [Market Code: SV](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SV)\n     */\n    SV(\"El Salvador\", \"SLV\", 222, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Sint Maarten (Dutch part)](http://en.wikipedia.org/wiki/Sint_Maarten)\n     * [Market Code: SX](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SX)\n     */\n    SX(\"Sint Maarten (Dutch part)\", \"SXM\", 534, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Syrian Arab Republic](http://en.wikipedia.org/wiki/Syria)\n     * [Market Code: SY](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SY)\n     */\n    SY(\"Syrian Arab Republic\", \"SYR\", 760, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Swaziland](http://en.wikipedia.org/wiki/Swaziland)\n     * [Market Code: SZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#SZ)\n     */\n    SZ(\"Swaziland\", \"SWZ\", 748, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Tristan da Cunha](http://en.wikipedia.org/wiki/Tristan_da_Cunha)\n     * [[TA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TA), TAA, -1,\n     * Exceptionally reserved.\n     */\n    TA(\"Tristan da Cunha\", \"TAA\", -1, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [Turks and Caicos Islands](http://en.wikipedia.org/wiki/Turks_and_Caicos_Islands)\n     * [Market Code: TC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TC)\n     */\n    TC(\"Turks and Caicos Islands\", \"TCA\", 796, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Chad](http://en.wikipedia.org/wiki/Chad)\n     * [Market Code: TD](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TD)\n     */\n    TD(\"Chad\", \"TCD\", 148, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [French Southern Territories](http://en.wikipedia.org/wiki/French_Southern_and_Antarctic_Lands)\n     * [Market Code: TF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TF)\n     */\n    TF(\"French Southern Territories\", \"ATF\", 260, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Togo](http://en.wikipedia.org/wiki/Togo)\n     * [Market Code: TG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TG)\n     */\n    TG(\"Togo\", \"TGO\", 768, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Thailand](http://en.wikipedia.org/wiki/Thailand)\n     * [Market Code: TH](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TH)\n     */\n    TH(\"Thailand\", \"THA\", 764, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Tajikistan](http://en.wikipedia.org/wiki/Tajikistan)\n     * [Market Code: TJ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TJ)\n     */\n    TJ(\"Tajikistan\", \"TJK\", 762, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Tokelau](http://en.wikipedia.org/wiki/Tokelau)\n     * [Market Code: TK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TK)\n     */\n    TK(\"Tokelau\", \"TKL\", 772, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Timor-Leste](http://en.wikipedia.org/wiki/East_Timor)\n     * [Market Code: TL](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TL)\n     *\n     * @see .TM\n     */\n    TL(\"Timor-Leste\", \"TLS\", 626, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Turkmenistan](http://en.wikipedia.org/wiki/Turkmenistan)\n     * [Market Code: TM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TM)\n     */\n    TM(\"Turkmenistan\", \"TKM\", 795, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Tunisia](http://en.wikipedia.org/wiki/Tunisia)\n     * [Market Code: TN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TN)\n     */\n    TN(\"Tunisia\", \"TUN\", 788, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Tonga](http://en.wikipedia.org/wiki/Tonga)\n     * [Market Code: TO](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TO)\n     */\n    TO(\"Tonga\", \"TON\", 776, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [East Timor](http://en.wikipedia.org/wiki/East_Timor)\n     * [Market Code: TP](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TP)\n     *\n     *\n     *\n     * Since version 1.16, the value of alpha-3 code of this entry is `TMP`\n     * (not `[TPTL](http://en.wikipedia.org/wiki/ISO_3166-3#TPTL)`).\n     *\n     *\n     *\n     *\n     * Since version 1.17, the numeric code of this entry is 626.\n     *\n     *\n     * @see .TL\n     */\n    TP(\"East Timor\", \"TMP\", 626, Assignment.TRANSITIONALLY_RESERVED),\n\n    /**\n     * [Turkey](http://en.wikipedia.org/wiki/Turkey)\n     * [Market Code: TR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TR)\n     */\n    TR(\"Turkey\", \"TUR\", 792, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Trinidad and Tobago](http://en.wikipedia.org/wiki/Trinidad_and_Tobago)\n     * [Market Code: TT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TT)\n     */\n    TT(\"Trinidad and Tobago\", \"TTO\", 780, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Tuvalu](http://en.wikipedia.org/wiki/Tuvalu)\n     * [Market Code: TV](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TV)\n     */\n    TV(\"Tuvalu\", \"TUV\", 798, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Taiwan, Province of China](http://en.wikipedia.org/wiki/Taiwan)\n     * [Market Code: TW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TW)\n     */\n    TW(\"Taiwan, Province of China\", \"TWN\", 158, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Tanzania, United Republic of](http://en.wikipedia.org/wiki/Tanzania)\n     * [Market Code: TZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#TZ)\n     */\n    TZ(\"Tanzania, United Republic of\", \"TZA\", 834, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Ukraine](http://en.wikipedia.org/wiki/Ukraine)\n     * [Market Code: UA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#UA)\n     */\n    UA(\"Ukraine\", \"UKR\", 804, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Uganda](http://en.wikipedia.org/wiki/Uganda)\n     * [Market Code: UG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#UG)\n     */\n    UG(\"Uganda\", \"UGA\", 800, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [United Kingdom](http://en.wikipedia.org/wiki/United_Kingdom)\n     * [Market Code: UK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#UK)\n     *\n     *\n     *\n     * Since version 1.17, the numeric code of this entry is 826.\n     *\n     *\n     * @see .GB\n     */\n    UK(\"United Kingdom\", null, 826, Assignment.EXCEPTIONALLY_RESERVED),\n\n    /**\n     * [United States Minor Outlying Islands](http://en.wikipedia.org/wiki/United_States_Minor_Outlying_Islands)\n     * [Market Code: UM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#UM)\n     */\n    UM(\"United States Minor Outlying Islands\", \"UMI\", 581, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [United States](http://en.wikipedia.org/wiki/United_States)\n     * [Market Code: US](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#US)\n     */\n    US(\"United States\", \"USA\", 840, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Uruguay](http://en.wikipedia.org/wiki/Uruguay)\n     * [Market Code: UY](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#UY)\n     */\n    UY(\"Uruguay\", \"URY\", 858, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Uzbekistan](http://en.wikipedia.org/wiki/Uzbekistan)\n     * [Market Code: UZ](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#UZ)\n     */\n    UZ(\"Uzbekistan\", \"UZB\", 860, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Holy See (Vatican City State)](http://en.wikipedia.org/wiki/Vatican_City)\n     * [Market Code: VA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#VA)\n     */\n    VA(\"Holy See (Vatican City State)\", \"VAT\", 336, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Saint Vincent and the Grenadines](http://en.wikipedia.org/wiki/Saint_Vincent_and_the_Grenadines)\n     * [Market Code: VC](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#VC)\n     */\n    VC(\"Saint Vincent and the Grenadines\", \"VCT\", 670, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Venezuela, Bolivarian Republic of](http://en.wikipedia.org/wiki/Venezuela)\n     * [Market Code: VE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#VE)\n     */\n    VE(\"Venezuela, Bolivarian Republic of\", \"VEN\", 862, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Virgin Islands, British](http://en.wikipedia.org/wiki/British_Virgin_Islands)\n     * [Market Code: VG](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#VG)\n     */\n    VG(\"Virgin Islands, British\", \"VGB\", 92, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Virgin Islands, U.S.](http://en.wikipedia.org/wiki/United_States_Virgin_Islands)\n     * [Market Code: VI](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#VI)\n     */\n    VI(\"Virgin Islands, U.S.\", \"VIR\", 850, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Viet Nam](http://en.wikipedia.org/wiki/Vietnam)\n     * [Market Code: VN](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#VN)\n     */\n    VN(\"Viet Nam\", \"VNM\", 704, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Vanuatu](http://en.wikipedia.org/wiki/Vanuatu)\n     * [Market Code: VU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#VU)\n     */\n    VU(\"Vanuatu\", \"VUT\", 548, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Wallis and Futuna](http://en.wikipedia.org/wiki/Wallis_and_Futuna)\n     * [Market Code: WF](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#WF)\n     */\n    WF(\"Wallis and Futuna\", \"WLF\", 876, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Samoa](http://en.wikipedia.org/wiki/Samoa)\n     * [Market Code: WS](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#WS)\n     */\n    WS(\"Samoa\", \"WSM\", 882, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Kosovo, Republic of](http://en.wikipedia.org/wiki/Kosovo)\n     * [Market Code: XK](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#XK)\n     */\n    XK(\"Kosovo, Republic of\", \"XKX\", -1, Assignment.USER_ASSIGNED),\n\n    /**\n     * [Yemen](http://en.wikipedia.org/wiki/Yemen)\n     * [Market Code: YE](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#YE)\n     */\n    YE(\"Yemen\", \"YEM\", 887, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Mayotte](http://en.wikipedia.org/wiki/Mayotte)\n     * [Market Code: YT](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#YT)\n     */\n    YT(\"Mayotte\", \"MYT\", 175, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Yugoslavia](http://en.wikipedia.org/wiki/Yugoslavia)\n     * [Market Code: YU](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#YU)\n     *\n     *\n     *\n     * Since version 1.16, the value of alpha-3 code of this entry is `YUG`\n     * (not `[YUCS](http://en.wikipedia.org/wiki/ISO_3166-3#YUCS)`).\n     *\n     */\n    YU(\"Yugoslavia\", \"YUG\", 890, Assignment.TRANSITIONALLY_RESERVED),\n\n    /**\n     * [South Africa](http://en.wikipedia.org/wiki/South_Africa)\n     * [Market Code: ZA](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ZA)\n     */\n    ZA(\"South Africa\", \"ZAF\", 710, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Zambia](http://en.wikipedia.org/wiki/Zambia)\n     * [Market Code: ZM](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ZM)\n     */\n    ZM(\"Zambia\", \"ZMB\", 894, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * [Zaire](http://en.wikipedia.org/wiki/Zaire)\n     * [Market Code: ZR](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ZR)\n     *\n     *\n     *\n     * Since version 1.16, the value of alpha-3 code of this entry is `ZAR`\n     * (not `[ZRCD](http://en.wikipedia.org/wiki/ISO_3166-3#ZRCD)`).\n     *\n     *\n     *\n     *\n     * Since version 1.17, the numeric code of this entry is 180.\n     *\n     *\n     * @see .CD\n     */\n    ZR(\"Zaire\", \"ZAR\", 180, Assignment.TRANSITIONALLY_RESERVED),\n\n    /**\n     * [Zimbabwe](http://en.wikipedia.org/wiki/Zimbabwe)\n     * [Market Code: ZW](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#ZW)\n     */\n    ZW(\"Zimbabwe\", \"ZWE\", 716, Assignment.OFFICIALLY_ASSIGNED),\n\n    /**\n     * A special Market for endpoints to return content available in the user's own market\n     */\n    FROM_TOKEN(\"from_token\", \"ZZZ\", 999, Assignment.NOT_USED);\n\n    /**\n     * Code assignment state in [ISO 3166-1](http://en.wikipedia.org/wiki/ISO_3166-1).\n     *\n     * @see [Decoding table of ISO 3166-1 alpha-2 codes](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2.Decoding_table)\n     */\n    public enum class Assignment {\n        /**\n         * [Officially assigned](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements).\n         *\n         * Assigned to a country, territory, or area of geographical interest.\n         */\n        OFFICIALLY_ASSIGNED,\n\n        /**\n         * [User assigned](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#User-assigned_code_elements).\n         *\n         * Free for assignment at the disposal of users.\n         */\n        USER_ASSIGNED,\n\n        /**\n         * [Exceptionally reserved](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Exceptional_reservations).\n         *\n         * Reserved on request for restricted use.\n         */\n        EXCEPTIONALLY_RESERVED,\n\n        /**\n         * [Transitionally reserved](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Transitional_reservations).\n         *\n         * Deleted from ISO 3166-1 but reserved transitionally.\n         */\n        TRANSITIONALLY_RESERVED,\n\n        /**\n         * [Indeterminately reserved](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Indeterminate_reservations).\n         *\n         * Used in coding systems associated with ISO 3166-1.\n         */\n        INDETERMINATELY_RESERVED,\n\n        /**\n         * [Not used](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Codes_currently_agreed_not_to_use).\n         *\n         * Not used in ISO 3166-1 in deference to international property\n         * organization names.\n         */\n        NOT_USED\n    }\n}\n\ninternal fun Market.getSpotifyId(): String {\n    return if (this == Market.FROM_TOKEN) this.marketName else this.name\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/Platform.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\n/**\n * Actual platforms that this program can be run on.\n */\npublic enum class Platform {\n    Jvm,\n    Android,\n    Js,\n    Native\n}\n\npublic expect val currentApiPlatform: Platform\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/TimeUnit.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\n/**\n * Represents a unit of time\n */\npublic enum class TimeUnit(private val multiplier: Long) {\n    Milliseconds(1),\n    Seconds(1000),\n    Minutes(60000);\n\n    public fun toMillis(duration: Long): Long = duration * multiplier\n}\n"
  },
  {
    "path": "src/commonMain/kotlin/com.adamratzman.spotify/utils/Utils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.models.ResultEnum\nimport kotlinx.serialization.json.JsonElement\n\n/**\n * The current time in milliseconds since UNIX epoch.\n */\npublic expect fun getCurrentTimeMs(): Long\n\n/**\n * Format date to ISO 8601 format\n */\ninternal expect fun formatDate(date: Long): String\n\ninternal fun jsonMap(vararg pairs: Pair<String, JsonElement>) = pairs.toMap().toMutableMap()\n\ninternal suspend inline fun <T> catch(catchInternalServerError: Boolean = false, crossinline function: suspend () -> T): T? {\n    return try {\n        function()\n    } catch (e: SpotifyException.BadRequestException) {\n        if (e.statusCode !in listOf(400, 404)) throw e\n        else if (e.statusCode in 500..599 && catchInternalServerError) throw e\n        \n        // we should only ignore the exception if it's 400 or 404. Otherwise, it's a larger issue\n        null\n    }\n}\n\ninternal fun <T : ResultEnum> Array<T>.match(identifier: String) =\n    firstOrNull { it.retrieveIdentifier().toString().equals(identifier, true) }\n\npublic expect fun <T> runBlockingOnJvmAndNative(block: suspend () -> T): T\n"
  },
  {
    "path": "src/commonNonJvmTargetsTest/kotlin/com.adamratzman.spotify/CommonImpl.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify\n\nactual fun areLivePkceTestsEnabled(): Boolean = false\nactual fun arePlayerTestsEnabled(): Boolean = false\nactual fun isHttpLoggingEnabled(): Boolean = false\nactual fun getTestTokenString(): String? = null\nactual fun getTestRedirectUri(): String? = null\nactual fun getTestClientId(): String? = null\nactual fun getTestClientSecret(): String? = null\nactual fun getResponseCacher(): ResponseCacher? = null\n\nactual suspend fun buildSpotifyApi(testClassQualifiedName: String, testName: String): GenericSpotifyApi? = null\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/AbstractTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify\n\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\n\nabstract class AbstractTest<T : GenericSpotifyApi> {\n    lateinit var api: T\n    var apiInitialized: Boolean = false\n    val testClassQualifiedName = this::class.simpleName!!\n\n    suspend inline fun <reified Z : T> buildApi(testName: String) {\n        if (apiInitialized) return\n        var requestNumber = 0 // local to the specific test. used to fake request responses\n\n        val api = buildSpotifyApi(testClassQualifiedName, testName)\n        if (api != null && api is Z) {\n            api.spotifyApiOptions.retryOnInternalServerErrorTimes = 10\n            api.spotifyApiOptions.httpResponseSubscriber = { request, response ->\n                getResponseCacher()?.cacheResponse(\n                    testClassQualifiedName,\n                    testName,\n                    requestNumber,\n                    request,\n                    response\n                )\n                requestNumber++\n            }\n\n            this.api = api\n            apiInitialized = true\n        }\n    }\n\n    suspend fun isApiInitialized(): Boolean {\n        return if (apiInitialized) {\n            true\n        } else {\n            println(\"Api is not initialized or does not match the expected type. buildSpotifyApi returns ${buildSpotifyApi(testClassQualifiedName, \"n/a\")}\")\n            false\n        }\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/Common.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify\n\nimport com.adamratzman.spotify.http.HttpRequest\nimport com.adamratzman.spotify.http.HttpResponse\nimport kotlinx.coroutines.CoroutineScope\nimport kotlinx.coroutines.Dispatchers\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlinx.coroutines.test.runTest\nimport kotlinx.coroutines.withContext\nimport kotlinx.serialization.Serializable\nimport kotlin.test.assertTrue\nimport kotlin.time.Duration.Companion.seconds\n\nexpect fun areLivePkceTestsEnabled(): Boolean\nexpect fun arePlayerTestsEnabled(): Boolean\nexpect fun getTestClientId(): String?\nexpect fun getTestClientSecret(): String?\nexpect fun getTestRedirectUri(): String?\nexpect fun getTestTokenString(): String?\nexpect fun isHttpLoggingEnabled(): Boolean\nexpect suspend fun buildSpotifyApi(testClassQualifiedName: String, testName: String): GenericSpotifyApi?\nexpect fun getResponseCacher(): ResponseCacher?\n\ninterface ResponseCacher {\n    val cachedResponsesDirectoryPath: String\n    fun cacheResponse(className: String, testName: String, responseNumber: Int, request: HttpRequest, response: HttpResponse)\n}\n\nsuspend inline fun <reified T : Throwable> assertFailsWithSuspend(crossinline block: suspend () -> Unit) {\n    val noExceptionMessage = \"Expected ${T::class.simpleName} exception to be thrown, but no exception was thrown.\"\n    try {\n        block()\n        throw AssertionError(noExceptionMessage)\n    } catch (exception: Throwable) {\n        if (exception.message == noExceptionMessage) throw exception\n        assertTrue(\n            exception is T,\n            \"Expected ${T::class.simpleName} exception to be thrown, but exception ${exception::class.simpleName} (${exception.message}) was thrown.\"\n        )\n    }\n}\n\nfun <T> runTestOnDefaultDispatcher(block: suspend CoroutineScope.() -> T): TestResult = runTestOnDefaultDispatcher(block, shouldRetry = true)\n\nfun <T> runTestOnDefaultDispatcher(block: suspend CoroutineScope.() -> T, shouldRetry: Boolean): TestResult = runTest(timeout = 60.seconds) {\n    withContext(Dispatchers.Default) {\n        try {\n            block()\n        } catch (e: SpotifyException.BadRequestException) {\n            // we shouldn't fail just because we received a 5xx from spotify\n            if (e.statusCode in 500..599) {\n                println(\"Received 5xx for block.\")\n            }\n\n            if (shouldRetry) runTestOnDefaultDispatcher(block, shouldRetry = false)\n            else throw e;\n        } catch (e: Exception) {\n            if (shouldRetry) runTestOnDefaultDispatcher(block, shouldRetry = false)\n            else throw e;\n        }\n    }\n}\n\n@Serializable\ndata class CachedResponse(val request: Request, val response: Response)\n\n@Serializable\ndata class Request(val url: String, val method: String, val body: String? = null)\n\n@Serializable\ndata class Response(val responseCode: Int, val headers: Map<String, String>, val body: String)\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/priv/ClientEpisodeApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.priv\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertFailsWith\nimport kotlin.test.assertNotNull\nimport kotlin.test.assertNull\n\nclass ClientEpisodeApiTest : AbstractTest<SpotifyClientApi>() {\n    @Test\n    fun testGetEpisode(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetEpisode.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        assertNull(api.episodes.getEpisode(\"nonexistant episode\"))\n        assertNotNull(api.episodes.getEpisode(\"3lMZTE81Pbrp0U12WZe27l\"))\n    }\n\n    @Test\n    fun testGetEpisodes(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetEpisodes.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        assertFailsWith<BadRequestException> { api.episodes.getEpisodes(\"hi\", \"dad\") }\n        assertFailsWith<BadRequestException> { api.episodes.getEpisodes(\"1cfOhXP4GQCd5ZFHoSF8gg\", \"j\")[1] }\n\n        assertEquals(\n            listOf(\"The Great Inflation (Classic)\"),\n            api.episodes.getEpisodes(\"3lMZTE81Pbrp0U12WZe27l\").map { it?.name }\n        )\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/priv/ClientFollowingApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.priv\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\n\nclass ClientFollowingApiTest : AbstractTest<SpotifyClientApi>() {\n    @Test\n    fun testFollowUnfollowArtists(): TestResult = runTestOnDefaultDispatcher {\n        return@runTestOnDefaultDispatcher // TODO https://github.com/adamint/spotify-web-api-kotlin/issues/309\n\n        /*buildApi(SpotifyClientApi::class)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val testArtistId = \"7eCmccnRwPmRnWPw61x6jM\"\n        if (api!!.following.isFollowingArtist(testArtistId)) {\n            api!!.following.unfollowArtist(testArtistId)\n        }\n\n        assertTrue(!api!!.following.isFollowingArtist(testArtistId))\n\n        val beforeFollowing = api!!.following.getFollowedArtists().getAllItemsNotNull()\n\n        assertNull(beforeFollowing.find { it.id == testArtistId })\n\n        api!!.following.followArtist(testArtistId)\n        api!!.following.followArtist(testArtistId)\n\n        assertTrue(api!!.following.isFollowingArtist(testArtistId))\n\n        assertEquals(1, api!!.following.getFollowedArtists().getAllItems().size - beforeFollowing.size)\n\n        api!!.following.unfollowArtist(testArtistId)\n        api!!.following.unfollowArtist(testArtistId)\n\n        assertEquals(beforeFollowing.size, api!!.following.getFollowedArtists().getAllItems().size)\n\n        assertTrue(!api!!.following.isFollowingArtist(testArtistId))\n\n        assertFailsWith<SpotifyException.BadRequestException> { api!!.following.isFollowingArtist(\"no u\") }\n        assertFailsWith<SpotifyException.BadRequestException> { api!!.following.followArtist(\"no u\") }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api!!.following.followArtists(\n                testArtistId,\n                \"no u\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> { api!!.following.unfollowArtist(\"no u\") }*/\n    }\n\n    @Test\n    fun testFollowUnfollowUsers(): TestResult = runTestOnDefaultDispatcher {\n        return@runTestOnDefaultDispatcher // TODO https://github.com/adamint/spotify-web-api-kotlin/issues/309\n\n        /*buildApi(SpotifyClientApi::class)\n                if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val testUserId = \"adamratzman\"\n\n        if (api!!.following.isFollowingUser(testUserId)) {\n            api!!.following.unfollowUser(testUserId)\n        }\n\n        api!!.following.followUser(testUserId)\n\n        assertTrue(api!!.following.isFollowingUser(testUserId))\n\n        api!!.following.unfollowUser(testUserId)\n\n        assertFalse(api!!.following.isFollowingUser(testUserId))*/\n    }\n\n    @Test\n    fun testFollowUnfollowPlaylists(): TestResult = runTestOnDefaultDispatcher {\n        return@runTestOnDefaultDispatcher // TODO https://github.com/adamint/spotify-web-api-kotlin/issues/309\n\n        /*buildApi(SpotifyClientApi::class)\n                if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val playlistId = \"37i9dQZF1DXcBWIGoYBM5M\"\n        if (api!!.following.isFollowingPlaylist(playlistId)) {\n            api!!.following.unfollowPlaylist(playlistId)\n        }\n\n        assertFalse(api!!.following.isFollowingPlaylist(playlistId))\n\n        api!!.following.followPlaylist(playlistId)\n\n        assertTrue(api!!.following.isFollowingPlaylist(playlistId))\n\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api!!.following.isFollowingPlaylist(\n                \" no u\",\n                \"no u\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> { api!!.following.unfollowPlaylist(\"no-u\") }\n        assertFailsWith<SpotifyException.BadRequestException> { api!!.following.followPlaylist(\"nou\") }*/\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/priv/ClientLibraryApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.priv\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.endpoints.client.LibraryType\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertFailsWith\nimport kotlin.test.assertFalse\nimport kotlin.test.assertTrue\n\nclass ClientLibraryApiTest : AbstractTest<SpotifyClientApi>() {\n    @Test\n    fun testLibraryTracks(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testLibraryTracks.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val testTrack = \"3yi3SEVFj0mSiYVu8xT9sF\"\n        if (api.library.contains(LibraryType.Track, testTrack)) {\n            api.library.remove(LibraryType.Track, testTrack)\n        }\n\n        assertFalse(api.library.contains(LibraryType.Track, testTrack))\n        assertFalse(\n            api.library.getSavedTracks().getAllItemsNotNull()\n                .map { it.track.id }.contains(testTrack)\n        )\n\n        api.library.add(LibraryType.Track, testTrack)\n\n        assertTrue(api.library.contains(LibraryType.Track, testTrack))\n        assertTrue(\n            api.library.getSavedTracks().getAllItemsNotNull()\n                .map { it.track.id }.contains(testTrack)\n        )\n\n        api.library.remove(LibraryType.Track, testTrack)\n\n        assertFalse(api.library.contains(LibraryType.Track, testTrack))\n        assertFalse(\n            api.library.getSavedTracks().getAllItemsNotNull()\n                .map { it.track.id }.contains(testTrack)\n        )\n    }\n\n    @Test\n    fun testLibraryAlbums(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testLibraryAlbums.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val testAlbum = \"1UAt4G020TgW3lb2CkXr2N\"\n        if (api.library.contains(LibraryType.Album, testAlbum)) {\n            api.library.remove(LibraryType.Album, testAlbum)\n        }\n\n        assertFalse(api.library.contains(LibraryType.Album, testAlbum))\n        assertFalse(\n            api.library.getSavedAlbums().getAllItemsNotNull()\n                .map { it.album.id }.contains(testAlbum)\n        )\n\n        api.library.add(LibraryType.Album, testAlbum)\n\n        assertTrue(api.library.contains(LibraryType.Album, testAlbum))\n        assertTrue(\n            api.library.getSavedAlbums().getAllItemsNotNull()\n                .map { it.album.id }.contains(testAlbum)\n        )\n\n        api.library.remove(LibraryType.Album, testAlbum)\n\n        assertFalse(api.library.contains(LibraryType.Album, testAlbum))\n        assertFalse(\n            api.library.getSavedAlbums().getAllItemsNotNull()\n                .map { it.album.id }.contains(testAlbum)\n        )\n    }\n\n    @Test\n    fun testLibraryEpisodes(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testLibraryEpisodes.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val testEpisode = \"5outVI1srKZtqwPrthvkKb\"\n        if (api.library.contains(LibraryType.Episode, testEpisode)) {\n            api.library.remove(LibraryType.Episode, testEpisode)\n        }\n\n        assertFalse(api.library.contains(LibraryType.Episode, testEpisode))\n        assertFalse(\n            api.library.getSavedEpisodes().getAllItemsNotNull().map { it.episode.id }.contains(testEpisode)\n        )\n\n        api.library.add(LibraryType.Episode, testEpisode)\n\n        assertTrue(api.library.contains(LibraryType.Episode, testEpisode))\n        assertTrue(\n            api.library.getSavedEpisodes().getAllItemsNotNull().map { it.episode.id }.contains(testEpisode)\n        )\n\n        api.library.remove(LibraryType.Episode, testEpisode)\n\n        assertFalse(api.library.contains(LibraryType.Episode, testEpisode))\n        assertFalse(\n            api.library.getSavedEpisodes().getAllItemsNotNull().map { it.episode.id }.contains(testEpisode)\n        )\n    }\n\n    @Test\n    fun testLibraryShows(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testLibraryShows.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val testShow = \"6z4NLXyHPga1UmSJsPK7G1\"\n        if (api.library.contains(LibraryType.Show, testShow)) {\n            api.library.remove(LibraryType.Show, testShow)\n        }\n\n        assertFalse(api.library.contains(LibraryType.Show, testShow))\n        assertFalse(\n            api.library.getSavedShows().getAllItemsNotNull().map { it.show.id }.contains(testShow)\n        )\n\n        api.library.add(LibraryType.Show, testShow)\n\n        assertTrue(api.library.contains(LibraryType.Show, testShow))\n        assertTrue(\n            api.library.getSavedShows().getAllItemsNotNull().map { it.show.id }.contains(testShow)\n        )\n\n        api.library.remove(LibraryType.Show, testShow)\n\n        assertFalse(api.library.contains(LibraryType.Show, testShow))\n        assertFalse(\n            api.library.getSavedShows().getAllItemsNotNull().map { it.show.id }.contains(testShow)\n        )\n    }\n\n    @Test\n    fun testInvalidInputs(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testInvalidInputs.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        // tracks\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.remove(\n                LibraryType.Track,\n                \"ajksdfkjasjfd\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.contains(\n                LibraryType.Track,\n                \"adsfjk\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> { api.library.add(LibraryType.Track, \"wer\") }\n\n        // album\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.remove(\n                LibraryType.Album,\n                \"elkars\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.contains(\n                LibraryType.Album,\n                \"\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.add(\n                LibraryType.Album,\n                \"oieriwkjrjkawer\"\n            )\n        }\n\n        // shows\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.remove(\n                LibraryType.Show,\n                \"elkars\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.contains(\n                LibraryType.Show,\n                \"\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.add(\n                LibraryType.Show,\n                \"oieriwkjrjkawer\"\n            )\n        }\n\n        // episodes\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.remove(\n                LibraryType.Episode,\n                \"elkars\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.contains(\n                LibraryType.Episode,\n                \"\"\n            )\n        }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.library.add(\n                LibraryType.Episode,\n                \"oieriwkjrjkawer\"\n            )\n        }\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/priv/ClientPersonalizationApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.priv\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.endpoints.client.ClientPersonalizationApi\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertTrue\n\nclass ClientPersonalizationApiTest : AbstractTest<SpotifyClientApi>() {\n    @Test\n    fun testGetTopArtists(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetTopArtists.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        assertTrue(\n            api.personalization.getTopArtists(\n                5,\n                timeRange = ClientPersonalizationApi.TimeRange.MediumTerm\n            ).items.isNotEmpty()\n        )\n    }\n\n    @Test\n    fun testGetTopTracks(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetTopTracks.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        assertTrue(api.personalization.getTopTracks(5).items.isNotEmpty())\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/priv/ClientPlayerApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class, ExperimentalTime::class)\n\npackage com.adamratzman.spotify.priv\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.arePlayerTestsEnabled\nimport com.adamratzman.spotify.models.CurrentlyPlayingType\nimport com.adamratzman.spotify.models.Episode\nimport com.adamratzman.spotify.models.PlayableUri\nimport com.adamratzman.spotify.models.SpotifyContextType\nimport com.adamratzman.spotify.models.SpotifyTrackUri\nimport com.adamratzman.spotify.models.toAlbumUri\nimport com.adamratzman.spotify.models.toArtistUri\nimport com.adamratzman.spotify.models.toEpisodeUri\nimport com.adamratzman.spotify.models.toPlaylistUri\nimport com.adamratzman.spotify.models.toShowUri\nimport com.adamratzman.spotify.models.toTrackUri\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.delay\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertNotNull\nimport kotlin.test.assertTrue\nimport kotlin.time.DurationUnit\nimport kotlin.time.ExperimentalTime\nimport kotlin.time.measureTime\n\n// we need to give a decent tolerance to ensure the action has actually been performed for these endpoints\nprivate const val playbackRelatedDelayMs: Long = 2000\n\n// use a static playlist\nprivate const val testPlaylistId: String = \"5EcI5L8emMhpq2r7P7msC8\"\n\nclass ClientPlayerApiTest : AbstractTest<SpotifyClientApi>() {\n    @Test\n    fun testGetDevices(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetDevices.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        assertTrue(api.player.getDevices().isNotEmpty())\n    }\n\n    @Test\n    fun testGetCurrentContext(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetCurrentContext.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val device = api.player.getDevices().first()\n        api.player.startPlayback(\n            playableUrisToPlay = listOf(SpotifyTrackUri(\"spotify:track:6WcinC5nKan2DMFUfjVerX\")),\n            deviceId = device.id\n        )\n        delay(playbackRelatedDelayMs)\n        val getCurrentContext = suspend { api.player.getCurrentContext() }\n        var context = getCurrentContext()\n        assertTrue(context != null && context.isPlaying && context.item?.id == \"6WcinC5nKan2DMFUfjVerX\")\n        api.player.pause()\n        context = getCurrentContext()!!\n\n        assertTrue(!context.isPlaying)\n        assertNotNull(context.item?.id)\n\n        val playlist = api.playlists.getPlaylist(testPlaylistId)!!\n        api.player.startPlayback(\n            contextUri = playlist.uri\n        )\n        delay(playbackRelatedDelayMs)\n    }\n\n    @Test\n    fun testGetRecentlyPlayed(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetRecentlyPlayed.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        api.player.getRecentlyPlayed()\n    }\n\n    @Test\n    fun testGetCurrentlyPlaying(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetCurrentlyPlaying.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val device = api.player.getDevices().first()\n\n        val trackId = \"1VsVY1ySdH3nVSWnLT5vCf\"\n        api.player.startPlayback(\n            playableUrisToPlay = listOf(PlayableUri(\"spotify:track:$trackId\")),\n            deviceId = device.id\n        )\n        delay(playbackRelatedDelayMs)\n        val currentlyPlayingObjectTrack = api.player.getCurrentlyPlaying()\n        assertNotNull(currentlyPlayingObjectTrack)\n        assertTrue(currentlyPlayingObjectTrack.isPlaying && currentlyPlayingObjectTrack.context == null)\n\n        val playlistId = \"3DhwYIoAZ8mXlxiBkCuOx7\"\n        api.player.startPlayback(contextUri = playlistId.toPlaylistUri())\n        delay(playbackRelatedDelayMs)\n        val currentlyPlayingObjectPlaylist = api.player.getCurrentlyPlaying()\n        assertNotNull(currentlyPlayingObjectPlaylist)\n        assertTrue(currentlyPlayingObjectPlaylist.isPlaying)\n        assertEquals(playlistId, currentlyPlayingObjectPlaylist.context?.uri?.id)\n        assertEquals(SpotifyContextType.Playlist, currentlyPlayingObjectPlaylist.context?.type)\n\n        api.player.pause()\n        delay(playbackRelatedDelayMs)\n    }\n\n    @Test\n    fun testAddItemToEndOfQueue(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testAddItemToEndOfQueue.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val device = api.player.getDevices().first()\n        val playlist = api.playlists.getPlaylist(\"098OivbzwUNzzDShgF6U4A\")!!\n        api.player.startPlayback(playlistId = playlist.id) // two tracks\n        val trackId = \"1VsVY1ySdH3nVSWnLT5vCf\"\n        api.player.addItemToEndOfQueue(trackId.toTrackUri(), device.id)\n        delay(playbackRelatedDelayMs)\n        api.player.skipForward() // skip first\n        delay(playbackRelatedDelayMs)\n        // we have nothing in the queue so the next in queue gets played before resuming playlist\n        assertEquals(trackId, api.player.getCurrentlyPlaying()?.item?.uri?.id)\n    }\n\n    @Test\n    fun testSeek(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testSeek.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val device = api.player.getDevices().first()\n\n        val trackId = \"1VsVY1ySdH3nVSWnLT5vCf\"\n        val track = api.tracks.getTrack(trackId)!!\n        api.player.startPlayback(\n            playableUrisToPlay = listOf(PlayableUri(\"spotify:track:$trackId\")),\n            deviceId = device.id\n        )\n        api.player.pause()\n\n        val skipTo = track.length / 2\n        val delay = measureTime {\n            api.player.seek(skipTo.toLong())\n            api.player.resume()\n        }.toDouble(DurationUnit.MILLISECONDS)\n\n        delay(playbackRelatedDelayMs)\n        assertTrue(api.player.getCurrentlyPlaying()!!.progressMs!! >= playbackRelatedDelayMs - delay)\n        api.player.skipForward()\n\n        delay(playbackRelatedDelayMs)\n    }\n\n    /*\n    // TODO add back once this isn't flaky anymore\n    @Test\n    fun testSetPlaybackOptions() {\n        return runBlockingTest {\n            super.build<SpotifyClientApi>()\n            if (!testPrereq()) return@runBlockingTest else api!!\n            val device = api!!.player.getDevices().first()\n            val volume = 50\n            api!!.player.setRepeatMode(ClientPlayerApi.PlayerRepeatState.OFF, device.id)\n            api!!.player.setVolume(volume, device.id)\n            api!!.player.toggleShuffle(shuffle = true)\n            val context = api!!.player.getCurrentContext()!!\n            assertEquals(ClientPlayerApi.PlayerRepeatState.OFF, context.repeatState)\n            assertEquals(volume, context.device.volumePercent)\n            assertEquals(true, context.shuffleState)\n            api!!.player.toggleShuffle(shuffle = false)\n            assertEquals(false, api!!.player.getCurrentContext()!!.shuffleState)\n        }\n    }*/\n\n    @Test\n    fun testStartPlayback(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testStartPlayback.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val device = api.player.getDevices().first()\n\n        val playlistUri = \"spotify:playlist:$testPlaylistId\".toPlaylistUri()\n        val artistUri = \"spotify:artist:0MlOPi3zIDMVrfA9R04Fe3\".toArtistUri()\n        val showUri = \"spotify:show:6z4NLXyHPga1UmSJsPK7G1\".toShowUri()\n        val albumUri = \"spotify:album:7qmzJKB20IS9non9kBkPgF\".toAlbumUri()\n\n        // play from a context\n        api.player.startPlayback(contextUri = playlistUri, deviceId = device.id)\n        api.player.skipForward()\n        delay(playbackRelatedDelayMs)\n        assertEquals(playlistUri, api.player.getCurrentContext()?.context?.uri)\n\n        api.player.startPlayback(contextUri = artistUri, deviceId = device.id)\n        delay(playbackRelatedDelayMs)\n        assertEquals(artistUri, api.player.getCurrentContext()?.context?.uri)\n\n        api.player.startPlayback(contextUri = showUri, deviceId = device.id)\n\n        delay(playbackRelatedDelayMs)\n\n        assertEquals(\n            CurrentlyPlayingType.Episode,\n            api.player.getCurrentlyPlaying()!!.currentlyPlayingType\n        )\n        assertEquals(\n            showUri.id,\n            (api.player.getCurrentlyPlaying()!!.item as? Episode)?.show?.id\n        )\n\n        api.player.startPlayback(contextUri = albumUri, deviceId = device.id)\n        delay(playbackRelatedDelayMs)\n        assertEquals(albumUri, api.player.getCurrentContext()?.context?.uri)\n    }\n\n    @Test\n    fun testSkipForwardBackward(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testSkipForwardBackward.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val device = api.player.getDevices().first()\n\n        val playlist = api.playlists.getPlaylist(testPlaylistId)!!\n        api.player.startPlayback(\n            contextUri = playlist.uri,\n            deviceId = device.id\n        )\n        delay(playbackRelatedDelayMs)\n\n        api.player.skipForward()\n        delay(playbackRelatedDelayMs)\n        api.player.skipBehind()\n        api.player.pause()\n        delay(playbackRelatedDelayMs)\n    }\n\n    @Test\n    fun testTransferPlayback(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testTransferPlayback.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        if (api.player.getDevices().size < 2) {\n            println(\"Active devices < 2 (${api.player.getDevices()}), so skipping transfer playback test\")\n            return@runTestOnDefaultDispatcher\n        }\n        val devices = api.player.getDevices()\n        val fromDevice = devices.first()\n        val toDevice = devices[1]\n\n        api.player.startPlayback(\n            playableUrisToPlay = listOf(PlayableUri(\"spotify:track:1VsVY1ySdH3nVSWnLT5vCf\")),\n            deviceId = fromDevice.id\n        )\n        delay(playbackRelatedDelayMs)\n\n        api.player.transferPlayback(\n            deviceId = toDevice.id!!\n        )\n        delay(playbackRelatedDelayMs)\n\n        assertEquals(toDevice.id, api.player.getCurrentContext()!!.device.id)\n    }\n\n    @Test\n    fun testGetCurrentQueue(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetCurrentQueue.name)\n        if (!arePlayerTestsEnabled()) return@runTestOnDefaultDispatcher\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        val device = api.player.getDevices().first()\n\n        val trackId = \"1VsVY1ySdH3nVSWnLT5vCf\"\n        api.player.startPlayback(\n            playableUrisToPlay = listOf(PlayableUri(\"spotify:track:$trackId\")),\n            deviceId = device.id\n        )\n        delay(playbackRelatedDelayMs)\n\n        api.player.getUserQueue().let { playedSingleTrackNoQueueQueueResponse ->\n            assertEquals(trackId, playedSingleTrackNoQueueQueueResponse.currentlyPlaying?.asTrack?.id)\n        }\n\n        api.player.skipForward(deviceId = device.id)\n        delay(playbackRelatedDelayMs)\n\n        val episodeId = \"4gQNhlqd3jg5QTh7umdRXT\"\n        api.player.startPlayback(\n            playableUrisToPlay = listOf(episodeId.toEpisodeUri(), trackId.toTrackUri()),\n            deviceId = device.id\n        )\n        delay(playbackRelatedDelayMs)\n\n        api.player.getUserQueue().let { playingWithQueueResponse ->\n            assertEquals(episodeId, playingWithQueueResponse.currentlyPlaying?.id)\n            assertEquals(trackId, playingWithQueueResponse.queue[0].id)\n        }\n\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/priv/ClientPlaylistApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.priv\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.endpoints.client.SpotifyPlayablePositions\nimport com.adamratzman.spotify.models.Playlist\nimport com.adamratzman.spotify.models.SimplePlaylist\nimport com.adamratzman.spotify.models.toTrackUri\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.async\nimport kotlinx.coroutines.awaitAll\nimport kotlinx.coroutines.coroutineScope\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.*\n\nclass ClientPlaylistApiTest : AbstractTest<SpotifyClientApi>() {\n    var createdPlaylist: Playlist? = null\n    var playlistsBefore: List<SimplePlaylist>? = null\n\n    private suspend fun init() {\n        playlistsBefore = api.playlists.getClientPlaylists().getAllItemsNotNull()\n        createdPlaylist = api.playlists.createClientPlaylist(\"this is a test playlist\", \"description\")\n    }\n\n    private suspend fun tearDown() {\n        if (createdPlaylist != null) {\n            coroutineScope {\n                api.playlists.getClientPlaylists().getAllItemsNotNull()\n                    .filter { it.name == \"this is a test playlist\" }\n                    .map {\n                        async {\n                            if (api.following.isFollowingPlaylist(it.id)) {\n                                api.playlists.deleteClientPlaylist(it.id)\n                            }\n                        }\n                    }\n                    .awaitAll()\n            }\n        }\n\n        coroutineScope {\n            api.playlists.getClientPlaylists(limit = 50).getAllItemsNotNull()\n                .filter { it.name == \"test playlist\" }\n                .map { playlist -> async { api.playlists.deleteClientPlaylist(playlist.id) } }\n                .awaitAll()\n        }\n    }\n\n    @Test\n    fun testGetClientPlaylists(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testGetClientPlaylists.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        init()\n\n        assertEquals(\n            api.playlists.getClientPlaylists().getAllItemsNotNull().size - 1,\n            playlistsBefore!!.size\n        )\n\n        tearDown()\n    }\n\n    @Test\n    fun testAddAndRemoveChunkedTracks(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testAddAndRemoveChunkedTracks.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        init()\n\n        val usTop50Uri = \"spotify:playlist:37i9dQZEVXbLRQDuF5jeBp\"\n        val globalTop50Uri = \"spotify:playlist:37i9dQZEVXbMDoHDwVN2tF\"\n        val globalViral50Uri = \"spotify:playlist:37i9dQZEVXbLiRSasKsNU9\"\n\n        val tracks = listOf(\n            async { api.playlists.getPlaylist(usTop50Uri)!!.tracks.getAllItemsNotNull() },\n            async { api.playlists.getPlaylist(globalTop50Uri)!!.tracks.getAllItemsNotNull() },\n            async { api.playlists.getPlaylist(globalViral50Uri)!!.tracks.getAllItemsNotNull() }\n        ).awaitAll().flatten().mapNotNull { it.track?.uri }\n\n        api.spotifyApiOptions.allowBulkRequests = true\n\n        suspend fun calculatePlaylistSize(): Int? = api.playlists.getClientPlaylist(createdPlaylist!!.id)!!.tracks.total\n        val sizeBefore = calculatePlaylistSize() ?: 0\n        api.playlists.addPlayablesToClientPlaylist(createdPlaylist!!.id, playables = tracks.toTypedArray())\n        assertEquals(sizeBefore + tracks.size, calculatePlaylistSize())\n        api.playlists.removePlayablesFromClientPlaylist(createdPlaylist!!.id, playables = tracks.toTypedArray())\n        assertEquals(sizeBefore, calculatePlaylistSize())\n\n        api.spotifyApiOptions.allowBulkRequests = false\n\n        tearDown()\n    }\n\n    @Test\n    @Ignore // ignored because Spotify currently broke the ability to change `public` field\n    fun testEditPlaylists(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testEditPlaylists.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        init()\n\n        api.playlists.changeClientPlaylistDetails(\n            createdPlaylist!!.id,\n            \"test playlist\",\n            public = false,\n            collaborative = true,\n            description = \"description 2\"\n        )\n\n        api.playlists.addPlayablesToClientPlaylist(\n            createdPlaylist!!.id,\n            \"3WDIhWoRWVcaHdRwMEHkkS\".toTrackUri(),\n            \"7FjZU7XFs7P9jHI9Z0yRhK\".toTrackUri()\n        )\n\n        api.playlists.uploadClientPlaylistCover(\n            createdPlaylist!!.id,\n            imageUrl = \"https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/240px-Cat03.jpg\"\n        )\n\n        var updatedPlaylist = api.playlists.getClientPlaylist(createdPlaylist!!.id)!!\n        assertNotNull(updatedPlaylist.toFullPlaylist())\n\n        assertTrue(updatedPlaylist.collaborative)\n        assertTrue(updatedPlaylist.public == false)\n        assertEquals(\"test playlist\", updatedPlaylist.name)\n        //assertEquals(\"description 2\", fullPlaylist.description)  <-- spotify is flaky about actually having description set\n        assertTrue(updatedPlaylist.tracks.total == 2 && updatedPlaylist.images?.isNotEmpty() == true)\n\n        api.playlists.reorderClientPlaylistPlayables(updatedPlaylist.id, 1, insertionPoint = 0)\n\n        updatedPlaylist = api.playlists.getClientPlaylist(createdPlaylist!!.id)!!\n\n        assertTrue(updatedPlaylist.toFullPlaylist()?.tracks?.items?.get(0)?.track?.id == \"7FjZU7XFs7P9jHI9Z0yRhK\")\n\n        api.playlists.removeAllClientPlaylistPlayables(updatedPlaylist.id)\n\n        updatedPlaylist = api.playlists.getClientPlaylist(createdPlaylist!!.id)!!\n\n        assertTrue(updatedPlaylist.tracks.total == 0)\n\n        tearDown()\n    }\n\n    @Test\n    fun testRemovePlaylistPlayables(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testRemovePlaylistPlayables.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        init()\n\n        val playableUriOne = \"3WDIhWoRWVcaHdRwMEHkkS\".toTrackUri()\n        val playableUriTwo = \"7FjZU7XFs7P9jHI9Z0yRhK\".toTrackUri()\n        api.playlists.addPlayablesToClientPlaylist(\n            createdPlaylist!!.id,\n            playableUriOne,\n            playableUriOne,\n            playableUriTwo,\n            playableUriTwo\n        )\n\n        assertTrue(api.playlists.getPlaylistTracks(createdPlaylist!!.id).items.size == 4)\n\n        api.playlists.removePlayableFromClientPlaylist(createdPlaylist!!.id, playableUriOne)\n\n        assertEquals(\n            listOf(playableUriTwo, playableUriTwo),\n            api.playlists.getPlaylistTracks(createdPlaylist!!.id).items.map { it.track?.uri }\n        )\n\n        api.playlists.addPlayableToClientPlaylist(createdPlaylist!!.id, playableUriOne)\n\n        api.playlists.removePlayableFromClientPlaylist(\n            createdPlaylist!!.id,\n            playableUriTwo,\n            SpotifyPlayablePositions(1)\n        )\n\n        assertEquals(\n            listOf(playableUriTwo, playableUriOne),\n            api.playlists.getPlaylistTracks(createdPlaylist!!.id).items.map { it.track?.uri }\n        )\n\n        api.playlists.setClientPlaylistPlayables(\n            createdPlaylist!!.id,\n            playableUriOne,\n            playableUriOne,\n            playableUriTwo,\n            playableUriTwo\n        )\n\n        api.playlists.removePlayablesFromClientPlaylist(createdPlaylist!!.id, playableUriOne, playableUriTwo)\n\n        assertTrue(api.playlists.getPlaylistTracks(createdPlaylist!!.id).items.isEmpty())\n\n        api.playlists.setClientPlaylistPlayables(\n            createdPlaylist!!.id,\n            playableUriTwo,\n            playableUriOne,\n            playableUriTwo,\n            playableUriTwo,\n            playableUriOne\n        )\n\n        api.playlists.removePlayablesFromClientPlaylist(\n            createdPlaylist!!.id,\n            Pair(playableUriOne, SpotifyPlayablePositions(4)),\n            Pair(playableUriTwo, SpotifyPlayablePositions(0))\n        )\n\n        assertEquals(\n            listOf(playableUriOne, playableUriTwo, playableUriTwo),\n            api.playlists.getPlaylistTracks(createdPlaylist!!.id).items.map { it.track?.uri }\n        )\n\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.playlists.removePlayablesFromClientPlaylist(\n                createdPlaylist!!.id,\n                Pair(playableUriOne, SpotifyPlayablePositions(3))\n            )\n        }\n\n        tearDown()\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/priv/ClientUserApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.priv\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\n\nclass ClientUserApiTest : AbstractTest<SpotifyClientApi>() {\n    @Test\n    fun testClientProfile(): TestResult = runTestOnDefaultDispatcher {\n        buildApi<SpotifyClientApi>(::testClientProfile.name)\n        if (!isApiInitialized()) return@runTestOnDefaultDispatcher\n\n        api.users.getClientProfile().displayName\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/BrowseApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.endpoints.pub.TuneableTrackAttribute\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport com.adamratzman.spotify.utils.Locale\nimport com.adamratzman.spotify.utils.Market\nimport com.adamratzman.spotify.utils.getCurrentTimeMs\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertFailsWith\nimport kotlin.test.assertNotEquals\nimport kotlin.test.assertNotNull\nimport kotlin.test.assertNotSame\nimport kotlin.test.assertTrue\n\nclass BrowseApiTest : AbstractTest<GenericSpotifyApi>() {\n    @Test\n    fun testGenreSeeds(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGenreSeeds.name)\n        assertTrue(api.browse.getAvailableGenreSeeds().isNotEmpty())\n    }\n\n    @Test\n    fun testGetCategoryList(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetCategoryList.name)\n\n        assertNotSame(\n            api.browse.getCategoryList(locale = Locale.AR_AE).items[0],\n            api.browse.getCategoryList().items[0]\n        )\n        assertTrue(api.browse.getCategoryList(4, 3, market = Market.CA).items.isNotEmpty())\n        assertTrue(api.browse.getCategoryList(4, 3, locale = Locale.FR_FR, market = Market.CA).items.isNotEmpty())\n    }\n\n    @Test\n    fun testGetCategory(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetCategory.name)\n\n        val firstCategoryId = api.browse.getCategoryList(limit = 1, market = Market.FR).first()!!.id\n        assertNotNull(api.browse.getCategory(firstCategoryId))\n        assertNotNull(api.browse.getCategory(firstCategoryId, Market.FR))\n        assertNotNull(api.browse.getCategory(firstCategoryId, Market.FR, locale = Locale.EN_US))\n        assertNotNull(api.browse.getCategory(firstCategoryId, Market.FR, locale = Locale.SR_ME))\n        assertFailsWith<SpotifyException.BadRequestException> { api.browse.getCategory(\"no u\", Market.US) }\n    }\n\n    @Test\n    fun testGetPlaylistsByCategory(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetPlaylistsByCategory.name)\n\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.browse.getPlaylistsForCategory(\n                \"no u\",\n                limit = 4\n            )\n        }\n        assertTrue(\n            api.browse.getPlaylistsForCategory(\n                api.browse.getCategoryList(limit = 1).first()!!.id,\n                10,\n                0,\n                Market.FR\n            ).items.isNotEmpty()\n        )\n    }\n\n    @Test\n    fun testGetFeaturedPlaylists(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetFeaturedPlaylists.name)\n\n        assertTrue(\n            api.browse.getFeaturedPlaylists(\n                5,\n                4,\n                market = Market.US,\n                timestamp = getCurrentTimeMs() - 10000000\n            ).playlists.total > 0\n        )\n        assertTrue(api.browse.getFeaturedPlaylists(offset = 32).playlists.total > 0)\n    }\n\n    @Test\n    fun testGetNewReleases(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetNewReleases.name)\n\n        assertTrue(api.browse.getNewReleases(market = Market.CA).items.isNotEmpty())\n        assertTrue(api.browse.getNewReleases(limit = 1, offset = 3).items.isNotEmpty())\n        assertTrue(api.browse.getNewReleases(limit = 6, offset = 44, market = Market.US).items.isNotEmpty())\n    }\n\n    @Test\n    fun testGetRecommendations(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetRecommendations.name)\n\n        assertFailsWith<SpotifyException.BadRequestException> { api.browse.getTrackRecommendations() }\n\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.browse.getTrackRecommendations(seedArtists = listOf(\"abc\"))\n        }\n        api.browse.getTrackRecommendations(seedArtists = listOf(\"1kNQXvepPjaPgUfeDAF2h6\"))\n\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.browse.getTrackRecommendations(seedTracks = listOf(\"abc\"))\n        }\n        api.browse.getTrackRecommendations(seedTracks = listOf(\"3Uyt0WO3wOopnUBCe9BaXl\")).tracks\n        api.browse.getTrackRecommendations(\n            seedTracks = listOf(\n                \"6d9iYQG2JvTTEgcndW81lt\",\n                \"3Uyt0WO3wOopnUBCe9BaXl\"\n            )\n        ).tracks\n\n        api.browse.getTrackRecommendations(seedGenres = listOf(\"abc\"))\n        api.browse.getTrackRecommendations(seedGenres = listOf(\"pop\"))\n\n        api.browse.getTrackRecommendations(\n            seedGenres = listOf(\n                \"pop\",\n                \"latinx\"\n            )\n        )\n\n        api.browse.getTrackRecommendations(\n            seedArtists = listOf(\"2C2sVVXanbOpymYBMpsi89\"),\n            seedTracks = listOf(\"6d9iYQG2JvTTEgcndW81lt\", \"3Uyt0WO3wOopnUBCe9BaXl\"),\n            seedGenres = listOf(\"pop\")\n        )\n\n        assertFailsWith<IllegalArgumentException> {\n            api.browse.getTrackRecommendations(\n                targetAttributes = listOf(\n                    TuneableTrackAttribute.Acousticness.asTrackAttribute(\n                        3f\n                    )\n                )\n            )\n        }\n        assertTrue(\n            api.browse.getTrackRecommendations(\n                targetAttributes = listOf(\n                    TuneableTrackAttribute.Acousticness.asTrackAttribute(1f)\n                ),\n                seedGenres = listOf(\"pop\")\n            ).tracks.isNotEmpty()\n        )\n\n        assertFailsWith<IllegalArgumentException> {\n            api.browse.getTrackRecommendations(\n                minAttributes = listOf(\n                    TuneableTrackAttribute.Acousticness.asTrackAttribute(\n                        3f\n                    )\n                )\n            )\n        }\n        assertTrue(\n            api.browse.getTrackRecommendations(\n                minAttributes = listOf(\n                    TuneableTrackAttribute.Acousticness.asTrackAttribute(0.5f)\n                ),\n                seedGenres = listOf(\"pop\")\n            ).tracks.isNotEmpty()\n        )\n\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.browse.getTrackRecommendations(\n                maxAttributes = listOf(\n                    TuneableTrackAttribute.Speechiness.asTrackAttribute(\n                        0.9f\n                    )\n                )\n            )\n        }\n        assertTrue(\n            api.browse.getTrackRecommendations(\n                maxAttributes = listOf(\n                    TuneableTrackAttribute.Acousticness.asTrackAttribute(0.9f),\n                    TuneableTrackAttribute.Danceability.asTrackAttribute(0.9f)\n                ),\n                seedGenres = listOf(\"pop\")\n            ).tracks.isNotEmpty()\n        )\n\n        assertTrue(TuneableTrackAttribute.values().first().asTrackAttribute(0f).value == 0f)\n    }\n\n    @Test\n    fun testTuneableTrackAttributeTypes() {\n        val float1: TuneableTrackAttribute<*> = TuneableTrackAttribute.Speechiness\n        val float2: TuneableTrackAttribute<*> = TuneableTrackAttribute.Acousticness\n        val int1: TuneableTrackAttribute<*> = TuneableTrackAttribute.Key\n        val int2: TuneableTrackAttribute<*> = TuneableTrackAttribute.Popularity\n\n        assertEquals(float1.typeClass, float2.typeClass)\n        assertEquals(int1.typeClass, int2.typeClass)\n        assertNotEquals(float1.typeClass, int1.typeClass)\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/EpisodeApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.*\n\nclass EpisodeApiTest : AbstractTest<GenericSpotifyApi>() {\n    private val market = Market.US\n\n    @Test\n    fun testGetEpisode(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetEpisode.name)\n\n        assertNull(api.episodes.getEpisode(\"nonexistant episode\", market = market))\n        assertEquals(\n            \"The Great Inflation (Classic)\",\n            api.episodes.getEpisode(\"3lMZTE81Pbrp0U12WZe27l\", market = market)?.name\n        )\n    }\n\n    //@Test\n    //todo re-enable. Flaky test disabled due to infrequent spotify 500s\n    fun testGetEpisodes(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetEpisodes.name)\n\n        assertEquals(listOf(null, null),  api.episodes.getEpisodes(\"hi\", \"dad\", market = market))\n\n        val firstResultNotNullSecondNull = api.episodes.getEpisodes(\"1cfOhXP4GQCd5ZFHoSF8gg\", \"j\", market = market).map { it?.name }\n        assertTrue(firstResultNotNullSecondNull[0] != null)\n        assertTrue(firstResultNotNullSecondNull[1] == null)\n\n        assertEquals(\n            listOf(\"The Great Inflation (Classic)\"),\n            api.episodes.getEpisodes(\"3lMZTE81Pbrp0U12WZe27l\", market = market).map { it?.name }\n        )\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/MarketsApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertTrue\n\nclass MarketsApiTest : AbstractTest<GenericSpotifyApi>() {\n    @Test\n    fun testGetAvailableMarkets(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetAvailableMarkets.name)\n        assertTrue(api.markets.getAvailableMarkets().isNotEmpty())\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/PublicAlbumsApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertFailsWith\nimport kotlin.test.assertFalse\nimport kotlin.test.assertNotNull\nimport kotlin.test.assertNull\nimport kotlin.test.assertTrue\n\nclass PublicAlbumsApiTest : AbstractTest<GenericSpotifyApi>() {\n    @Test\n    fun testGetAlbums(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetAlbums.name)\n\n        assertNull(api.albums.getAlbum(\"asdf\", Market.FR))\n        assertNull(api.albums.getAlbum(\"asdf\"))\n        assertNotNull(api.albums.getAlbum(\"1f1C1CjidKcWQyiIYcMvP2\"))\n        assertNotNull(api.albums.getAlbum(\"1f1C1CjidKcWQyiIYcMvP2\", Market.US))\n\n        assertFailsWith<SpotifyException.BadRequestException> { api.albums.getAlbums(market = Market.US) }\n        assertFailsWith<SpotifyException.BadRequestException> { api.albums.getAlbums() }\n        assertEquals(\n            listOf(true, false),\n            api.albums.getAlbums(\"1f1C1CjidKcWQyiIYcMvP2\", \"abc\", market = Market.US)\n                .map { it != null }\n        )\n        assertEquals(\n            listOf(true, false),\n            api.albums.getAlbums(\"1f1C1CjidKcWQyiIYcMvP2\", \"abc\").map { it != null }\n        )\n    }\n\n    @Test\n    fun testGetAlbumsTracks(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetAlbumsTracks.name)\n\n        assertFailsWith<SpotifyException.BadRequestException> { api.albums.getAlbumTracks(\"no\") }\n\n        assertTrue(api.albums.getAlbumTracks(\"29ct57rVIi3MIFyKJYUWrZ\", 4, 3, Market.US).items.isNotEmpty())\n        assertTrue(api.albums.getAlbumTracks(\"29ct57rVIi3MIFyKJYUWrZ\", 4, 3).items.isNotEmpty())\n        assertFalse(api.albums.getAlbumTracks(\"29ct57rVIi3MIFyKJYUWrZ\", 4, 3, Market.US).items[0].isRelinked())\n    }\n\n    @Test\n    fun testConvertSimpleAlbumToAlbum(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testConvertSimpleAlbumToAlbum.name)\n\n        val simpleAlbum = api.tracks.getTrack(\"53BHUFdQphHiZUUG3nx9zn\")!!.album\n        assertEquals(simpleAlbum.id, simpleAlbum.toFullAlbum()?.id)\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/PublicArtistsApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.endpoints.pub.ArtistApi\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertFailsWith\nimport kotlin.test.assertNotNull\nimport kotlin.test.assertNull\nimport kotlin.test.assertTrue\n\nclass PublicArtistsApiTest : AbstractTest<GenericSpotifyApi>() {\n    @Test\n    fun testGetArtists(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetArtists.name)\n\n        assertNull(api.artists.getArtist(\"adkjlasdf\"))\n        assertNotNull(api.artists.getArtist(\"66CXWjxzNUsdJxJ2JdwvnR\"))\n        assertFailsWith<SpotifyException.BadRequestException> { api.artists.getArtists() }\n        assertEquals(\n            listOf(true, true),\n            api.artists.getArtists(\"66CXWjxzNUsdJxJ2JdwvnR\", \"7wjeXCtRND2ZdKfMJFu6JC\")\n                .map { it != null }\n        )\n\n        try {\n            assertEquals(\n                listOf(false, true),\n                api.artists.getArtists(\"dskjafjkajksdf\", \"0szWPxzzE8DVEfXFRCLBUb\")\n                    .map { it != null }\n            )\n        } catch (ignored: Exception) {\n            // can throw BadRequestException on client api\n        }\n    }\n\n    @Test\n    fun testGetArtistAlbums(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetArtistAlbums.name)\n\n        assertFailsWith<SpotifyException.BadRequestException> { api.artists.getArtistAlbums(\"asfasdf\") }\n        assertTrue(\n            api.artists.getArtistAlbums(\n                \"7wjeXCtRND2ZdKfMJFu6JC\",\n                10,\n                include = arrayOf(ArtistApi.AlbumInclusionStrategy.Album)\n            )\n                .items.asSequence().map { it.name }.contains(\"Louane\")\n        )\n    }\n\n    @Test\n    fun testGetRelatedArtists(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetRelatedArtists.name)\n\n        assertFailsWith<SpotifyException.BadRequestException> { api.artists.getRelatedArtists(\"\") }\n        assertFailsWith<SpotifyException.BadRequestException> { api.artists.getRelatedArtists(\"no\") }\n        assertTrue(api.artists.getRelatedArtists(\"0X2BH1fck6amBIoJhDVmmJ\").isNotEmpty())\n    }\n\n    @Test\n    fun testGetArtistTopTracksByMarket(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetArtistTopTracksByMarket.name)\n\n        assertFailsWith<SpotifyException.BadRequestException> { api.artists.getArtistTopTracks(\"no\") }\n        assertTrue(api.artists.getArtistTopTracks(\"4ZGK4hkNX6pilPpyy4YJJW\").isNotEmpty())\n        assertTrue(api.artists.getArtistTopTracks(\"4ZGK4hkNX6pilPpyy4YJJW\", Market.FR).isNotEmpty())\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/PublicFollowingApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Ignore\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertFailsWith\n\nclass PublicFollowingApiTest : AbstractTest<GenericSpotifyApi>() {\n    @Ignore // Spotify is currently failing areFollowingPlaylist requests for non-logged in user, contrary to docs\n    @Test\n    fun testUsersFollowingPlaylist(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testUsersFollowingPlaylist.name)\n\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.following.areFollowingPlaylist(\n                \"37i9dQZF1DXcBWIGoYBM5M\",\n                \"udontexist89\"\n            )[0]\n        }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.following.areFollowingPlaylist(\"37i9dQZF1DXcBWIGoYBM5M\")\n        }\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.following.areFollowingPlaylist(\"asdkfjajksdfjkasdf\", \"adamratzman1\")\n        }\n        assertEquals(\n            listOf(true, false),\n            api.following.areFollowingPlaylist(\"37i9dQZF1DXcBWIGoYBM5M\", \"adamratzman1\", \"adamratzman\")\n        )\n        assertFailsWith<SpotifyException.BadRequestException> {\n            api.following.areFollowingPlaylist(\"37i9dQZF1DXcBWIGoYBM5M\", \"udontexist89\", \"adamratzman1\")\n        }\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/PublicPlaylistsApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyClientApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.models.LocalTrack\nimport com.adamratzman.spotify.models.PodcastEpisodeTrack\nimport com.adamratzman.spotify.models.Track\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertFailsWith\nimport kotlin.test.assertNull\nimport kotlin.test.assertTrue\n\nclass PublicPlaylistsApiTest : AbstractTest<GenericSpotifyApi>() {\n    @Test\n    fun testGetUserPlaylists(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetUserPlaylists.name)\n\n        assertTrue(api.playlists.getUserPlaylists(\"adamratzman1\").items.isNotEmpty())\n        assertTrue(api.playlists.getUserPlaylists(\"adamratzman1\").items.isNotEmpty())\n        assertTrue(api.playlists.getUserPlaylists(\"adamratzman1\").items.isNotEmpty())\n        assertTrue(api.playlists.getUserPlaylists(\"adamratzman1\").items.isNotEmpty())\n        assertFailsWith<SpotifyException.BadRequestException> { api.playlists.getUserPlaylists(\"non-existant-user\").items.size }\n    }\n\n    @Test\n    fun testGetPlaylist(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetPlaylist.name)\n\n        assertEquals(\"run2\", api.playlists.getPlaylist(\"78eWnYKwDksmCHAjOUNPEj\")?.name)\n        assertNull(api.playlists.getPlaylist(\"nope\"))\n        assertTrue(api.playlists.getPlaylist(\"78eWnYKwDksmCHAjOUNPEj\")!!.tracks.isNotEmpty())\n        val playlistWithLocalAndNonLocalTracks = api.playlists.getPlaylist(\"627gNjNzj3sOrSiDm5acc2\")!!.tracks\n        assertEquals(LocalTrack::class, playlistWithLocalAndNonLocalTracks[0].track!!::class)\n        assertEquals(Track::class, playlistWithLocalAndNonLocalTracks[1].track!!::class)\n\n        if (api is SpotifyClientApi) {\n            val playlistWithPodcastsTracks = api.playlists.getPlaylist(\"37i9dQZF1DX8tN3OFXtAqt\")!!.tracks\n            assertEquals(PodcastEpisodeTrack::class, playlistWithPodcastsTracks[0].track!!::class)\n        }\n    }\n\n    @Test\n    fun testGetPlaylistTracks(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetPlaylistTracks.name)\n\n        assertTrue(api.playlists.getPlaylistTracks(\"78eWnYKwDksmCHAjOUNPEj\").items.isNotEmpty())\n        val playlist = api.playlists.getPlaylistTracks(\"627gNjNzj3sOrSiDm5acc2\")\n        assertEquals(LocalTrack::class, playlist[0].track!!::class)\n        assertEquals(Track::class, playlist[1].track!!::class)\n        assertFailsWith<SpotifyException.BadRequestException> { api.playlists.getPlaylistTracks(\"adskjfjkasdf\") }\n\n        if (api is SpotifyClientApi) {\n            val playlistWithPodcasts = api.playlists.getPlaylistTracks(\"37i9dQZF1DX8tN3OFXtAqt\")\n            assertEquals(PodcastEpisodeTrack::class, playlistWithPodcasts[0].track!!::class)\n        }\n    }\n\n    @Test\n    fun testGetPlaylistCover(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetPlaylistCover.name)\n\n        assertTrue(api.playlists.getPlaylistCovers(\"37i9dQZF1DXcBWIGoYBM5M\").isNotEmpty())\n        assertFailsWith<SpotifyException.BadRequestException> { api.playlists.getPlaylistCovers(\"adskjfjkasdf\") }\n    }\n\n    @Test\n    fun testConvertSimplePlaylistToPlaylist(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testConvertSimplePlaylistToPlaylist.name)\n\n        val simplePlaylist = api.playlists.getUserPlaylists(\"adamratzman1\").first()!!\n        assertEquals(simplePlaylist.id, simplePlaylist.toFullPlaylist()?.id)\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/PublicTracksApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertFailsWith\nimport kotlin.test.assertNull\nimport kotlin.test.assertTrue\n\nclass PublicTracksApiTest : AbstractTest<GenericSpotifyApi>() {\n    @Test\n    fun testGetTrack(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetTrack.name)\n\n        assertEquals(\"Bénabar\", api.tracks.getTrack(\"5OT3k9lPxI2jkaryRK3Aop\")!!.artists[0].name)\n        assertNull(api.tracks.getTrack(\"nonexistant track\"))\n    }\n\n    @Test\n    fun testGetTracks(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetTracks.name)\n\n        assertEquals(listOf(null, null), api.tracks.getTracks(\"hi\", \"dad\", market = Market.US))\n        assertEquals(\n            listOf(\"Alors souris\", null),\n            api.tracks.getTracks(\"0o4jSZBxOQUiDKzMJSqR4x\", \"j\").map { it?.name }\n        )\n    }\n\n    @Test\n    fun testAudioAnalysis(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testAudioAnalysis.name)\n\n        assertFailsWith<SpotifyException.BadRequestException> { api.tracks.getAudioAnalysis(\"bad track\") }\n        assertEquals(\"165.61333\", api.tracks.getAudioAnalysis(\"0o4jSZBxOQUiDKzMJSqR4x\").track.duration.toString())\n    }\n\n    @Test\n    fun testAudioFeatures(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testAudioFeatures.name)\n\n        assertFailsWith<SpotifyException.BadRequestException> { api.tracks.getAudioFeatures(\"bad track\") }\n        assertEquals(\"0.0592\", api.tracks.getAudioFeatures(\"6AH3IbS61PiabZYKVBqKAk\").acousticness.toString())\n        assertEquals(\n            listOf(null, \"0.0592\"),\n            api.tracks.getAudioFeatures(\"hkiuhi\", \"6AH3IbS61PiabZYKVBqKAk\").map { it?.acousticness?.toString() }\n        )\n        assertTrue(\n            api.tracks.getAudioFeatures(\"bad track\", \"0o4jSZBxOQUiDKzMJSqR4x\").let {\n                it[0] == null && it[1] != null\n            }\n        )\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/PublicUserApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport com.adamratzman.spotify.utils.catch\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertNull\nimport kotlin.test.assertTrue\n\nclass PublicUserApiTest : AbstractTest<GenericSpotifyApi>() {\n    @Test\n    fun testPublicUser(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testPublicUser.name)\n\n        assertTrue(catch { api.users.getProfile(\"adamratzman1\")!!.followers.total } != null)\n        assertNull(api.users.getProfile(\"ejwkfjwkerfjkwerjkfjkwerfjkjksdfjkasdf\"))\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/SearchApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException\nimport com.adamratzman.spotify.assertFailsWithSuspend\nimport com.adamratzman.spotify.endpoints.pub.SearchApi\nimport com.adamratzman.spotify.models.SearchFilter\nimport com.adamratzman.spotify.models.SearchFilterType.Artist\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertFailsWith\nimport kotlin.test.assertTrue\n\nclass SearchApiTest : AbstractTest<GenericSpotifyApi>() {\n    @Test\n    fun testSearchMultiple(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testSearchMultiple.name)\n\n        val query = api.search.search(\"lo\", *SearchApi.SearchType.entries.toTypedArray(), market = Market.US)\n        assertTrue(\n            query.albums?.items?.isNotEmpty() == true && query.tracks?.items?.isNotEmpty() == true && query.artists?.items?.isNotEmpty() == true &&\n                query.playlists?.items?.isNotEmpty() == true && query.shows?.items?.isNotEmpty() == true && query.episodes?.items?.isNotEmpty() == true\n        )\n        val query2 = api.search.search(\"lo\", SearchApi.SearchType.Artist, SearchApi.SearchType.Playlist)\n        assertTrue(\n            query2.albums == null && query2.tracks == null && query2.shows == null && query2.episodes == null &&\n                query2.artists?.items?.isNotEmpty() == true && query2.playlists?.items?.isNotEmpty() == true\n        )\n        val query3 =\n            api.search.search(\"lo\", SearchApi.SearchType.Show, SearchApi.SearchType.Episode, market = Market.US)\n        assertTrue(query3.episodes?.items?.isNotEmpty() == true && query3.shows?.items?.isNotEmpty() == true)\n    }\n\n    @Test\n    fun testSearchTrack(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testSearchTrack.name)\n\n        assertTrue(api.search.searchTrack(\"hello\", listOf(SearchFilter(Artist, \"Lionel Ritchie\")), 1, 1, Market.US).items.isNotEmpty())\n        assertFailsWith<SpotifyException.BadRequestException> { api.search.searchTrack(\"\").items.size }\n    }\n\n    @Test\n    fun testSearchAlbum(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testSearchAlbum.name)\n\n        assertTrue(api.search.searchAlbum(\"le début\").items.isNotEmpty())\n        assertFailsWith<SpotifyException.BadRequestException> { api.search.searchAlbum(\"\").items.size }\n    }\n\n    @Test\n    fun testSearchPlaylist(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testSearchPlaylist.name)\n\n        assertTrue(api.search.searchPlaylist(\"test\").items.isNotEmpty())\n        assertFailsWithSuspend<SpotifyException.BadRequestException> { api.search.searchPlaylist(\"\").items.size }\n    }\n\n    @Test\n    fun testSearchArtist(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testSearchArtist.name)\n\n        assertTrue(api.search.searchArtist(\"amir\").items.isNotEmpty())\n        assertFailsWith<SpotifyException.BadRequestException> { api.search.searchArtist(\"\").items.size }\n    }\n\n    @Test\n    fun testSearchShow(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testSearchShow.name)\n\n        (api.search as? SearchApi)?.let { clientSearchApi ->\n            assertTrue(clientSearchApi.searchShow(\"f\", market = Market.US).items.isNotEmpty())\n            assertFailsWith<SpotifyException.BadRequestException> {\n                clientSearchApi.searchShow(\n                    \"\",\n                    market = Market.US\n                ).items.size\n            }\n        }\n    }\n\n    @Test\n    fun testSearchEpisode(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testSearchEpisode.name)\n\n        (api.search as? SearchApi)?.let { clientSearchApi ->\n            assertTrue(clientSearchApi.searchEpisode(\"f\", market = Market.US).items.isNotEmpty())\n            assertFailsWith<SpotifyException.BadRequestException> {\n                clientSearchApi.searchEpisode(\n                    \"\",\n                    market = Market.US\n                ).items.size\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/pub/ShowApiTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.pub\n\nimport com.adamratzman.spotify.AbstractTest\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.BadRequestException\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport com.adamratzman.spotify.utils.Market\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.*\n\nclass ShowApiTest : AbstractTest<GenericSpotifyApi>() {\n    private val market = Market.US\n\n    @Test\n    fun testGetShow(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetShow.name)\n\n        assertNull(api.shows.getShow(\"invalid-show\", market = market))\n        assertEquals(\n            \"Freakonomics Radio\",\n            api.shows.getShow(\"spotify:show:6z4NLXyHPga1UmSJsPK7G1\", market = market)?.name\n        )\n    }\n\n    @Test\n    fun testGetShows(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetShows.name)\n\n        assertContentEquals(listOf(null, null), api.shows.getShows(\"hi\", \"dad\", market = market))\n        assertContentEquals(\n            listOf(null, null),\n            api.shows.getShows(\"78sdfjsdjfsjdf\", \"j\", market = market).map { it?.id }\n        )\n        assertContentEquals(\n            listOf(\"Freakonomics Radio\"),\n            api.shows.getShows(\"6z4NLXyHPga1UmSJsPK7G1\", market = market).map { it?.name }\n        )\n    }\n\n    @Test\n    fun testGetShowEpisodes(): TestResult = runTestOnDefaultDispatcher {\n        buildApi(::testGetShowEpisodes.name)\n\n        assertFailsWith<BadRequestException> { api.shows.getShowEpisodes(\"hi\", market = market) }\n        val show = api.shows.getShow(\"6z4NLXyHPga1UmSJsPK7G1\", market = market)!!\n        assertEquals(\n            show.id,\n            api.shows.getShowEpisodes(show.id, market = market).first()?.toFullEpisode(market)?.show?.id\n        )\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/utilities/JsonTests.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.utilities\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.buildSpotifyApi\nimport com.adamratzman.spotify.models.Album\nimport com.adamratzman.spotify.models.Artist\nimport com.adamratzman.spotify.models.ArtistUri\nimport com.adamratzman.spotify.models.CursorBasedPagingObject\nimport com.adamratzman.spotify.models.PagingObject\nimport com.adamratzman.spotify.models.Track\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlinx.serialization.builtins.nullable\nimport kotlinx.serialization.decodeFromString\nimport kotlinx.serialization.json.Json\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertTrue\n\nclass JsonTests {\n    var api: GenericSpotifyApi? = null\n\n    fun testPrereq() = api != null\n\n    @Test\n    fun testArtistSerialization(): TestResult = runTestOnDefaultDispatcher {\n        if (api == null) buildSpotifyApi(this::class.simpleName!!, ::testArtistSerialization.name)?.let { api = it }\n\n        assertTrue(\n            Json.encodeToString(\n                Artist.serializer().nullable,\n                api!!.artists.getArtist(\"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN\")\n            ).isNotEmpty()\n        )\n    }\n\n    @Test\n    fun testTrackSerialization(): TestResult = runTestOnDefaultDispatcher {\n        if (api == null) buildSpotifyApi(this::class.simpleName!!, ::testTrackSerialization.name)?.let { api = it }\n\n        assertTrue(\n            Json.encodeToString(\n                Track.serializer().nullable,\n                api!!.tracks.getTrack(\"spotify:track:6kcHg7XL6SKyPNd78daRBL\")\n            ).isNotEmpty()\n        )\n    }\n\n    @Test\n    fun testAlbumSerialization(): TestResult = runTestOnDefaultDispatcher {\n        if (api == null) buildSpotifyApi(this::class.simpleName!!, ::testAlbumSerialization.name)?.let { api = it }\n\n        assertTrue(\n            Json.encodeToString(\n                Album.serializer().nullable,\n                api!!.albums.getAlbum(\"spotify:album:6ggQNps98xaXMY0OZWevEH\")\n            ).isNotEmpty()\n        )\n    }\n\n    @Test\n    fun testArtistDeserialization(): TestResult = runTestOnDefaultDispatcher {\n        if (api == null) buildSpotifyApi(this::class.simpleName!!, ::testArtistDeserialization.name)?.let { api = it }\n\n        val json =\n            \"\"\"{\"external_urls\":{\"spotify\":\"https://open.spotify.com/artist/5WUlDfRSoLAfcVSX1WnrxN\"},\"href\":\"https://api!!.spotify.com/v1/artists/5WUlDfRSoLAfcVSX1WnrxN\",\"id\":\"5WUlDfRSoLAfcVSX1WnrxN\",\"uri\":\"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN\",\"followers\":{\"href\":null,\"total\":14675484},\"genres\":[\"australian dance\",\"australian pop\",\"dance pop\",\"pop\"],\"images\":[{\"height\":1333,\"url\":\"https://i.scdn.co/image/652b6bb0dfaf8aa444f4414ee018699260e74306\",\"width\":1000},{\"height\":853,\"url\":\"https://i.scdn.co/image/a82822ab211cbe28a0a1dbcb16902a1a8a2ea791\",\"width\":640},{\"height\":267,\"url\":\"https://i.scdn.co/image/dd3e336d456172bbda56b543c5389e1490903a30\",\"width\":200},{\"height\":85,\"url\":\"https://i.scdn.co/image/95a2aa98384b31336b8d56f8b470c45b12dcd550\",\"width\":64}],\"name\":\"Sia\",\"popularity\":88,\"type\":\"artist\"}\"\"\"\n        val artist = Json.decodeFromString<Artist>(json)\n        assertEquals(ArtistUri(\"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN\"), artist.uri)\n        assertEquals(\"5WUlDfRSoLAfcVSX1WnrxN\", artist.id)\n        assertEquals(\"Sia\", artist.name)\n        assertEquals(88.0, artist.popularity)\n        assertEquals(\"artist\", artist.type)\n    }\n\n    @Test\n    fun testPagingObjectDeserialization() = runTestOnDefaultDispatcher {\n        val json =\n            \"\"\"{\"href\": \"href\", \"items\": [], \"limit\": 50, \"next\": \"nextHref\", \"offset\": 3, \"previous\": \"previousHref\", \"total\": 5}\"\"\"\n        val pagingObject = Json.decodeFromString(PagingObject.serializer(Artist.serializer()), json)\n        assertEquals(\"href\", pagingObject.href)\n        assertEquals(emptyList(), pagingObject.items)\n        assertEquals(50, pagingObject.limit)\n        assertEquals(\"nextHref\", pagingObject.next)\n        assertEquals(3, pagingObject.offset)\n        assertEquals(\"previousHref\", pagingObject.previous)\n        assertEquals(5, pagingObject.total)\n    }\n\n    @Test\n    fun testCursorBasedPagingObjectDeserialization() = runTestOnDefaultDispatcher {\n        val json =\n            \"\"\"{\"href\": \"href\", \"items\": [], \"limit\": 50, \"next\": \"nextHref\", \"cursors\": {\"after\": \"afterHref\"}, \"total\": 5}\"\"\"\n        val pagingObject = Json.decodeFromString(CursorBasedPagingObject.serializer(Artist.serializer()), json)\n        assertEquals(\"href\", pagingObject.href)\n        assertEquals(emptyList(), pagingObject.items)\n        assertEquals(50, pagingObject.limit)\n        assertEquals(\"nextHref\", pagingObject.next)\n        assertEquals(\"afterHref\", pagingObject.cursor?.after)\n        assertEquals(5, pagingObject.total)\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/utilities/RestTests.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.utilities\n\nimport com.adamratzman.spotify.GenericSpotifyApi\nimport com.adamratzman.spotify.SpotifyException.TimeoutException\nimport com.adamratzman.spotify.SpotifyUserAuthorization\nimport com.adamratzman.spotify.annotations.SpotifyExperimentalHttpApi\nimport com.adamratzman.spotify.buildSpotifyApi\nimport com.adamratzman.spotify.runTestOnDefaultDispatcher\nimport com.adamratzman.spotify.spotifyAppApi\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.Test\nimport kotlin.test.assertFailsWith\nimport kotlin.time.ExperimentalTime\n\n@ExperimentalTime\n@SpotifyExperimentalHttpApi\nclass RestTests {\n    var api: GenericSpotifyApi? = null\n\n    fun testPrereq() = api != null\n\n    @Test\n    fun testRequestTimeoutFailure(): TestResult = runTestOnDefaultDispatcher {\n        buildSpotifyApi(this::class.simpleName!!, ::testRequestTimeoutFailure.name)?.let { api = it }\n\n        val testApi = spotifyAppApi(null, null, SpotifyUserAuthorization(token = api!!.token)).build()\n        val prevTimeout = testApi.spotifyApiOptions.requestTimeoutMillis\n\n        testApi.spotifyApiOptions.requestTimeoutMillis = 1\n        assertFailsWith<TimeoutException> {\n            testApi.search.searchTrack(\"fail\")\n        }\n\n        testApi.spotifyApiOptions.requestTimeoutMillis = prevTimeout\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/utilities/UrisTests.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utilities\n\nimport com.adamratzman.spotify.models.AlbumUri\nimport com.adamratzman.spotify.models.ArtistUri\nimport com.adamratzman.spotify.models.LocalTrackUri\nimport com.adamratzman.spotify.models.PlayableUri\nimport com.adamratzman.spotify.models.PlaylistUri\nimport com.adamratzman.spotify.models.SpotifyTrackUri\nimport com.adamratzman.spotify.models.SpotifyUri\nimport com.adamratzman.spotify.models.SpotifyUriException\nimport com.adamratzman.spotify.models.UserCollectionUri\nimport com.adamratzman.spotify.models.UserUri\nimport kotlinx.serialization.json.Json\nimport kotlin.test.Test\nimport kotlin.test.assertEquals\nimport kotlin.test.assertFailsWith\nimport kotlin.test.assertFalse\nimport kotlin.test.assertTrue\n\nclass UrisTests {\n    @Test\n    fun testSpotifyTrackUri() {\n        assertFailsWith<SpotifyUriException> {\n            SpotifyTrackUri(\"a:invalid\")\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            SpotifyTrackUri(\"a:invalid\").uri\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            SpotifyTrackUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\").uri\n        }\n\n        assertEquals(\n            \"spotify:track:1Z9UVqWuRJ7zToOiVnlXRO\",\n            SpotifyTrackUri(\"spotify:track:1Z9UVqWuRJ7zToOiVnlXRO\").uri\n        )\n\n        assertEquals(\n            \"1Z9UVqWuRJ7zToOiVnlXRO\",\n            SpotifyTrackUri(\"spotify:track:1Z9UVqWuRJ7zToOiVnlXRO\").id\n        )\n\n        assertEquals(\n            \"spotify:track:1Z9UVqWuRJ7zToOiVnlXRO\",\n            SpotifyTrackUri(\"1Z9UVqWuRJ7zToOiVnlXRO\").uri\n        )\n\n        assertEquals(\n            \"1Z9UVqWuRJ7zToOiVnlXRO\",\n            SpotifyTrackUri(\"1Z9UVqWuRJ7zToOiVnlXRO\").id\n        )\n    }\n\n    @Test\n    fun testLocalTrackUri() {\n        assertFailsWith<SpotifyUriException> {\n            LocalTrackUri(\"a:invalid\")\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            LocalTrackUri(\"a:invalid\").uri\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            LocalTrackUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\").uri\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            LocalTrackUri(\"artist:album:name:id\").uri\n        }\n\n        assertEquals(\n            \"spotify:local:artist:album:name:id\",\n            LocalTrackUri(\"spotify:local:artist:album:name:id\").uri\n        )\n\n        assertEquals(\n            \"artist:album:name:id\",\n            LocalTrackUri(\"spotify:local:artist:album:name:id\").id\n        )\n    }\n\n    @Test\n    fun testTrackUri() {\n        assertFailsWith<SpotifyUriException> {\n            PlayableUri(\"a:invalid\")\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            PlayableUri(\"a:invalid\").uri\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            PlayableUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\").uri\n        }\n\n        val trackUri = PlayableUri(\"spotify:track:1Z9UVqWuRJ7zToOiVnlXRO\")\n        assertEquals(\n            SpotifyTrackUri::class,\n            trackUri::class\n        )\n        assertEquals(\n            \"spotify:track:1Z9UVqWuRJ7zToOiVnlXRO\",\n            trackUri.uri\n        )\n        assertEquals(\n            \"1Z9UVqWuRJ7zToOiVnlXRO\",\n            trackUri.id\n        )\n\n        assertEquals(\n            SpotifyTrackUri::class,\n            trackUri::class\n        )\n    }\n\n    @Test\n    fun testUserUri() {\n        assertFailsWith<SpotifyUriException> {\n            UserUri(\"a:invalid\")\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            UserUri(\"a:invalid\").uri\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            UserUri(\"a:invalid\").id\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            UserUri(\"spotify:track:1Z9UVqWuRJ7zToOiVnlXRO\").uri\n        }\n\n        assertEquals(\n            \"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\",\n            UserUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\").uri\n        )\n\n        assertEquals(\n            \"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\",\n            SpotifyUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\").uri\n        )\n\n        assertEquals(\n            UserUri::class,\n            SpotifyUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\")::class\n        )\n\n        assertEquals(\n            \"7r7uq6qxa4ymx3wnjd9mm6i83\",\n            UserUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\").id\n        )\n\n        assertEquals(\n            \"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\",\n            UserUri(\"7r7uq6qxa4ymx3wnjd9mm6i83\").uri\n        )\n\n        assertEquals(\n            \"7r7uq6qxa4ymx3wnjd9mm6i83\",\n            UserUri(\"7r7uq6qxa4ymx3wnjd9mm6i83\").id\n        )\n\n        assertEquals(\n            \"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\",\n            UserUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83:playlist:66wcLiS5R50akaQ3onDyZd\").uri\n        )\n\n        assertEquals(\n            \"7r7uq6qxa4ymx3wnjd9mm6i83\",\n            UserUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83:playlist:66wcLiS5R50akaQ3onDyZd\").id\n        )\n\n        assertEquals(\n            \"spotify:user:\",\n            UserUri(\"spotify:user:\").uri\n        )\n\n        assertEquals(\n            \"\",\n            UserUri(\"spotify:user:\").id\n        )\n    }\n\n    @Test\n    fun testUserCollectionUri() {\n        assertFailsWith<SpotifyUriException> {\n            UserCollectionUri(\"a:invalid\")\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            UserCollectionUri(\"a:invalid\").uri\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            UserCollectionUri(\"a:invalid\").id\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            UserCollectionUri(\"spotify:user:testuser\").uri\n        }\n\n        assertEquals(\n            \"spotify:user:adamratzman1:collection\",\n            UserCollectionUri(\"spotify:user:adamratzman1:collection\").uri\n        )\n\n        assertEquals(\n            \"spotify:user:adamratzman1:collection\",\n            UserCollectionUri(\"spotify:user:adamratzman1:collection\").uri\n        )\n\n        assertEquals(\n            UserCollectionUri::class,\n            SpotifyUri(\"spotify:user:adamratzman1:collection\")::class\n        )\n\n        assertEquals(\n            \"collection\",\n            UserCollectionUri(\"spotify:user:adamratzman1:collection\").id\n        )\n    }\n\n    @Test\n    fun testPlaylistUri() {\n        assertFailsWith<SpotifyUriException> {\n            PlaylistUri(\"a:invalid\")\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            PlaylistUri(\"a:invalid\").uri\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            PlaylistUri(\"a:invalid\").id\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            PlaylistUri(\"spotify:track:1Z9UVqWuRJ7zToOiVnlXRO\").uri\n        }\n\n        assertEquals(\n            \"spotify:playlist:66wcLiS5R50akaQ3onDyZd\",\n            PlaylistUri(\"spotify:playlist:66wcLiS5R50akaQ3onDyZd\").uri\n        )\n\n        assertEquals(\n            \"66wcLiS5R50akaQ3onDyZd\",\n            PlaylistUri(\"spotify:playlist:66wcLiS5R50akaQ3onDyZd\").id\n        )\n\n        assertEquals(\n            \"spotify:playlist:66wcLiS5R50akaQ3onDyZd\",\n            PlaylistUri(\"66wcLiS5R50akaQ3onDyZd\").uri\n        )\n\n        assertEquals(\n            \"66wcLiS5R50akaQ3onDyZd\",\n            PlaylistUri(\"66wcLiS5R50akaQ3onDyZd\").id\n        )\n\n        assertEquals(\n            \"spotify:playlist:66wcLiS5R50akaQ3onDyZd\",\n            PlaylistUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83:playlist:66wcLiS5R50akaQ3onDyZd\").uri\n        )\n\n        assertEquals(\n            \"66wcLiS5R50akaQ3onDyZd\",\n            PlaylistUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83:playlist:66wcLiS5R50akaQ3onDyZd\").id\n        )\n    }\n\n    @Test\n    fun testAlbumUri() {\n        assertFailsWith<SpotifyUriException> {\n            AlbumUri(\"a:invalid\")\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            AlbumUri(\"a:invalid\").uri\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            AlbumUri(\"a:invalid\").id\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            AlbumUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\").uri\n        }\n\n        assertEquals(\n            \"spotify:album:0W0ag2P4h1Fmp7PnGJVvIJ\",\n            AlbumUri(\"spotify:album:0W0ag2P4h1Fmp7PnGJVvIJ\").uri\n        )\n\n        assertEquals(\n            \"0W0ag2P4h1Fmp7PnGJVvIJ\",\n            AlbumUri(\"spotify:album:0W0ag2P4h1Fmp7PnGJVvIJ\").id\n        )\n\n        assertEquals(\n            \"spotify:album:0W0ag2P4h1Fmp7PnGJVvIJ\",\n            AlbumUri(\"0W0ag2P4h1Fmp7PnGJVvIJ\").uri\n        )\n\n        assertEquals(\n            \"0W0ag2P4h1Fmp7PnGJVvIJ\",\n            AlbumUri(\"0W0ag2P4h1Fmp7PnGJVvIJ\").id\n        )\n    }\n\n    @Test\n    fun testArtistUri() {\n        assertFailsWith<SpotifyUriException> {\n            ArtistUri(\"a:invalid\")\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            ArtistUri(\"a:invalid\").uri\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            ArtistUri(\"a:invalid\").id\n        }\n\n        assertFailsWith<SpotifyUriException> {\n            ArtistUri(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\").uri\n        }\n\n        assertEquals(\n            \"spotify:artist:1XLjkBxFokuDTlHt0mQkRe\",\n            ArtistUri(\"spotify:artist:1XLjkBxFokuDTlHt0mQkRe\").uri\n        )\n\n        assertEquals(\n            \"1XLjkBxFokuDTlHt0mQkRe\",\n            ArtistUri(\"spotify:artist:1XLjkBxFokuDTlHt0mQkRe\").id\n        )\n\n        assertEquals(\n            \"spotify:artist:1XLjkBxFokuDTlHt0mQkRe\",\n            ArtistUri(\"1XLjkBxFokuDTlHt0mQkRe\").uri\n        )\n\n        assertEquals(\n            \"1XLjkBxFokuDTlHt0mQkRe\",\n            ArtistUri(\"1XLjkBxFokuDTlHt0mQkRe\").id\n        )\n    }\n\n    @Test\n    fun testUriSerialization() {\n        val spotifyUri: SpotifyUri =\n            Json.decodeFromString(SpotifyUri.serializer(), \"\\\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\\\"\")\n        assertEquals(\n            UserUri::class,\n            spotifyUri::class\n        )\n        assertEquals(\n            \"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\",\n            spotifyUri.uri\n        )\n\n        val userUri = Json.decodeFromString(UserUri.serializer(), \"\\\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\\\"\")\n        assertEquals(\n            \"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\",\n            userUri.uri\n        )\n\n        assertFailsWith<SpotifyUriException> {\n            Json.decodeFromString(SpotifyUri.serializer(), \"\\\"7r7uq6qxa4ymx3wnjd9mm6i83\\\"\")\n        }\n\n        assertEquals(\n            \"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\",\n            userUri.uri\n        )\n    }\n\n    @Test\n    fun testUriTypes() {\n        assertTrue {\n            SpotifyUri.isType<UserUri>(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\")\n        }\n\n        assertFalse {\n            SpotifyUri.isType<UserUri>(\"7r7uq6qxa4ymx3wnjd9mm6i83\")\n        }\n\n        assertTrue {\n            SpotifyUri.canBeType<UserUri>(\"spotify:user:7r7uq6qxa4ymx3wnjd9mm6i83\")\n        }\n\n        assertTrue {\n            SpotifyUri.canBeType<UserUri>(\"7r7uq6qxa4ymx3wnjd9mm6i83\")\n        }\n    }\n}\n"
  },
  {
    "path": "src/commonTest/kotlin/com.adamratzman/spotify/utilities/UtilityTests.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify.utilities\n\nimport com.adamratzman.spotify.*\nimport io.ktor.util.*\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.test.TestResult\nimport kotlin.test.*\n\nclass UtilityTests {\n    var api: GenericSpotifyApi? = null\n\n    @Test\n    fun testPagingObjectGetAllItems(): TestResult = runTestOnDefaultDispatcher {\n        buildSpotifyApi(this::class.simpleName!!, ::testPagingObjectGetAllItems.name)?.let { api = it }\n\n        val spotifyWfhPlaylist = api!!.playlists.getPlaylist(\"37i9dQZF1DWTLSN7iG21yC\")!!\n        val totalTracks = spotifyWfhPlaylist.tracks.total\n        val allTracks = spotifyWfhPlaylist.tracks.getAllItemsNotNull()\n        assertEquals(totalTracks, allTracks.size)\n    }\n\n    @Test\n    fun testGeneratePkceCodeChallenge() {\n        assertEquals(\n            \"c7jV_d4sQ658HgwINAR77Idumz1ik1lIb1JNlOva75E\",\n            getSpotifyPkceCodeChallenge(\"thisisaveryrandomalphanumericcodeverifierandisgreaterthan43characters\")\n        )\n        assertEquals(\n            \"9Y__uhKapn7GO_ElcaQpd8C3hdOyqTzAU4VXyR2iEV0\",\n            getSpotifyPkceCodeChallenge(\"12345678901234567890123456789012345678901234567890\")\n        )\n    }\n\n    @Test\n    fun testPagingObjectTakeItemsSize(): TestResult = runTestOnDefaultDispatcher {\n        buildSpotifyApi(this::class.simpleName!!, ::testPagingObjectTakeItemsSize.name)?.let { api = it }\n        assertEquals(24, api!!.browse.getNewReleases(limit = 12).take(24).size)\n    }\n\n    @Test\n    fun testInvalidApiBuilderParameters() = runTestOnDefaultDispatcher {\n        assertFailsWith<IllegalArgumentException> {\n            spotifyAppApi { }.build()\n        }\n\n        assertFailsWith<IllegalArgumentException> {\n            spotifyClientApi { }.build()\n        }\n\n        if (!PlatformUtils.IS_JVM) return@runTestOnDefaultDispatcher\n\n        assertFailsWith<IllegalArgumentException> {\n            spotifyClientApi {\n                credentials {\n                    clientId = getTestClientId()\n                }\n            }.build()\n        }\n\n        if (api is SpotifyClientApi) {\n            assertFailsWith<IllegalArgumentException> {\n                spotifyClientApi {\n                    credentials {\n                        clientId = getTestClientId()\n                        clientSecret = getTestClientSecret()\n                    }\n                }.build()\n            }\n        }\n    }\n\n    @Test\n    fun testValidAppApiBuilderParameters() = runTestOnDefaultDispatcher {\n        if (!PlatformUtils.IS_JVM) return@runTestOnDefaultDispatcher\n\n        if (getTestClientId() != null && getTestClientSecret() != null) {\n            val testApi = spotifyAppApi {\n                credentials {\n                    clientId = getTestClientId()\n                    clientSecret = getTestClientSecret()\n                }\n            }\n\n            testApi.build()\n        }\n    }\n\n    @Test\n    fun testAutomaticRefresh() = runTestOnDefaultDispatcher {\n        if (!PlatformUtils.IS_JVM) return@runTestOnDefaultDispatcher\n\n        var test = false\n        val api = spotifyAppApi {\n            credentials {\n                clientId = getTestClientId()\n                clientSecret = getTestClientSecret()\n            }\n\n            options {\n                onTokenRefresh = { test = true }\n            }\n        }.build()\n\n        api.token = api.token.copy(expiresIn = -1)\n        val currentToken = api.token\n\n        api.browse.getAvailableGenreSeeds()\n\n        assertTrue(test)\n        assertTrue(api.token.accessToken != currentToken.accessToken)\n    }\n\n    @Test\n    fun testRequiredScopes(): TestResult = runTestOnDefaultDispatcher {\n        buildSpotifyApi(this::class.simpleName!!, ::testRequiredScopes.name)?.let { api = it }\n        if (api !is SpotifyClientApi) return@runTestOnDefaultDispatcher\n\n        assertFailsWith<IllegalStateException> {\n            spotifyClientApi(\n                api!!.clientId,\n                api!!.clientSecret,\n                (api as SpotifyClientApi).redirectUri,\n                SpotifyUserAuthorization(token = api!!.token.copy(scopeString = null))\n            ) { requiredScopes = listOf(SpotifyScope.PlaylistReadPrivate) }.build()\n        }\n    }\n\n    @Test\n    fun testResponseSubscriber(): TestResult = runTestOnDefaultDispatcher {\n        buildSpotifyApi(this::class.simpleName!!, ::testPagingObjectGetAllItems.name)?.let { api = it }\n        val options = api!!.spotifyApiOptions\n        val oldSubscriber = options.httpResponseSubscriber\n        options.httpResponseSubscriber = { request, response ->\n            assertNotNull(\n                api!!.getCache().entries.singleOrNull { it.key.url == request.url }\n            )\n            oldSubscriber?.invoke(request, response)\n        }\n        \n        api!!.tracks.getTrack(\"6DrcMKnfMByc3RhhIvEw0F\")\n        options.httpResponseSubscriber = oldSubscriber\n    }\n}\n"
  },
  {
    "path": "src/commonTest/resources/cached_responses.json",
    "content": "{\"ClientEpisodeApiTest.testGetEpisodes\":[\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/episodes?ids=hi,dad\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 400,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"70\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"vary\\\": \\\"Accept-Encoding\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:18 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"error\\\\\\\" : {\\\\n    \\\\\\\"status\\\\\\\" : 400,\\\\n    \\\\\\\"message\\\\\\\" : \\\\\\\"invalid id\\\\\\\"\\\\n  }\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/episodes?ids=1cfOhXP4GQCd5ZFHoSF8gg,j\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 400,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"70\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"vary\\\": \\\"Accept-Encoding\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:18 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"error\\\\\\\" : {\\\\n    \\\\\\\"status\\\\\\\" : 400,\\\\n    \\\\\\\"message\\\\\\\" : \\\\\\\"invalid id\\\\\\\"\\\\n  }\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/episodes?ids=3lMZTE81Pbrp0U12WZe27l\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"public, max-age=60\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjEyNWRhMTQwOTRhMzkwMTQ3ZDg2MWViYTkyM2M5Mjk1Ig==\\\\\\\"\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"4382\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"vary\\\": \\\"Accept-Encoding\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:18 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"episodes\\\\\\\" : [ {\\\\n    \\\\\\\"audio_preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e62b82893423f4c0fae470d3f05a349be8552dd0\\\\\\\",\\\\n    \\\\\\\"description\\\\\\\" : \\\\\\\"For much of the 1970s inflation was bad. Prices rose at over 10 percent a year. Nothing could stop it — until one powerful person did something very unpopular. Today's show: How we beat inflation. | Subscribe to our weekly newsletter here.\\\\\\\",\\\\n    \\\\\\\"duration_ms\\\\\\\" : 1722697,\\\\n    \\\\\\\"explicit\\\\\\\" : false,\\\\n    \\\\\\\"external_urls\\\\\\\" : {\\\\n      \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/episode/3lMZTE81Pbrp0U12WZe27l\\\\\\\"\\\\n    },\\\\n    \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/episodes/3lMZTE81Pbrp0U12WZe27l\\\\\\\",\\\\n    \\\\\\\"html_description\\\\\\\" : \\\\\\\"For much of the 1970s inflation was bad. Prices rose at over 10 percent a year. Nothing could stop it — until one powerful person did something very unpopular. Today&#39;s show: How we beat inflation. | Subscribe to our weekly newsletter <a href=\\\\\\\\\\\\\\\"https://www.npr.org/newsletter/money?utm_source&#61;rss_feed_copy&amp;utm_medium&#61;podcast&amp;utm_term&#61;planet_money\\\\\\\\\\\\\\\" rel=\\\\\\\\\\\\\\\"nofollow\\\\\\\\\\\\\\\">here</a>.\\\\\\\",\\\\n    \\\\\\\"id\\\\\\\" : \\\\\\\"3lMZTE81Pbrp0U12WZe27l\\\\\\\",\\\\n    \\\\\\\"images\\\\\\\" : [ {\\\\n      \\\\\\\"height\\\\\\\" : 640,\\\\n      \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a152900de90f26f6b4abaa691\\\\\\\",\\\\n      \\\\\\\"width\\\\\\\" : 640\\\\n    }, {\\\\n      \\\\\\\"height\\\\\\\" : 300,\\\\n      \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f152900de90f26f6b4abaa691\\\\\\\",\\\\n      \\\\\\\"width\\\\\\\" : 300\\\\n    }, {\\\\n      \\\\\\\"height\\\\\\\" : 64,\\\\n      \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d152900de90f26f6b4abaa691\\\\\\\",\\\\n      \\\\\\\"width\\\\\\\" : 64\\\\n    } ],\\\\n    \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n    \\\\\\\"is_playable\\\\\\\" : true,\\\\n    \\\\\\\"language\\\\\\\" : \\\\\\\"en\\\\\\\",\\\\n    \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n    \\\\\\\"name\\\\\\\" : \\\\\\\"The Great Inflation (Classic)\\\\\\\",\\\\n    \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-07-17\\\\\\\",\\\\n    \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n    \\\\\\\"resume_point\\\\\\\" : {\\\\n      \\\\\\\"fully_played\\\\\\\" : false,\\\\n      \\\\\\\"resume_position_ms\\\\\\\" : 0\\\\n    },\\\\n    \\\\\\\"show\\\\\\\" : {\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"ZA\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ ],\\\\n      \\\\\\\"description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don't just understand the economy – understand the world.Wanna go deeper? Subscribe to Planet Money+ and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It's a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/show/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/shows/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n      \\\\\\\"html_description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don&#39;t just understand the economy – understand the world.<br /><br />Wanna go deeper? Subscribe to Planet Money&#43; and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It&#39;s a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n      \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n      \\\\\\\"media_type\\\\\\\" : \\\\\\\"audio\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Planet Money\\\\\\\",\\\\n      \\\\\\\"publisher\\\\\\\" : \\\\\\\"NPR\\\\\\\",\\\\n      \\\\\\\"total_episodes\\\\\\\" : 355,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"show\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:show:4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n    },\\\\n    \\\\\\\"type\\\\\\\" : \\\\\\\"episode\\\\\\\",\\\\n    \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:episode:3lMZTE81Pbrp0U12WZe27l\\\\\\\"\\\\n  } ]\\\\n}\\\"\\n    }\\n}\"],\"ClientEpisodeApiTest.testGetEpisode\":[\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/episodes/nonexistantepisode\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 400,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"70\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"vary\\\": \\\"Accept-Encoding\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:16 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"error\\\\\\\" : {\\\\n    \\\\\\\"status\\\\\\\" : 400,\\\\n    \\\\\\\"message\\\\\\\" : \\\\\\\"invalid id\\\\\\\"\\\\n  }\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/episodes/3lMZTE81Pbrp0U12WZe27l\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"public, max-age=60\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-ImJhODY2MzdlNDE4NTA4ZmMzMWQ1NTk2OTljYzhhZTI1Ig==\\\\\\\"\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"4219\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"vary\\\": \\\"Accept-Encoding\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:17 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"audio_preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e62b82893423f4c0fae470d3f05a349be8552dd0\\\\\\\",\\\\n  \\\\\\\"description\\\\\\\" : \\\\\\\"For much of the 1970s inflation was bad. Prices rose at over 10 percent a year. Nothing could stop it — until one powerful person did something very unpopular. Today's show: How we beat inflation. | Subscribe to our weekly newsletter here.\\\\\\\",\\\\n  \\\\\\\"duration_ms\\\\\\\" : 1722697,\\\\n  \\\\\\\"explicit\\\\\\\" : false,\\\\n  \\\\\\\"external_urls\\\\\\\" : {\\\\n    \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/episode/3lMZTE81Pbrp0U12WZe27l\\\\\\\"\\\\n  },\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/episodes/3lMZTE81Pbrp0U12WZe27l\\\\\\\",\\\\n  \\\\\\\"html_description\\\\\\\" : \\\\\\\"For much of the 1970s inflation was bad. Prices rose at over 10 percent a year. Nothing could stop it — until one powerful person did something very unpopular. Today&#39;s show: How we beat inflation. | Subscribe to our weekly newsletter <a href=\\\\\\\\\\\\\\\"https://www.npr.org/newsletter/money?utm_source&#61;rss_feed_copy&amp;utm_medium&#61;podcast&amp;utm_term&#61;planet_money\\\\\\\\\\\\\\\" rel=\\\\\\\\\\\\\\\"nofollow\\\\\\\\\\\\\\\">here</a>.\\\\\\\",\\\\n  \\\\\\\"id\\\\\\\" : \\\\\\\"3lMZTE81Pbrp0U12WZe27l\\\\\\\",\\\\n  \\\\\\\"images\\\\\\\" : [ {\\\\n    \\\\\\\"height\\\\\\\" : 640,\\\\n    \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a152900de90f26f6b4abaa691\\\\\\\",\\\\n    \\\\\\\"width\\\\\\\" : 640\\\\n  }, {\\\\n    \\\\\\\"height\\\\\\\" : 300,\\\\n    \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f152900de90f26f6b4abaa691\\\\\\\",\\\\n    \\\\\\\"width\\\\\\\" : 300\\\\n  }, {\\\\n    \\\\\\\"height\\\\\\\" : 64,\\\\n    \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d152900de90f26f6b4abaa691\\\\\\\",\\\\n    \\\\\\\"width\\\\\\\" : 64\\\\n  } ],\\\\n  \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n  \\\\\\\"is_playable\\\\\\\" : true,\\\\n  \\\\\\\"language\\\\\\\" : \\\\\\\"en\\\\\\\",\\\\n  \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n  \\\\\\\"name\\\\\\\" : \\\\\\\"The Great Inflation (Classic)\\\\\\\",\\\\n  \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-07-17\\\\\\\",\\\\n  \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n  \\\\\\\"resume_point\\\\\\\" : {\\\\n    \\\\\\\"fully_played\\\\\\\" : false,\\\\n    \\\\\\\"resume_position_ms\\\\\\\" : 0\\\\n  },\\\\n  \\\\\\\"show\\\\\\\" : {\\\\n    \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"ZA\\\\\\\" ],\\\\n    \\\\\\\"copyrights\\\\\\\" : [ ],\\\\n    \\\\\\\"description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don't just understand the economy – understand the world.Wanna go deeper? Subscribe to Planet Money+ and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It's a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n    \\\\\\\"explicit\\\\\\\" : false,\\\\n    \\\\\\\"external_urls\\\\\\\" : {\\\\n      \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/show/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n    },\\\\n    \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/shows/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n    \\\\\\\"html_description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don&#39;t just understand the economy – understand the world.<br /><br />Wanna go deeper? Subscribe to Planet Money&#43; and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It&#39;s a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n    \\\\\\\"id\\\\\\\" : \\\\\\\"4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n    \\\\\\\"images\\\\\\\" : [ {\\\\n      \\\\\\\"height\\\\\\\" : 640,\\\\n      \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a0e9f6765835300923f3e2c87\\\\\\\",\\\\n      \\\\\\\"width\\\\\\\" : 640\\\\n    }, {\\\\n      \\\\\\\"height\\\\\\\" : 300,\\\\n      \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f0e9f6765835300923f3e2c87\\\\\\\",\\\\n      \\\\\\\"width\\\\\\\" : 300\\\\n    }, {\\\\n      \\\\\\\"height\\\\\\\" : 64,\\\\n      \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d0e9f6765835300923f3e2c87\\\\\\\",\\\\n      \\\\\\\"width\\\\\\\" : 64\\\\n    } ],\\\\n    \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n    \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n    \\\\\\\"media_type\\\\\\\" : \\\\\\\"audio\\\\\\\",\\\\n    \\\\\\\"name\\\\\\\" : \\\\\\\"Planet Money\\\\\\\",\\\\n    \\\\\\\"publisher\\\\\\\" : \\\\\\\"NPR\\\\\\\",\\\\n    \\\\\\\"total_episodes\\\\\\\" : 355,\\\\n    \\\\\\\"type\\\\\\\" : \\\\\\\"show\\\\\\\",\\\\n    \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:show:4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n  },\\\\n  \\\\\\\"type\\\\\\\" : \\\\\\\"episode\\\\\\\",\\\\n  \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:episode:3lMZTE81Pbrp0U12WZe27l\\\\\\\"\\\\n}\\\"\\n    }\\n}\"],\"ClientLibraryApiTest.testLibraryAlbums\":[\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/albums/contains?ids=1UAt4G020TgW3lb2CkXr2N\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjdhNjFiZDc1MmIwOGVkYzg3YjMwNDg2N2QxYzFhMTAwIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"9\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:20 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"[ false ]\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/albums/contains?ids=1UAt4G020TgW3lb2CkXr2N\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjdhNjFiZDc1MmIwOGVkYzg3YjMwNDg2N2QxYzFhMTAwIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"9\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:20 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"[ false ]\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/albums?limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjExN2JhZjU5MzdlNDg5YTk4ZDhhM2VkOGFhZjFiNzdiIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"70850\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:20 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/albums?offset=0&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"(P) 2018 Sony Music Entertainment France\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"886446926599\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Jive Epic\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 192320,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5OT3k9lPxI2jkaryRK3Aop\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5OT3k9lPxI2jkaryRK3Aop\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5OT3k9lPxI2jkaryRK3Aop\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/677aa797886ff024d0146caac105f07181c38e28?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5OT3k9lPxI2jkaryRK3Aop\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 156760,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6u97T4uPZPLKVStNy5qg8u\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6u97T4uPZPLKVStNy5qg8u\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6u97T4uPZPLKVStNy5qg8u\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"La petite vendeuse\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ae3fe10dd5eb470d118d6d5c73374e28eb4e049?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 2,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6u97T4uPZPLKVStNy5qg8u\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 167133,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2lHt9MjX1PIngI9hRMWctV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2lHt9MjX1PIngI9hRMWctV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2lHt9MjX1PIngI9hRMWctV\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Marathonien\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/be4fbb695cf2f880cbd676b7663e398f79ed6142?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 3,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2lHt9MjX1PIngI9hRMWctV\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 201773,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2duiiwbjLDLgwb01h7PQZL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2duiiwbjLDLgwb01h7PQZL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2duiiwbjLDLgwb01h7PQZL\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Feu de joie\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8f8c9d3711318c3c96693de8f4415e8fa0fa23b5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 4,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2duiiwbjLDLgwb01h7PQZL\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 160640,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/74zQLTpjJunYc581p5ttvL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/74zQLTpjJunYc581p5ttvL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"74zQLTpjJunYc581p5ttvL\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le destin\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/de34a28479e758e344ac3aebceb200419fe4f8e2?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 5,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:74zQLTpjJunYc581p5ttvL\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223346,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le complexe du sédentaire\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/275c5d813a7bd33b591b42eedc60b0ee8d94769a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 6,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          }, {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandre Tharaud\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 212613,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2f8liGstQEoGBYt3WVYjai\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2f8liGstQEoGBYt3WVYjai\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2f8liGstQEoGBYt3WVYjai\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Chevaliers sans armure\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/481411d87c780b9d816cd4e058089528ff43eb24?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 7,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2f8liGstQEoGBYt3WVYjai\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 181733,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6lPA3QqB01CLcnqV42DD4Q\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6lPA3QqB01CLcnqV42DD4Q\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6lPA3QqB01CLcnqV42DD4Q\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Brève et approximative histoire de France\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ca375aebe26df1c0546fe93358c2e95d85fa8331?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 8,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6lPA3QqB01CLcnqV42DD4Q\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 164013,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1JQumD4c7FDb3vSTFo0oOP\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1JQumD4c7FDb3vSTFo0oOP\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1JQumD4c7FDb3vSTFo0oOP\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Chauffard\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0e32131489afa39e7bc51bd006b1053563fe31bb?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 9,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1JQumD4c7FDb3vSTFo0oOP\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 232973,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3IDuQtOCwdjoXbc5NHpKWO\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3IDuQtOCwdjoXbc5NHpKWO\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3IDuQtOCwdjoXbc5NHpKWO\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"On jouait fort\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aae01ad0b077efd4755f1bf63c3b43f25e6be3ea?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 10,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3IDuQtOCwdjoXbc5NHpKWO\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 156560,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le jeune vigile\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0b17c2e30faaa317a346083055c77e6e04f37095?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 11,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 191106,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3vJMKb6aBbeznmOTONNonv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3vJMKb6aBbeznmOTONNonv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3vJMKb6aBbeznmOTONNonv\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Ça ne sert à rien une chanson\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/010712eb44e3412e4dc42623dc87bc602ef398ae?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 12,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3vJMKb6aBbeznmOTONNonv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 12\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-03-30T04:49:22Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"© 2017 Sash Productions licence exclusive Warner Music France, A Warner Music Group Company\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"C\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"℗ 2017 Sash Productions licence exclusive Warner Music France, A Warner Music Group Company\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"190295741204\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5GFNkpB5E3L6LFlkqpQvQv\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5GFNkpB5E3L6LFlkqpQvQv\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5GFNkpB5E3L6LFlkqpQvQv\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b4a921a453253794ef2d8767\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b4a921a453253794ef2d8767\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b4a921a453253794ef2d8767\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Warner (France)\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Addictions\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 13,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-10-27\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 18,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5GFNkpB5E3L6LFlkqpQvQv/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 178412,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1FXrPtKOuMaHkZFjajA5dd\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1FXrPtKOuMaHkZFjajA5dd\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1FXrPtKOuMaHkZFjajA5dd\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Que seront les hommes ?\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ac3144a9cfd06c99b77440092110ffda1c9e241?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1FXrPtKOuMaHkZFjajA5dd\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 220060,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2gpgza83pGT4mJYjvb5cZo\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2gpgza83pGT4mJYjvb5cZo\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2gpgza83pGT4mJYjvb5cZo\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"États d'amour\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c64571f69050de428dfab81d9db60dc297481d56?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 2,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2gpgza83pGT4mJYjvb5cZo\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223444,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6iPrirIRICHgNry7tjccaL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6iPrirIRICHgNry7tjccaL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6iPrirIRICHgNry7tjccaL\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Tout passe\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f06e9f94e5f5732de6332aa545e0a0478d850f70?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 3,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6iPrirIRICHgNry7tjccaL\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 224320,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Les rues de ma peine\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/5bedb431f02a8b58e3675e3abdfffa81ccc124ca?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 4,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 172760,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5vINPbwKoNzXTVEJ3kwmm5\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5vINPbwKoNzXTVEJ3kwmm5\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5vINPbwKoNzXTVEJ3kwmm5\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Il était une femme\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e1bec1a0369c1d171a1e992366b85a2df3912279?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 5,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5vINPbwKoNzXTVEJ3kwmm5\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 187374,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/39wFAKOB1n4YFhuqTmla9g\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/39wFAKOB1n4YFhuqTmla9g\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"39wFAKOB1n4YFhuqTmla9g\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le coeur dans les cordes\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e42be89654ef6e80d0b078f996e72806eb98dbeb?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 6,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:39wFAKOB1n4YFhuqTmla9g\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 245709,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2DaKQf2LItFzQhszAo2b1Q\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2DaKQf2LItFzQhszAo2b1Q\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2DaKQf2LItFzQhszAo2b1Q\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sors de ma tête\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/49cb1cbe655351966d4a69b0a265b08b52b704ec?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 7,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2DaKQf2LItFzQhszAo2b1Q\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 175259,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4lZfb6pBTrWVTYLSTJF8Br\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4lZfb6pBTrWVTYLSTJF8Br\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4lZfb6pBTrWVTYLSTJF8Br\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"L'Amourant\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d96c9b5754d9e17205fb1daa4f50602a6aaccb72?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 8,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4lZfb6pBTrWVTYLSTJF8Br\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 196998,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/78Hl3Dxe7KelaSCX8gE1wv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/78Hl3Dxe7KelaSCX8gE1wv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"78Hl3Dxe7KelaSCX8gE1wv\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Opium\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1674eb713813508786eaaecb009acdab15c1e34c?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 9,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:78Hl3Dxe7KelaSCX8gE1wv\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 210924,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2pyABWCsz6R0Kp7K19GeLm\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2pyABWCsz6R0Kp7K19GeLm\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2pyABWCsz6R0Kp7K19GeLm\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Que le temps s'arrête\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/50338794cd46098dd6ba2641fac1c351cc358326?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 10,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2pyABWCsz6R0Kp7K19GeLm\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          }, {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5gsbEc6XjvY4EOyu7K34oE\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5gsbEc6XjvY4EOyu7K34oE\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5gsbEc6XjvY4EOyu7K34oE\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Lital\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5gsbEc6XjvY4EOyu7K34oE\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 211938,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4pqmdkxdTskS8YAqN7p0Rs\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4pqmdkxdTskS8YAqN7p0Rs\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4pqmdkxdTskS8YAqN7p0Rs\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Idéale idylle (feat. Lital)\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3700688b3cbb9a3a31735391d1e4abbcd67f7fa1?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 11,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4pqmdkxdTskS8YAqN7p0Rs\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 225458,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6QxhvILQHfGU6ijfkcaR9C\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6QxhvILQHfGU6ijfkcaR9C\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6QxhvILQHfGU6ijfkcaR9C\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Laisse la vie faire\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aa9e7fd9adf166d3220945949018e5f3e749705a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 12,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6QxhvILQHfGU6ijfkcaR9C\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"OneRepublic\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n          }, {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223862,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"No Vacancy (feat. Amir)\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 13,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 201752,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1EuMYabdVkaRj6BJL0RG2V\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1EuMYabdVkaRj6BJL0RG2V\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1EuMYabdVkaRj6BJL0RG2V\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"La nuit\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c9603f3d1d5d8f51f786cca3ec983d9df9618355?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 14,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1EuMYabdVkaRj6BJL0RG2V\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 338045,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0hgMJmZEIEJLHUzamCUB1R\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0hgMJmZEIEJLHUzamCUB1R\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0hgMJmZEIEJLHUzamCUB1R\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Anja\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/86251ad54d078e8392dc40d2dc99832d57a40e3a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 15,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0hgMJmZEIEJLHUzamCUB1R\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 184660,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Et toi\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aabc6daefbe95b820397b75f29f1d02ef2ce3134?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 16,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 161546,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4XTwpN9uI3fpc00tCrfDYb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4XTwpN9uI3fpc00tCrfDYb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4XTwpN9uI3fpc00tCrfDYb\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"L'impasse\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/486e2f322c15029a8a44509b65a2e3d64b8eadaa?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 17,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4XTwpN9uI3fpc00tCrfDYb\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 238489,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/73rjkLChRP76tqFd8tgN62\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/73rjkLChRP76tqFd8tgN62\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"73rjkLChRP76tqFd8tgN62\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Boréale aurore\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0eeda7f99f68e192f05314a7aee14a376f641695?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 18,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:73rjkLChRP76tqFd8tgN62\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 18\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5GFNkpB5E3L6LFlkqpQvQv\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2017-07-15T12:40:02Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"(P) 2016 M2THEP & TF1 MUSIQUE, un label de TF1 ENTERTAINMENT\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"886446022857\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5hKStfgCfyD81p3aXYQ98k\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5hKStfgCfyD81p3aXYQ98k\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5hKStfgCfyD81p3aXYQ98k\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273721f617190baecf9ad87c7fe\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02721f617190baecf9ad87c7fe\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851721f617190baecf9ad87c7fe\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"TF1 Enterprises\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Cette année-là\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 3,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-08-26\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5hKStfgCfyD81p3aXYQ98k/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 219120,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/182ZZrkuVw43pxqsGuBJUx\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/182ZZrkuVw43pxqsGuBJUx\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"182ZZrkuVw43pxqsGuBJUx\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Cette année-là\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:182ZZrkuVw43pxqsGuBJUx\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 1\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5hKStfgCfyD81p3aXYQ98k\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2017-07-15T12:28:32Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"(P) 2016 M2THEP & TF1 MUSIQUE, un label de TF1 ENTERTAINMENT\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"886446102870\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4AI9rR2vIkMY8eYsHcMhzB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4AI9rR2vIkMY8eYsHcMhzB\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4AI9rR2vIkMY8eYsHcMhzB\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273977f0b49a5506da1b1bf26dc\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02977f0b49a5506da1b1bf26dc\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851977f0b49a5506da1b1bf26dc\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Sony Music/TF1 Entertainment\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"My Way\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 21,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-10-21\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4AI9rR2vIkMY8eYsHcMhzB/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 219120,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/34Jmg20nMXMParQeuMvb6o\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/34Jmg20nMXMParQeuMvb6o\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"34Jmg20nMXMParQeuMvb6o\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Cette année-là\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:34Jmg20nMXMParQeuMvb6o\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 215066,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/23poVnAdmQHYEKbvOPwc0e\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/23poVnAdmQHYEKbvOPwc0e\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"23poVnAdmQHYEKbvOPwc0e\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandrie, Alexandra\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 2,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:23poVnAdmQHYEKbvOPwc0e\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 198986,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2BtLKJeue96XF0TNjyhIQb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2BtLKJeue96XF0TNjyhIQb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2BtLKJeue96XF0TNjyhIQb\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Je vais à Rio\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 3,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2BtLKJeue96XF0TNjyhIQb\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 182586,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4wNIncqhyOWZIrQoPOHNbc\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4wNIncqhyOWZIrQoPOHNbc\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4wNIncqhyOWZIrQoPOHNbc\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Belinda\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 4,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4wNIncqhyOWZIrQoPOHNbc\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 166333,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6lATNDLTHJSLY9OKQCoRNH\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6lATNDLTHJSLY9OKQCoRNH\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6lATNDLTHJSLY9OKQCoRNH\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Belles! Belles! Belles!\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 5,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6lATNDLTHJSLY9OKQCoRNH\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 187253,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"C'est la même chanson\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 6,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 197933,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4L3YXv9QmiogiWzzKAsc4E\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4L3YXv9QmiogiWzzKAsc4E\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4L3YXv9QmiogiWzzKAsc4E\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Soudain il ne reste qu'une chanson\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 7,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4L3YXv9QmiogiWzzKAsc4E\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 229480,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Toi et le soleil\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 8,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 233306,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2Mx5LB8jvKH3f72cRl9ngO\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2Mx5LB8jvKH3f72cRl9ngO\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2Mx5LB8jvKH3f72cRl9ngO\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"17 ans\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 9,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2Mx5LB8jvKH3f72cRl9ngO\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 277360,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3yEmNsKT2FOGn6KZrG37c9\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3yEmNsKT2FOGn6KZrG37c9\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3yEmNsKT2FOGn6KZrG37c9\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Magnolias for Ever\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 10,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3yEmNsKT2FOGn6KZrG37c9\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 259826,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4rkNE6thMCp8AGFAtkjLz1\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4rkNE6thMCp8AGFAtkjLz1\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4rkNE6thMCp8AGFAtkjLz1\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Comme d'habitude\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 11,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4rkNE6thMCp8AGFAtkjLz1\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 252866,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2lTvqwhMeDylllMWucVRw4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2lTvqwhMeDylllMWucVRw4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2lTvqwhMeDylllMWucVRw4\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandrie, Alexandra - Version Disco\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 12,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2lTvqwhMeDylllMWucVRw4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 12\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4AI9rR2vIkMY8eYsHcMhzB\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : null,\\\\n  \\\\\\\"offset\\\\\\\" : 0,\\\\n  \\\\\\\"previous\\\\\\\" : null,\\\\n  \\\\\\\"total\\\\\\\" : 4\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/albums?ids=1UAt4G020TgW3lb2CkXr2N\\\",\\n        \\\"method\\\": \\\"PUT\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"0\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:20 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/albums/contains?ids=1UAt4G020TgW3lb2CkXr2N\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-ImJiMDMxMTUwYjU4MDJhZjc0YjEzOWQ3N2MwN2YzZDNlIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"8\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:21 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"[ true ]\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/albums?limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjMzNjI2ODIzMzRkZDkxMjVhYThkNDk3OGMwYjFiMDhlIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"76196\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:21 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/albums?offset=0&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-11-27T03:25:21Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"OneRepublic\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"© 2017 Mosley Music/Interscope Records\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"C\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"℗ 2017 Mosley Music/Interscope Records\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"00602557631319\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1UAt4G020TgW3lb2CkXr2N\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1UAt4G020TgW3lb2CkXr2N\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1UAt4G020TgW3lb2CkXr2N\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27393dd62dec8ea4eda4d18e446\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0293dd62dec8ea4eda4d18e446\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485193dd62dec8ea4eda4d18e446\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Mosley / Interscope\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"No Vacancy\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 44,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-04-28\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1UAt4G020TgW3lb2CkXr2N/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"OneRepublic\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223189,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4QeoDcR16IHpmmgFGQDrCp\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4QeoDcR16IHpmmgFGQDrCp\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4QeoDcR16IHpmmgFGQDrCp\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"No Vacancy\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1631e7906236e8fe909ba45d296d5b2d05cc6fc0?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4QeoDcR16IHpmmgFGQDrCp\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 1\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1UAt4G020TgW3lb2CkXr2N\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"(P) 2018 Sony Music Entertainment France\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"886446926599\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Jive Epic\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 192320,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5OT3k9lPxI2jkaryRK3Aop\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5OT3k9lPxI2jkaryRK3Aop\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5OT3k9lPxI2jkaryRK3Aop\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/677aa797886ff024d0146caac105f07181c38e28?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5OT3k9lPxI2jkaryRK3Aop\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 156760,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6u97T4uPZPLKVStNy5qg8u\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6u97T4uPZPLKVStNy5qg8u\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6u97T4uPZPLKVStNy5qg8u\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"La petite vendeuse\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ae3fe10dd5eb470d118d6d5c73374e28eb4e049?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 2,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6u97T4uPZPLKVStNy5qg8u\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 167133,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2lHt9MjX1PIngI9hRMWctV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2lHt9MjX1PIngI9hRMWctV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2lHt9MjX1PIngI9hRMWctV\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Marathonien\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/be4fbb695cf2f880cbd676b7663e398f79ed6142?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 3,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2lHt9MjX1PIngI9hRMWctV\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 201773,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2duiiwbjLDLgwb01h7PQZL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2duiiwbjLDLgwb01h7PQZL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2duiiwbjLDLgwb01h7PQZL\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Feu de joie\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8f8c9d3711318c3c96693de8f4415e8fa0fa23b5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 4,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2duiiwbjLDLgwb01h7PQZL\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 160640,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/74zQLTpjJunYc581p5ttvL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/74zQLTpjJunYc581p5ttvL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"74zQLTpjJunYc581p5ttvL\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le destin\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/de34a28479e758e344ac3aebceb200419fe4f8e2?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 5,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:74zQLTpjJunYc581p5ttvL\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223346,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le complexe du sédentaire\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/275c5d813a7bd33b591b42eedc60b0ee8d94769a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 6,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          }, {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandre Tharaud\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 212613,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2f8liGstQEoGBYt3WVYjai\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2f8liGstQEoGBYt3WVYjai\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2f8liGstQEoGBYt3WVYjai\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Chevaliers sans armure\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/481411d87c780b9d816cd4e058089528ff43eb24?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 7,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2f8liGstQEoGBYt3WVYjai\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 181733,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6lPA3QqB01CLcnqV42DD4Q\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6lPA3QqB01CLcnqV42DD4Q\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6lPA3QqB01CLcnqV42DD4Q\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Brève et approximative histoire de France\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ca375aebe26df1c0546fe93358c2e95d85fa8331?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 8,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6lPA3QqB01CLcnqV42DD4Q\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 164013,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1JQumD4c7FDb3vSTFo0oOP\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1JQumD4c7FDb3vSTFo0oOP\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1JQumD4c7FDb3vSTFo0oOP\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Chauffard\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0e32131489afa39e7bc51bd006b1053563fe31bb?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 9,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1JQumD4c7FDb3vSTFo0oOP\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 232973,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3IDuQtOCwdjoXbc5NHpKWO\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3IDuQtOCwdjoXbc5NHpKWO\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3IDuQtOCwdjoXbc5NHpKWO\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"On jouait fort\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aae01ad0b077efd4755f1bf63c3b43f25e6be3ea?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 10,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3IDuQtOCwdjoXbc5NHpKWO\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 156560,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le jeune vigile\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0b17c2e30faaa317a346083055c77e6e04f37095?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 11,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 191106,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3vJMKb6aBbeznmOTONNonv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3vJMKb6aBbeznmOTONNonv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3vJMKb6aBbeznmOTONNonv\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Ça ne sert à rien une chanson\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/010712eb44e3412e4dc42623dc87bc602ef398ae?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 12,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3vJMKb6aBbeznmOTONNonv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 12\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-03-30T04:49:22Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"© 2017 Sash Productions licence exclusive Warner Music France, A Warner Music Group Company\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"C\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"℗ 2017 Sash Productions licence exclusive Warner Music France, A Warner Music Group Company\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"190295741204\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5GFNkpB5E3L6LFlkqpQvQv\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5GFNkpB5E3L6LFlkqpQvQv\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5GFNkpB5E3L6LFlkqpQvQv\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b4a921a453253794ef2d8767\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b4a921a453253794ef2d8767\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b4a921a453253794ef2d8767\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Warner (France)\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Addictions\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 13,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-10-27\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 18,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5GFNkpB5E3L6LFlkqpQvQv/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 178412,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1FXrPtKOuMaHkZFjajA5dd\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1FXrPtKOuMaHkZFjajA5dd\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1FXrPtKOuMaHkZFjajA5dd\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Que seront les hommes ?\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ac3144a9cfd06c99b77440092110ffda1c9e241?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1FXrPtKOuMaHkZFjajA5dd\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 220060,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2gpgza83pGT4mJYjvb5cZo\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2gpgza83pGT4mJYjvb5cZo\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2gpgza83pGT4mJYjvb5cZo\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"États d'amour\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c64571f69050de428dfab81d9db60dc297481d56?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 2,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2gpgza83pGT4mJYjvb5cZo\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223444,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6iPrirIRICHgNry7tjccaL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6iPrirIRICHgNry7tjccaL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6iPrirIRICHgNry7tjccaL\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Tout passe\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f06e9f94e5f5732de6332aa545e0a0478d850f70?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 3,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6iPrirIRICHgNry7tjccaL\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 224320,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Les rues de ma peine\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/5bedb431f02a8b58e3675e3abdfffa81ccc124ca?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 4,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 172760,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5vINPbwKoNzXTVEJ3kwmm5\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5vINPbwKoNzXTVEJ3kwmm5\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5vINPbwKoNzXTVEJ3kwmm5\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Il était une femme\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e1bec1a0369c1d171a1e992366b85a2df3912279?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 5,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5vINPbwKoNzXTVEJ3kwmm5\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 187374,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/39wFAKOB1n4YFhuqTmla9g\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/39wFAKOB1n4YFhuqTmla9g\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"39wFAKOB1n4YFhuqTmla9g\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le coeur dans les cordes\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e42be89654ef6e80d0b078f996e72806eb98dbeb?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 6,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:39wFAKOB1n4YFhuqTmla9g\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 245709,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2DaKQf2LItFzQhszAo2b1Q\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2DaKQf2LItFzQhszAo2b1Q\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2DaKQf2LItFzQhszAo2b1Q\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sors de ma tête\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/49cb1cbe655351966d4a69b0a265b08b52b704ec?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 7,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2DaKQf2LItFzQhszAo2b1Q\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 175259,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4lZfb6pBTrWVTYLSTJF8Br\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4lZfb6pBTrWVTYLSTJF8Br\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4lZfb6pBTrWVTYLSTJF8Br\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"L'Amourant\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d96c9b5754d9e17205fb1daa4f50602a6aaccb72?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 8,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4lZfb6pBTrWVTYLSTJF8Br\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 196998,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/78Hl3Dxe7KelaSCX8gE1wv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/78Hl3Dxe7KelaSCX8gE1wv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"78Hl3Dxe7KelaSCX8gE1wv\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Opium\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1674eb713813508786eaaecb009acdab15c1e34c?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 9,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:78Hl3Dxe7KelaSCX8gE1wv\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 210924,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2pyABWCsz6R0Kp7K19GeLm\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2pyABWCsz6R0Kp7K19GeLm\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2pyABWCsz6R0Kp7K19GeLm\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Que le temps s'arrête\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/50338794cd46098dd6ba2641fac1c351cc358326?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 10,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2pyABWCsz6R0Kp7K19GeLm\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          }, {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5gsbEc6XjvY4EOyu7K34oE\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5gsbEc6XjvY4EOyu7K34oE\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5gsbEc6XjvY4EOyu7K34oE\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Lital\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5gsbEc6XjvY4EOyu7K34oE\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 211938,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4pqmdkxdTskS8YAqN7p0Rs\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4pqmdkxdTskS8YAqN7p0Rs\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4pqmdkxdTskS8YAqN7p0Rs\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Idéale idylle (feat. Lital)\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3700688b3cbb9a3a31735391d1e4abbcd67f7fa1?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 11,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4pqmdkxdTskS8YAqN7p0Rs\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 225458,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6QxhvILQHfGU6ijfkcaR9C\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6QxhvILQHfGU6ijfkcaR9C\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6QxhvILQHfGU6ijfkcaR9C\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Laisse la vie faire\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aa9e7fd9adf166d3220945949018e5f3e749705a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 12,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6QxhvILQHfGU6ijfkcaR9C\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"OneRepublic\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n          }, {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223862,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"No Vacancy (feat. Amir)\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 13,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 201752,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1EuMYabdVkaRj6BJL0RG2V\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1EuMYabdVkaRj6BJL0RG2V\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1EuMYabdVkaRj6BJL0RG2V\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"La nuit\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c9603f3d1d5d8f51f786cca3ec983d9df9618355?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 14,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1EuMYabdVkaRj6BJL0RG2V\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 338045,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0hgMJmZEIEJLHUzamCUB1R\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0hgMJmZEIEJLHUzamCUB1R\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0hgMJmZEIEJLHUzamCUB1R\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Anja\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/86251ad54d078e8392dc40d2dc99832d57a40e3a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 15,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0hgMJmZEIEJLHUzamCUB1R\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 184660,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Et toi\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aabc6daefbe95b820397b75f29f1d02ef2ce3134?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 16,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 161546,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4XTwpN9uI3fpc00tCrfDYb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4XTwpN9uI3fpc00tCrfDYb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4XTwpN9uI3fpc00tCrfDYb\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"L'impasse\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/486e2f322c15029a8a44509b65a2e3d64b8eadaa?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 17,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4XTwpN9uI3fpc00tCrfDYb\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 238489,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/73rjkLChRP76tqFd8tgN62\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/73rjkLChRP76tqFd8tgN62\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"73rjkLChRP76tqFd8tgN62\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Boréale aurore\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0eeda7f99f68e192f05314a7aee14a376f641695?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 18,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:73rjkLChRP76tqFd8tgN62\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 18\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5GFNkpB5E3L6LFlkqpQvQv\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2017-07-15T12:40:02Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"(P) 2016 M2THEP & TF1 MUSIQUE, un label de TF1 ENTERTAINMENT\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"886446022857\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5hKStfgCfyD81p3aXYQ98k\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5hKStfgCfyD81p3aXYQ98k\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5hKStfgCfyD81p3aXYQ98k\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273721f617190baecf9ad87c7fe\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02721f617190baecf9ad87c7fe\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851721f617190baecf9ad87c7fe\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"TF1 Enterprises\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Cette année-là\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 3,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-08-26\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5hKStfgCfyD81p3aXYQ98k/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 219120,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/182ZZrkuVw43pxqsGuBJUx\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/182ZZrkuVw43pxqsGuBJUx\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"182ZZrkuVw43pxqsGuBJUx\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Cette année-là\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:182ZZrkuVw43pxqsGuBJUx\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 1\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5hKStfgCfyD81p3aXYQ98k\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2017-07-15T12:28:32Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"(P) 2016 M2THEP & TF1 MUSIQUE, un label de TF1 ENTERTAINMENT\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"886446102870\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4AI9rR2vIkMY8eYsHcMhzB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4AI9rR2vIkMY8eYsHcMhzB\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4AI9rR2vIkMY8eYsHcMhzB\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273977f0b49a5506da1b1bf26dc\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02977f0b49a5506da1b1bf26dc\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851977f0b49a5506da1b1bf26dc\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Sony Music/TF1 Entertainment\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"My Way\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 21,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-10-21\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4AI9rR2vIkMY8eYsHcMhzB/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 219120,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/34Jmg20nMXMParQeuMvb6o\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/34Jmg20nMXMParQeuMvb6o\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"34Jmg20nMXMParQeuMvb6o\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Cette année-là\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:34Jmg20nMXMParQeuMvb6o\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 215066,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/23poVnAdmQHYEKbvOPwc0e\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/23poVnAdmQHYEKbvOPwc0e\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"23poVnAdmQHYEKbvOPwc0e\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandrie, Alexandra\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 2,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:23poVnAdmQHYEKbvOPwc0e\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 198986,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2BtLKJeue96XF0TNjyhIQb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2BtLKJeue96XF0TNjyhIQb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2BtLKJeue96XF0TNjyhIQb\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Je vais à Rio\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 3,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2BtLKJeue96XF0TNjyhIQb\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 182586,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4wNIncqhyOWZIrQoPOHNbc\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4wNIncqhyOWZIrQoPOHNbc\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4wNIncqhyOWZIrQoPOHNbc\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Belinda\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 4,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4wNIncqhyOWZIrQoPOHNbc\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 166333,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6lATNDLTHJSLY9OKQCoRNH\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6lATNDLTHJSLY9OKQCoRNH\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6lATNDLTHJSLY9OKQCoRNH\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Belles! Belles! Belles!\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 5,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6lATNDLTHJSLY9OKQCoRNH\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 187253,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"C'est la même chanson\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 6,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 197933,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4L3YXv9QmiogiWzzKAsc4E\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4L3YXv9QmiogiWzzKAsc4E\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4L3YXv9QmiogiWzzKAsc4E\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Soudain il ne reste qu'une chanson\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 7,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4L3YXv9QmiogiWzzKAsc4E\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 229480,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Toi et le soleil\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 8,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 233306,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2Mx5LB8jvKH3f72cRl9ngO\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2Mx5LB8jvKH3f72cRl9ngO\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2Mx5LB8jvKH3f72cRl9ngO\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"17 ans\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 9,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2Mx5LB8jvKH3f72cRl9ngO\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 277360,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3yEmNsKT2FOGn6KZrG37c9\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3yEmNsKT2FOGn6KZrG37c9\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3yEmNsKT2FOGn6KZrG37c9\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Magnolias for Ever\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 10,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3yEmNsKT2FOGn6KZrG37c9\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 259826,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4rkNE6thMCp8AGFAtkjLz1\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4rkNE6thMCp8AGFAtkjLz1\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4rkNE6thMCp8AGFAtkjLz1\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Comme d'habitude\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 11,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4rkNE6thMCp8AGFAtkjLz1\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 252866,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2lTvqwhMeDylllMWucVRw4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2lTvqwhMeDylllMWucVRw4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2lTvqwhMeDylllMWucVRw4\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandrie, Alexandra - Version Disco\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 12,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2lTvqwhMeDylllMWucVRw4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 12\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4AI9rR2vIkMY8eYsHcMhzB\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : null,\\\\n  \\\\\\\"offset\\\\\\\" : 0,\\\\n  \\\\\\\"previous\\\\\\\" : null,\\\\n  \\\\\\\"total\\\\\\\" : 5\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/albums?ids=1UAt4G020TgW3lb2CkXr2N\\\",\\n        \\\"method\\\": \\\"DELETE\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"0\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:21 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/albums/contains?ids=1UAt4G020TgW3lb2CkXr2N\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjdhNjFiZDc1MmIwOGVkYzg3YjMwNDg2N2QxYzFhMTAwIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"9\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:21 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"[ false ]\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/albums?limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjExN2JhZjU5MzdlNDg5YTk4ZDhhM2VkOGFhZjFiNzdiIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"70850\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:22 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/albums?offset=0&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"(P) 2018 Sony Music Entertainment France\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"886446926599\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Jive Epic\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 192320,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5OT3k9lPxI2jkaryRK3Aop\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5OT3k9lPxI2jkaryRK3Aop\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5OT3k9lPxI2jkaryRK3Aop\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/677aa797886ff024d0146caac105f07181c38e28?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5OT3k9lPxI2jkaryRK3Aop\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 156760,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6u97T4uPZPLKVStNy5qg8u\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6u97T4uPZPLKVStNy5qg8u\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6u97T4uPZPLKVStNy5qg8u\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"La petite vendeuse\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ae3fe10dd5eb470d118d6d5c73374e28eb4e049?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 2,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6u97T4uPZPLKVStNy5qg8u\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 167133,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2lHt9MjX1PIngI9hRMWctV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2lHt9MjX1PIngI9hRMWctV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2lHt9MjX1PIngI9hRMWctV\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Marathonien\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/be4fbb695cf2f880cbd676b7663e398f79ed6142?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 3,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2lHt9MjX1PIngI9hRMWctV\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 201773,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2duiiwbjLDLgwb01h7PQZL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2duiiwbjLDLgwb01h7PQZL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2duiiwbjLDLgwb01h7PQZL\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Feu de joie\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8f8c9d3711318c3c96693de8f4415e8fa0fa23b5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 4,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2duiiwbjLDLgwb01h7PQZL\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 160640,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/74zQLTpjJunYc581p5ttvL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/74zQLTpjJunYc581p5ttvL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"74zQLTpjJunYc581p5ttvL\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le destin\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/de34a28479e758e344ac3aebceb200419fe4f8e2?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 5,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:74zQLTpjJunYc581p5ttvL\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223346,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le complexe du sédentaire\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/275c5d813a7bd33b591b42eedc60b0ee8d94769a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 6,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          }, {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandre Tharaud\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 212613,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2f8liGstQEoGBYt3WVYjai\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2f8liGstQEoGBYt3WVYjai\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2f8liGstQEoGBYt3WVYjai\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Chevaliers sans armure\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/481411d87c780b9d816cd4e058089528ff43eb24?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 7,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2f8liGstQEoGBYt3WVYjai\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 181733,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6lPA3QqB01CLcnqV42DD4Q\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6lPA3QqB01CLcnqV42DD4Q\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6lPA3QqB01CLcnqV42DD4Q\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Brève et approximative histoire de France\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ca375aebe26df1c0546fe93358c2e95d85fa8331?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 8,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6lPA3QqB01CLcnqV42DD4Q\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 164013,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1JQumD4c7FDb3vSTFo0oOP\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1JQumD4c7FDb3vSTFo0oOP\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1JQumD4c7FDb3vSTFo0oOP\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Chauffard\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0e32131489afa39e7bc51bd006b1053563fe31bb?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 9,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1JQumD4c7FDb3vSTFo0oOP\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 232973,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3IDuQtOCwdjoXbc5NHpKWO\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3IDuQtOCwdjoXbc5NHpKWO\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3IDuQtOCwdjoXbc5NHpKWO\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"On jouait fort\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aae01ad0b077efd4755f1bf63c3b43f25e6be3ea?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 10,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3IDuQtOCwdjoXbc5NHpKWO\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 156560,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le jeune vigile\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0b17c2e30faaa317a346083055c77e6e04f37095?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 11,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 191106,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3vJMKb6aBbeznmOTONNonv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3vJMKb6aBbeznmOTONNonv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3vJMKb6aBbeznmOTONNonv\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Ça ne sert à rien une chanson\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/010712eb44e3412e4dc42623dc87bc602ef398ae?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 12,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3vJMKb6aBbeznmOTONNonv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 12\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-03-30T04:49:22Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"© 2017 Sash Productions licence exclusive Warner Music France, A Warner Music Group Company\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"C\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"℗ 2017 Sash Productions licence exclusive Warner Music France, A Warner Music Group Company\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"190295741204\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5GFNkpB5E3L6LFlkqpQvQv\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5GFNkpB5E3L6LFlkqpQvQv\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5GFNkpB5E3L6LFlkqpQvQv\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b4a921a453253794ef2d8767\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b4a921a453253794ef2d8767\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b4a921a453253794ef2d8767\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Warner (France)\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Addictions\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 13,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-10-27\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 18,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5GFNkpB5E3L6LFlkqpQvQv/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 178412,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1FXrPtKOuMaHkZFjajA5dd\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1FXrPtKOuMaHkZFjajA5dd\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1FXrPtKOuMaHkZFjajA5dd\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Que seront les hommes ?\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ac3144a9cfd06c99b77440092110ffda1c9e241?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1FXrPtKOuMaHkZFjajA5dd\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 220060,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2gpgza83pGT4mJYjvb5cZo\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2gpgza83pGT4mJYjvb5cZo\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2gpgza83pGT4mJYjvb5cZo\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"États d'amour\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c64571f69050de428dfab81d9db60dc297481d56?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 2,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2gpgza83pGT4mJYjvb5cZo\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223444,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6iPrirIRICHgNry7tjccaL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6iPrirIRICHgNry7tjccaL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6iPrirIRICHgNry7tjccaL\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Tout passe\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f06e9f94e5f5732de6332aa545e0a0478d850f70?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 3,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6iPrirIRICHgNry7tjccaL\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 224320,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Les rues de ma peine\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/5bedb431f02a8b58e3675e3abdfffa81ccc124ca?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 4,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1Yu3HuPeo0VT9A7XHPHqGq\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 172760,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5vINPbwKoNzXTVEJ3kwmm5\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5vINPbwKoNzXTVEJ3kwmm5\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5vINPbwKoNzXTVEJ3kwmm5\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Il était une femme\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e1bec1a0369c1d171a1e992366b85a2df3912279?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 5,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5vINPbwKoNzXTVEJ3kwmm5\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 187374,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/39wFAKOB1n4YFhuqTmla9g\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/39wFAKOB1n4YFhuqTmla9g\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"39wFAKOB1n4YFhuqTmla9g\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Le coeur dans les cordes\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e42be89654ef6e80d0b078f996e72806eb98dbeb?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 6,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:39wFAKOB1n4YFhuqTmla9g\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 245709,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2DaKQf2LItFzQhszAo2b1Q\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2DaKQf2LItFzQhszAo2b1Q\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2DaKQf2LItFzQhszAo2b1Q\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sors de ma tête\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/49cb1cbe655351966d4a69b0a265b08b52b704ec?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 7,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2DaKQf2LItFzQhszAo2b1Q\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 175259,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4lZfb6pBTrWVTYLSTJF8Br\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4lZfb6pBTrWVTYLSTJF8Br\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4lZfb6pBTrWVTYLSTJF8Br\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"L'Amourant\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d96c9b5754d9e17205fb1daa4f50602a6aaccb72?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 8,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4lZfb6pBTrWVTYLSTJF8Br\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 196998,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/78Hl3Dxe7KelaSCX8gE1wv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/78Hl3Dxe7KelaSCX8gE1wv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"78Hl3Dxe7KelaSCX8gE1wv\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Opium\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1674eb713813508786eaaecb009acdab15c1e34c?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 9,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:78Hl3Dxe7KelaSCX8gE1wv\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 210924,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2pyABWCsz6R0Kp7K19GeLm\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2pyABWCsz6R0Kp7K19GeLm\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2pyABWCsz6R0Kp7K19GeLm\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Que le temps s'arrête\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/50338794cd46098dd6ba2641fac1c351cc358326?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 10,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2pyABWCsz6R0Kp7K19GeLm\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          }, {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5gsbEc6XjvY4EOyu7K34oE\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5gsbEc6XjvY4EOyu7K34oE\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5gsbEc6XjvY4EOyu7K34oE\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Lital\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5gsbEc6XjvY4EOyu7K34oE\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 211938,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4pqmdkxdTskS8YAqN7p0Rs\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4pqmdkxdTskS8YAqN7p0Rs\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4pqmdkxdTskS8YAqN7p0Rs\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Idéale idylle (feat. Lital)\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3700688b3cbb9a3a31735391d1e4abbcd67f7fa1?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 11,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4pqmdkxdTskS8YAqN7p0Rs\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 225458,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6QxhvILQHfGU6ijfkcaR9C\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6QxhvILQHfGU6ijfkcaR9C\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6QxhvILQHfGU6ijfkcaR9C\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Laisse la vie faire\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aa9e7fd9adf166d3220945949018e5f3e749705a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 12,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6QxhvILQHfGU6ijfkcaR9C\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"5Pwc4xIPtQLFEnJriah9YJ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"OneRepublic\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5Pwc4xIPtQLFEnJriah9YJ\\\\\\\"\\\\n          }, {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 223862,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"No Vacancy (feat. Amir)\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 13,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1SBj3BmNJ5SNCoC0VtlR9Z\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 201752,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1EuMYabdVkaRj6BJL0RG2V\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1EuMYabdVkaRj6BJL0RG2V\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1EuMYabdVkaRj6BJL0RG2V\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"La nuit\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c9603f3d1d5d8f51f786cca3ec983d9df9618355?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 14,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1EuMYabdVkaRj6BJL0RG2V\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 338045,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0hgMJmZEIEJLHUzamCUB1R\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0hgMJmZEIEJLHUzamCUB1R\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0hgMJmZEIEJLHUzamCUB1R\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Anja\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/86251ad54d078e8392dc40d2dc99832d57a40e3a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 15,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0hgMJmZEIEJLHUzamCUB1R\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 184660,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Et toi\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aabc6daefbe95b820397b75f29f1d02ef2ce3134?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 16,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Q35ZFlKOB1uyXQ39Bj2qE\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 161546,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4XTwpN9uI3fpc00tCrfDYb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4XTwpN9uI3fpc00tCrfDYb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4XTwpN9uI3fpc00tCrfDYb\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"L'impasse\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/486e2f322c15029a8a44509b65a2e3d64b8eadaa?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 17,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4XTwpN9uI3fpc00tCrfDYb\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6rl53MP8HSoiugpqzA50Zh\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"Amir\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rl53MP8HSoiugpqzA50Zh\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 238489,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/73rjkLChRP76tqFd8tgN62\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/73rjkLChRP76tqFd8tgN62\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"73rjkLChRP76tqFd8tgN62\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Boréale aurore\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0eeda7f99f68e192f05314a7aee14a376f641695?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n          \\\\\\\"track_number\\\\\\\" : 18,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:73rjkLChRP76tqFd8tgN62\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 18\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5GFNkpB5E3L6LFlkqpQvQv\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2017-07-15T12:40:02Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"(P) 2016 M2THEP & TF1 MUSIQUE, un label de TF1 ENTERTAINMENT\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"886446022857\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5hKStfgCfyD81p3aXYQ98k\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5hKStfgCfyD81p3aXYQ98k\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5hKStfgCfyD81p3aXYQ98k\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273721f617190baecf9ad87c7fe\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02721f617190baecf9ad87c7fe\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851721f617190baecf9ad87c7fe\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"TF1 Enterprises\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Cette année-là\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 3,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-08-26\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5hKStfgCfyD81p3aXYQ98k/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 219120,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/182ZZrkuVw43pxqsGuBJUx\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/182ZZrkuVw43pxqsGuBJUx\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"182ZZrkuVw43pxqsGuBJUx\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Cette année-là\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:182ZZrkuVw43pxqsGuBJUx\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 1\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5hKStfgCfyD81p3aXYQ98k\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2017-07-15T12:28:32Z\\\\\\\",\\\\n    \\\\\\\"album\\\\\\\" : {\\\\n      \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ {\\\\n        \\\\\\\"text\\\\\\\" : \\\\\\\"(P) 2016 M2THEP & TF1 MUSIQUE, un label de TF1 ENTERTAINMENT\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"P\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"upc\\\\\\\" : \\\\\\\"886446102870\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4AI9rR2vIkMY8eYsHcMhzB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"genres\\\\\\\" : [ ],\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4AI9rR2vIkMY8eYsHcMhzB\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4AI9rR2vIkMY8eYsHcMhzB\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273977f0b49a5506da1b1bf26dc\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02977f0b49a5506da1b1bf26dc\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851977f0b49a5506da1b1bf26dc\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"label\\\\\\\" : \\\\\\\"Sony Music/TF1 Entertainment\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"My Way\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 21,\\\\n      \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-10-21\\\\\\\",\\\\n      \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n      \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n      \\\\\\\"tracks\\\\\\\" : {\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4AI9rR2vIkMY8eYsHcMhzB/tracks?offset=0&limit=50\\\\\\\",\\\\n        \\\\\\\"items\\\\\\\" : [ {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 219120,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/34Jmg20nMXMParQeuMvb6o\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/34Jmg20nMXMParQeuMvb6o\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"34Jmg20nMXMParQeuMvb6o\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Cette année-là\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 1,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:34Jmg20nMXMParQeuMvb6o\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 215066,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/23poVnAdmQHYEKbvOPwc0e\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/23poVnAdmQHYEKbvOPwc0e\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"23poVnAdmQHYEKbvOPwc0e\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandrie, Alexandra\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 2,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:23poVnAdmQHYEKbvOPwc0e\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 198986,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2BtLKJeue96XF0TNjyhIQb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2BtLKJeue96XF0TNjyhIQb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2BtLKJeue96XF0TNjyhIQb\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Je vais à Rio\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 3,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2BtLKJeue96XF0TNjyhIQb\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 182586,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4wNIncqhyOWZIrQoPOHNbc\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4wNIncqhyOWZIrQoPOHNbc\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4wNIncqhyOWZIrQoPOHNbc\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Belinda\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 4,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4wNIncqhyOWZIrQoPOHNbc\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 166333,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6lATNDLTHJSLY9OKQCoRNH\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6lATNDLTHJSLY9OKQCoRNH\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6lATNDLTHJSLY9OKQCoRNH\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Belles! Belles! Belles!\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 5,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6lATNDLTHJSLY9OKQCoRNH\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 187253,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"C'est la même chanson\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 6,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1Wuq5gFjuSdZUsBbMwwfFV\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 197933,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4L3YXv9QmiogiWzzKAsc4E\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4L3YXv9QmiogiWzzKAsc4E\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4L3YXv9QmiogiWzzKAsc4E\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Soudain il ne reste qu'une chanson\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 7,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4L3YXv9QmiogiWzzKAsc4E\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 229480,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Toi et le soleil\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 8,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Z6ga3tXcsNWXJkma6ZvTM\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 233306,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2Mx5LB8jvKH3f72cRl9ngO\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2Mx5LB8jvKH3f72cRl9ngO\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2Mx5LB8jvKH3f72cRl9ngO\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"17 ans\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 9,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2Mx5LB8jvKH3f72cRl9ngO\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 277360,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3yEmNsKT2FOGn6KZrG37c9\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3yEmNsKT2FOGn6KZrG37c9\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3yEmNsKT2FOGn6KZrG37c9\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Magnolias for Ever\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 10,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3yEmNsKT2FOGn6KZrG37c9\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 259826,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4rkNE6thMCp8AGFAtkjLz1\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4rkNE6thMCp8AGFAtkjLz1\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4rkNE6thMCp8AGFAtkjLz1\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Comme d'habitude\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 11,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4rkNE6thMCp8AGFAtkjLz1\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"artists\\\\\\\" : [ {\\\\n            \\\\\\\"external_urls\\\\\\\" : {\\\\n              \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n            },\\\\n            \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"id\\\\\\\" : \\\\\\\"6euPnGzBlDysAC5ecVguNZ\\\\\\\",\\\\n            \\\\\\\"name\\\\\\\" : \\\\\\\"M. Pokora\\\\\\\",\\\\n            \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n            \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6euPnGzBlDysAC5ecVguNZ\\\\\\\"\\\\n          } ],\\\\n          \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n          \\\\\\\"disc_number\\\\\\\" : 1,\\\\n          \\\\\\\"duration_ms\\\\\\\" : 252866,\\\\n          \\\\\\\"explicit\\\\\\\" : false,\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2lTvqwhMeDylllMWucVRw4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2lTvqwhMeDylllMWucVRw4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2lTvqwhMeDylllMWucVRw4\\\\\\\",\\\\n          \\\\\\\"is_local\\\\\\\" : false,\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandrie, Alexandra - Version Disco\\\\\\\",\\\\n          \\\\\\\"preview_url\\\\\\\" : null,\\\\n          \\\\\\\"track_number\\\\\\\" : 12,\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2lTvqwhMeDylllMWucVRw4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"limit\\\\\\\" : 50,\\\\n        \\\\\\\"next\\\\\\\" : null,\\\\n        \\\\\\\"offset\\\\\\\" : 0,\\\\n        \\\\\\\"previous\\\\\\\" : null,\\\\n        \\\\\\\"total\\\\\\\" : 12\\\\n      },\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4AI9rR2vIkMY8eYsHcMhzB\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : null,\\\\n  \\\\\\\"offset\\\\\\\" : 0,\\\\n  \\\\\\\"previous\\\\\\\" : null,\\\\n  \\\\\\\"total\\\\\\\" : 4\\\\n}\\\"\\n    }\\n}\"],\"ClientLibraryApiTest.testLibraryTracks\":[\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/tracks/contains?ids=3yi3SEVFj0mSiYVu8xT9sF\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjdhNjFiZDc1MmIwOGVkYzg3YjMwNDg2N2QxYzFhMTAwIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"9\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:22 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"[ false ]\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/tracks?limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-ImM2YmYxMTJiNzUxZDYzYTgyODg0ODJjN2Y3Zjg5ZGVjIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"223874\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:22 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=0&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-11-23T22:33:00Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"American Authors\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0V4laGZGshNCpurfIdUhHv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0V4laGZGshNCpurfIdUhHv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0V4laGZGshNCpurfIdUhHv\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273cc761ba55b0e7abad4539abe\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02cc761ba55b0e7abad4539abe\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851cc761ba55b0e7abad4539abe\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Oh, What A Life\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2014-01-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0V4laGZGshNCpurfIdUhHv\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"American Authors\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 220693,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM71309553\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4gHD93RNqEhEh2NkYzl3x6\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4gHD93RNqEhEh2NkYzl3x6\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4gHD93RNqEhEh2NkYzl3x6\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Luck\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 50,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/34276264e41a36fb903f6df1d97a985192923546?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4gHD93RNqEhEh2NkYzl3x6\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-10-25T18:53:23Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6v69fIFhI2VqebXUWcvWU1\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6v69fIFhI2VqebXUWcvWU1\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6v69fIFhI2VqebXUWcvWU1\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Strawberry Mountain\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6v69fIFhI2VqebXUWcvWU1\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0RAncxmZJJhL56IH2rFF2a\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0RAncxmZJJhL56IH2rFF2a\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0RAncxmZJJhL56IH2rFF2a\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2737923c375b57407f23c15ff7c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e027923c375b57407f23c15ff7c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048517923c375b57407f23c15ff7c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Harsh Augmented Reality\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-03-19\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0RAncxmZJJhL56IH2rFF2a\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6v69fIFhI2VqebXUWcvWU1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6v69fIFhI2VqebXUWcvWU1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6v69fIFhI2VqebXUWcvWU1\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Strawberry Mountain\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6v69fIFhI2VqebXUWcvWU1\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 242095,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFZ22069541\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1VsVY1ySdH3nVSWnLT5vCf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1VsVY1ySdH3nVSWnLT5vCf\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1VsVY1ySdH3nVSWnLT5vCf\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Harsh Augmented Reality\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 43,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ded1def5905f31e59277a1bb141615030feb5927?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1VsVY1ySdH3nVSWnLT5vCf\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-10-24T18:10:59Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/33LSz2nhC8pCPTb3pd5add\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/33LSz2nhC8pCPTb3pd5add\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"33LSz2nhC8pCPTb3pd5add\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Hot Flash Heat Wave\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:33LSz2nhC8pCPTb3pd5add\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4TZEULhM6BI1UrR1z3ejqx\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4TZEULhM6BI1UrR1z3ejqx\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4TZEULhM6BI1UrR1z3ejqx\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27353d3c1d9d7a61e05517c400e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0253d3c1d9d7a61e05517c400e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485153d3c1d9d7a61e05517c400e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Neapolitan\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2015-09-11\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4TZEULhM6BI1UrR1z3ejqx\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/33LSz2nhC8pCPTb3pd5add\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/33LSz2nhC8pCPTb3pd5add\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"33LSz2nhC8pCPTb3pd5add\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Hot Flash Heat Wave\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:33LSz2nhC8pCPTb3pd5add\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 188016,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCACI1545097\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Sp15qwSXH8xrk6dqPm8V4\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Sp15qwSXH8xrk6dqPm8V4\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3Sp15qwSXH8xrk6dqPm8V4\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Bathroom Song\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 44,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0fa1bfdee4dd65057e07af2b8fb1e8a994a524d2?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Sp15qwSXH8xrk6dqPm8V4\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-10-23T19:43:50Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/20YT1aOty5tsMebdFO9OM1\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/20YT1aOty5tsMebdFO9OM1\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"20YT1aOty5tsMebdFO9OM1\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sisyfuss\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:20YT1aOty5tsMebdFO9OM1\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4EgYEKyQnR4B8DEYBz18Fd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4EgYEKyQnR4B8DEYBz18Fd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4EgYEKyQnR4B8DEYBz18Fd\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d226b8179d379b232127ec83\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d226b8179d379b232127ec83\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d226b8179d379b232127ec83\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"You'll Find It in the End\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-10-12\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4EgYEKyQnR4B8DEYBz18Fd\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/20YT1aOty5tsMebdFO9OM1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/20YT1aOty5tsMebdFO9OM1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"20YT1aOty5tsMebdFO9OM1\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sisyfuss\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:20YT1aOty5tsMebdFO9OM1\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 131422,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ9Y21723963\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5RvxdCaZN1ojiYuqv3WEeO\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5RvxdCaZN1ojiYuqv3WEeO\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5RvxdCaZN1ojiYuqv3WEeO\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Cleric Girl\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 54,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e4e51d138ba6f084ad5fabe47a50ccfb9cebe114?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5RvxdCaZN1ojiYuqv3WEeO\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-10-13T04:21:09Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/00XrFl3G12emNX9Qqm6Gd4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/00XrFl3G12emNX9Qqm6Gd4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"00XrFl3G12emNX9Qqm6Gd4\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Petite League\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:00XrFl3G12emNX9Qqm6Gd4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6UuhjLE4P6sKAqrDlHcygc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6UuhjLE4P6sKAqrDlHcygc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6UuhjLE4P6sKAqrDlHcygc\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273095f1f4ebae2eb49aa7d5ea9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02095f1f4ebae2eb49aa7d5ea9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851095f1f4ebae2eb49aa7d5ea9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Rips One into the Night\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-09-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6UuhjLE4P6sKAqrDlHcygc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/00XrFl3G12emNX9Qqm6Gd4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/00XrFl3G12emNX9Qqm6Gd4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"00XrFl3G12emNX9Qqm6Gd4\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Petite League\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:00XrFl3G12emNX9Qqm6Gd4\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 180348,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADF1755213\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6s1HDGKsQJUi1kelHkXkXr\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6s1HDGKsQJUi1kelHkXkXr\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6s1HDGKsQJUi1kelHkXkXr\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Shin Bruise\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 36,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2c3a1a8c7ba5a9444dda6221849f7499232880ce?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6s1HDGKsQJUi1kelHkXkXr\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-10-09T07:00:39Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7xWU2A2lw1xf4zTjKhkrGK\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7xWU2A2lw1xf4zTjKhkrGK\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7xWU2A2lw1xf4zTjKhkrGK\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Miniature Tigers\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7xWU2A2lw1xf4zTjKhkrGK\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6LVXJslQ2aT7xyIBnDsXXj\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6LVXJslQ2aT7xyIBnDsXXj\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6LVXJslQ2aT7xyIBnDsXXj\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273e8a537f3bdcf99fbc62e65c2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02e8a537f3bdcf99fbc62e65c2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851e8a537f3bdcf99fbc62e65c2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Tell It to the Volcano\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2009-09-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6LVXJslQ2aT7xyIBnDsXXj\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7xWU2A2lw1xf4zTjKhkrGK\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7xWU2A2lw1xf4zTjKhkrGK\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7xWU2A2lw1xf4zTjKhkrGK\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Miniature Tigers\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7xWU2A2lw1xf4zTjKhkrGK\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 158653,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US8JX0900002\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2laAFvo3q3GIcXX7Ql8OeD\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2laAFvo3q3GIcXX7Ql8OeD\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2laAFvo3q3GIcXX7Ql8OeD\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Like or Like Like\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 62,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/df18e0cefad1212e1f315f10c042a4b3ee39475f?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2laAFvo3q3GIcXX7Ql8OeD\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-09-26T21:30:00Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0ZxZlO7oWCSYMXhehpyMvE\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0ZxZlO7oWCSYMXhehpyMvE\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0ZxZlO7oWCSYMXhehpyMvE\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"COIN\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0ZxZlO7oWCSYMXhehpyMvE\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0Ysl8PFnCzqyvjbAhaCMvf\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0Ysl8PFnCzqyvjbAhaCMvf\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0Ysl8PFnCzqyvjbAhaCMvf\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273eeb50d89d4791cd5cddd8fb9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02eeb50d89d4791cd5cddd8fb9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851eeb50d89d4791cd5cddd8fb9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Uncanny Valley\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2022-03-25\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 14,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0Ysl8PFnCzqyvjbAhaCMvf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0ZxZlO7oWCSYMXhehpyMvE\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0ZxZlO7oWCSYMXhehpyMvE\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0ZxZlO7oWCSYMXhehpyMvE\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"COIN\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0ZxZlO7oWCSYMXhehpyMvE\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 216187,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZJ842001482\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0ByROqFlBxTQeX4XlvE7Gk\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0ByROqFlBxTQeX4XlvE7Gk\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0ByROqFlBxTQeX4XlvE7Gk\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Brad Pitt\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 52,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/41099411436cafef07b14a82b6dde176013c2eca?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0ByROqFlBxTQeX4XlvE7Gk\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-09-20T18:23:37Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6ktN7KRUuaLMHyKOog3tGP\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6ktN7KRUuaLMHyKOog3tGP\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6ktN7KRUuaLMHyKOog3tGP\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"adan diaz\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6ktN7KRUuaLMHyKOog3tGP\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7Ah5gi5esQYI7UNNABFft4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7Ah5gi5esQYI7UNNABFft4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7Ah5gi5esQYI7UNNABFft4\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c1bba2d1111850355f5dc270\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c1bba2d1111850355f5dc270\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c1bba2d1111850355f5dc270\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"legroom\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-09-24\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7Ah5gi5esQYI7UNNABFft4\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6ktN7KRUuaLMHyKOog3tGP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6ktN7KRUuaLMHyKOog3tGP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6ktN7KRUuaLMHyKOog3tGP\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"adan diaz\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6ktN7KRUuaLMHyKOog3tGP\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 97000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QM38F2100062\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4JzuUq7VjNF32PJb51l8n5\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4JzuUq7VjNF32PJb51l8n5\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4JzuUq7VjNF32PJb51l8n5\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"legroom\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 57,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2666a4538b09c7faa392f044209515f8307e8235?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4JzuUq7VjNF32PJb51l8n5\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-09-15T21:29:32Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/73ejSZ5vfEzjfVZUkQev9R\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/73ejSZ5vfEzjfVZUkQev9R\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"73ejSZ5vfEzjfVZUkQev9R\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"sad brad\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:73ejSZ5vfEzjfVZUkQev9R\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2IxWHuiKF5dxR2arawAWEW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2IxWHuiKF5dxR2arawAWEW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2IxWHuiKF5dxR2arawAWEW\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27370c632cbefe23ac628ba3859\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0270c632cbefe23ac628ba3859\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485170c632cbefe23ac628ba3859\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"cheap caffeine\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-05-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2IxWHuiKF5dxR2arawAWEW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/73ejSZ5vfEzjfVZUkQev9R\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/73ejSZ5vfEzjfVZUkQev9R\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"73ejSZ5vfEzjfVZUkQev9R\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"sad brad\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:73ejSZ5vfEzjfVZUkQev9R\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 175321,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZHN72182719\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/40A3sJ7c7bqIhGx2WCruZX\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/40A3sJ7c7bqIhGx2WCruZX\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"40A3sJ7c7bqIhGx2WCruZX\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"cheap caffeine\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 36,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/b64f1e1c2015985ad479493ddbc6e77ccea96814?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:40A3sJ7c7bqIhGx2WCruZX\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-09-15T19:51:58Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5d9MnG7M9Kj02Aa8XQ06mA\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5d9MnG7M9Kj02Aa8XQ06mA\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5d9MnG7M9Kj02Aa8XQ06mA\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Wonderlands\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5d9MnG7M9Kj02Aa8XQ06mA\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6kExk3Ol5BH2a4vLV1obta\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6kExk3Ol5BH2a4vLV1obta\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6kExk3Ol5BH2a4vLV1obta\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273ab3d295627afcb7ecda86e86\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02ab3d295627afcb7ecda86e86\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851ab3d295627afcb7ecda86e86\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Push and The Pull\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-08-20\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 8,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6kExk3Ol5BH2a4vLV1obta\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5d9MnG7M9Kj02Aa8XQ06mA\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5d9MnG7M9Kj02Aa8XQ06mA\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5d9MnG7M9Kj02Aa8XQ06mA\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Wonderlands\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5d9MnG7M9Kj02Aa8XQ06mA\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 179642,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZK6K2154621\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0qtiaZRZsZMas0tiYISLHB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0qtiaZRZsZMas0tiYISLHB\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0qtiaZRZsZMas0tiYISLHB\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"House Party\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 25,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ccccbd1f884b5bb017a9a4a0a460c705a4128a06?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 7,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0qtiaZRZsZMas0tiYISLHB\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-09-04T02:36:47Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/74wg7Kd15mwGfCi2adNqAS\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/74wg7Kd15mwGfCi2adNqAS\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"74wg7Kd15mwGfCi2adNqAS\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"HOMER\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:74wg7Kd15mwGfCi2adNqAS\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5hRhdB0srvqtfC2U2SgfRG\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5hRhdB0srvqtfC2U2SgfRG\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5hRhdB0srvqtfC2U2SgfRG\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b66a89e2c3b10e3bf7c4b1df\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b66a89e2c3b10e3bf7c4b1df\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b66a89e2c3b10e3bf7c4b1df\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Mine\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-02-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5hRhdB0srvqtfC2U2SgfRG\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/74wg7Kd15mwGfCi2adNqAS\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/74wg7Kd15mwGfCi2adNqAS\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"74wg7Kd15mwGfCi2adNqAS\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"HOMER\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:74wg7Kd15mwGfCi2adNqAS\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 156792,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFYY2045329\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/39EW6tNSfnLwN3UsosKZ2C\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/39EW6tNSfnLwN3UsosKZ2C\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"39EW6tNSfnLwN3UsosKZ2C\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Mine\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 38,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/282765d4abe54b685d52d6b96f3e50aa40afa827?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:39EW6tNSfnLwN3UsosKZ2C\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-08-28T21:35:10Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6KImCVD70vtIoJWnq6nGn3\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6KImCVD70vtIoJWnq6nGn3\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6KImCVD70vtIoJWnq6nGn3\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Harry Styles\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6KImCVD70vtIoJWnq6nGn3\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2pqdSWeJVsXAhHFuVLzuA8\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2pqdSWeJVsXAhHFuVLzuA8\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2pqdSWeJVsXAhHFuVLzuA8\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b46f74097655d7f353caab14\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b46f74097655d7f353caab14\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b46f74097655d7f353caab14\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"As It Was\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2022-03-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2pqdSWeJVsXAhHFuVLzuA8\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6KImCVD70vtIoJWnq6nGn3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6KImCVD70vtIoJWnq6nGn3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6KImCVD70vtIoJWnq6nGn3\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Harry Styles\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6KImCVD70vtIoJWnq6nGn3\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 167303,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USSM12200612\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4LRPiXqCikLlN15c3yImP7\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4LRPiXqCikLlN15c3yImP7\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4LRPiXqCikLlN15c3yImP7\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"As It Was\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 93,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c871f7a3b36ad708640a833fbf7a0b9e84c5b688?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4LRPiXqCikLlN15c3yImP7\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-08-16T17:58:34Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2u17Ej1u0JHyRsstmofsrh\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2u17Ej1u0JHyRsstmofsrh\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2u17Ej1u0JHyRsstmofsrh\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"modernlove.\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2u17Ej1u0JHyRsstmofsrh\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1lQ44YDcd9JrYFKWgfrwAG\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1lQ44YDcd9JrYFKWgfrwAG\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1lQ44YDcd9JrYFKWgfrwAG\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2739fae4b2bee3b4e767cba5116\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e029fae4b2bee3b4e767cba5116\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048519fae4b2bee3b4e767cba5116\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Oh My Mind\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2022-07-29\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 7,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1lQ44YDcd9JrYFKWgfrwAG\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2u17Ej1u0JHyRsstmofsrh\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2u17Ej1u0JHyRsstmofsrh\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2u17Ej1u0JHyRsstmofsrh\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"modernlove.\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2u17Ej1u0JHyRsstmofsrh\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 217237,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QM4TW2217176\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4UxN8lazAt9H7xTPn8kEev\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4UxN8lazAt9H7xTPn8kEev\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4UxN8lazAt9H7xTPn8kEev\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Follow You\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 44,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/9ac8ae635e808f4b118649e6159ae59650d60c82?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4UxN8lazAt9H7xTPn8kEev\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-08-07T01:32:39Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2LwlPBOoq9EqTOmKi4lJ2n\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2LwlPBOoq9EqTOmKi4lJ2n\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2LwlPBOoq9EqTOmKi4lJ2n\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Abby Cates\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2LwlPBOoq9EqTOmKi4lJ2n\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0RzTwg0NExClE4DJWs8Rf9\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0RzTwg0NExClE4DJWs8Rf9\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0RzTwg0NExClE4DJWs8Rf9\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2739d2353550f51cc4ba1a62cd0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e029d2353550f51cc4ba1a62cd0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048519d2353550f51cc4ba1a62cd0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Better Friends\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-07-28\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0RzTwg0NExClE4DJWs8Rf9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2LwlPBOoq9EqTOmKi4lJ2n\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2LwlPBOoq9EqTOmKi4lJ2n\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2LwlPBOoq9EqTOmKi4lJ2n\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Abby Cates\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2LwlPBOoq9EqTOmKi4lJ2n\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 180428,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US3DF2188956\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/16HvU7Y8TNgVjzm987FIco\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/16HvU7Y8TNgVjzm987FIco\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"16HvU7Y8TNgVjzm987FIco\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Better Friends\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 57,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d6f7745954858bd3cf95766604c73c06dd3bd112?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:16HvU7Y8TNgVjzm987FIco\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-07-31T03:05:02Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0USR2QFOObXNb4xQxDeLjs\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0USR2QFOObXNb4xQxDeLjs\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0USR2QFOObXNb4xQxDeLjs\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Julianna Joy\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0USR2QFOObXNb4xQxDeLjs\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/09I3k7LK3Hgg9FaXKFXCOR\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/09I3k7LK3Hgg9FaXKFXCOR\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"09I3k7LK3Hgg9FaXKFXCOR\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2738a422b443100d2d7ceb2768a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e028a422b443100d2d7ceb2768a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048518a422b443100d2d7ceb2768a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Cherry Bomb\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-01-17\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:09I3k7LK3Hgg9FaXKFXCOR\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0USR2QFOObXNb4xQxDeLjs\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0USR2QFOObXNb4xQxDeLjs\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0USR2QFOObXNb4xQxDeLjs\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Julianna Joy\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0USR2QFOObXNb4xQxDeLjs\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 228426,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEP2037384\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1yyRet7pgLwTGGxGkbbaaa\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1yyRet7pgLwTGGxGkbbaaa\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1yyRet7pgLwTGGxGkbbaaa\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Cherry Bomb\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 48,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e94ad0042c2d14634706476331d682e966cb941d?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1yyRet7pgLwTGGxGkbbaaa\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-07-24T04:07:46Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/73tITL3u5T35u309PLpN6K\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/73tITL3u5T35u309PLpN6K\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"73tITL3u5T35u309PLpN6K\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Hotel Garuda\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:73tITL3u5T35u309PLpN6K\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1ZxqpllItkGPppTnYq1xpX\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1ZxqpllItkGPppTnYq1xpX\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1ZxqpllItkGPppTnYq1xpX\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27399619d39066c5cc3dd3b9a2f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0299619d39066c5cc3dd3b9a2f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485199619d39066c5cc3dd3b9a2f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Tension\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-09-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 4,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1ZxqpllItkGPppTnYq1xpX\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/73tITL3u5T35u309PLpN6K\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/73tITL3u5T35u309PLpN6K\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"73tITL3u5T35u309PLpN6K\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Hotel Garuda\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:73tITL3u5T35u309PLpN6K\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 236528,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQE92000121\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/14w3VLrD9ssdLalMDMZ0ZQ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/14w3VLrD9ssdLalMDMZ0ZQ\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"14w3VLrD9ssdLalMDMZ0ZQ\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Olivia\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 34,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3370f58d2d743311c778af9fd305034dce85c387?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:14w3VLrD9ssdLalMDMZ0ZQ\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-07-12T21:53:38Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/48PAAxWdIDbA4WHkHjgsEv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/48PAAxWdIDbA4WHkHjgsEv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"48PAAxWdIDbA4WHkHjgsEv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Wild Party\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:48PAAxWdIDbA4WHkHjgsEv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1tf5398dowYAFLhJhlMDNf\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1tf5398dowYAFLhJhlMDNf\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1tf5398dowYAFLhJhlMDNf\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273ed5b713c4714e8f2ec5f8c88\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02ed5b713c4714e8f2ec5f8c88\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851ed5b713c4714e8f2ec5f8c88\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Coexist\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-09-15\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1tf5398dowYAFLhJhlMDNf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/48PAAxWdIDbA4WHkHjgsEv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/48PAAxWdIDbA4WHkHjgsEv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"48PAAxWdIDbA4WHkHjgsEv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wild Party\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:48PAAxWdIDbA4WHkHjgsEv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 161722,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAFT2100802\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7jl1idFvnDuH7wksvomc6f\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7jl1idFvnDuH7wksvomc6f\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7jl1idFvnDuH7wksvomc6f\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Coexist\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 41,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e8a2bba1dc5ae529e5b9fb6b5f9ac8aad0e0e2bd?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7jl1idFvnDuH7wksvomc6f\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-07-03T02:58:18Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5sU8kGIBhMYhDIPr0zu20w\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5sU8kGIBhMYhDIPr0zu20w\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5sU8kGIBhMYhDIPr0zu20w\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Swim\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5sU8kGIBhMYhDIPr0zu20w\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/66KH6Vaml9coBhAP5hbbYf\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/66KH6Vaml9coBhAP5hbbYf\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"66KH6Vaml9coBhAP5hbbYf\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733ee2147aa633926aa0f29872\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023ee2147aa633926aa0f29872\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513ee2147aa633926aa0f29872\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Moonlight\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-01-29\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:66KH6Vaml9coBhAP5hbbYf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5sU8kGIBhMYhDIPr0zu20w\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5sU8kGIBhMYhDIPr0zu20w\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5sU8kGIBhMYhDIPr0zu20w\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Swim\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5sU8kGIBhMYhDIPr0zu20w\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 213621,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"uscgh2132529\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3XQpK8eESg2l9JpTJdB02g\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3XQpK8eESg2l9JpTJdB02g\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3XQpK8eESg2l9JpTJdB02g\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Moonlight\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 36,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/6b71f963b7a9ec9a1229f1bea9356118535667fd?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3XQpK8eESg2l9JpTJdB02g\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-06-10T20:06:22Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4rBmgPisz2KuN6czxDpIcu\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4rBmgPisz2KuN6czxDpIcu\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4rBmgPisz2KuN6czxDpIcu\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"slimdan\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4rBmgPisz2KuN6czxDpIcu\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2JADOEbL4IXyki8dEy6orH\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2JADOEbL4IXyki8dEy6orH\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2JADOEbL4IXyki8dEy6orH\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2739b8951c205cda5e06291aea0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e029b8951c205cda5e06291aea0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048519b8951c205cda5e06291aea0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Be Somebody\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2022-01-18\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 2,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2JADOEbL4IXyki8dEy6orH\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4rBmgPisz2KuN6czxDpIcu\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4rBmgPisz2KuN6czxDpIcu\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4rBmgPisz2KuN6czxDpIcu\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"slimdan\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4rBmgPisz2KuN6czxDpIcu\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 182209,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GB6TW2100147\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/03IItNj9PppGuPjVx0wVC8\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/03IItNj9PppGuPjVx0wVC8\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"03IItNj9PppGuPjVx0wVC8\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Be Somebody\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 16,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/370f37eed9e44c91d73d5d565d13e664e3bc13ab?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:03IItNj9PppGuPjVx0wVC8\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-06-08T18:45:27Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0T7K16td62laqeZKtTyv4e\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0T7K16td62laqeZKtTyv4e\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0T7K16td62laqeZKtTyv4e\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Matt Hall\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0T7K16td62laqeZKtTyv4e\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6hzf6JZJBrNSL3dPfWXN0Z\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6hzf6JZJBrNSL3dPfWXN0Z\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6hzf6JZJBrNSL3dPfWXN0Z\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c19d26bbf2986f37df76092d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c19d26bbf2986f37df76092d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c19d26bbf2986f37df76092d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"gut feelings\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-01-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6hzf6JZJBrNSL3dPfWXN0Z\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0T7K16td62laqeZKtTyv4e\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0T7K16td62laqeZKtTyv4e\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0T7K16td62laqeZKtTyv4e\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Matt Hall\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0T7K16td62laqeZKtTyv4e\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 171845,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL2082013\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3LoI5BdMkhLXsawwC10xH1\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3LoI5BdMkhLXsawwC10xH1\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3LoI5BdMkhLXsawwC10xH1\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"gut feelings\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 25,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3LoI5BdMkhLXsawwC10xH1\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-06-01T20:32:03Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4dlRCpXe2gSqju4egrfjRj\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4dlRCpXe2gSqju4egrfjRj\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4dlRCpXe2gSqju4egrfjRj\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Hoonch\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4dlRCpXe2gSqju4egrfjRj\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0OW2VQPnRq7CunOlwIwS3l\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0OW2VQPnRq7CunOlwIwS3l\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0OW2VQPnRq7CunOlwIwS3l\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730d216758ad3183c4de49b886\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020d216758ad3183c4de49b886\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510d216758ad3183c4de49b886\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Audio Paradiso\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-08-05\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0OW2VQPnRq7CunOlwIwS3l\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4dlRCpXe2gSqju4egrfjRj\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4dlRCpXe2gSqju4egrfjRj\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4dlRCpXe2gSqju4egrfjRj\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Hoonch\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4dlRCpXe2gSqju4egrfjRj\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 207029,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US3DF1619492\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3DpDUaoeUJ1mYSV6Iv4sj9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3DpDUaoeUJ1mYSV6Iv4sj9\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3DpDUaoeUJ1mYSV6Iv4sj9\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"101\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 29,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/976b8aad70000d66bc0ba1489935b50a6c39ad6a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3DpDUaoeUJ1mYSV6Iv4sj9\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-05-27T16:36:46Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0CqDdSmQpezWGxxjvDGzqT\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0CqDdSmQpezWGxxjvDGzqT\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0CqDdSmQpezWGxxjvDGzqT\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"WHALES•TALK\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0CqDdSmQpezWGxxjvDGzqT\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5H6oA8m2K12fFrxGnpXEv9\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5H6oA8m2K12fFrxGnpXEv9\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5H6oA8m2K12fFrxGnpXEv9\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b6296f52e63e74e3a453b7ae\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b6296f52e63e74e3a453b7ae\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b6296f52e63e74e3a453b7ae\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Catching On\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-07-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5H6oA8m2K12fFrxGnpXEv9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0CqDdSmQpezWGxxjvDGzqT\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0CqDdSmQpezWGxxjvDGzqT\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0CqDdSmQpezWGxxjvDGzqT\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"WHALES•TALK\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0CqDdSmQpezWGxxjvDGzqT\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 178077,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZHZ62141521\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/328dOzHmFwoBe0IkT96mRj\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/328dOzHmFwoBe0IkT96mRj\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"328dOzHmFwoBe0IkT96mRj\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Catching On\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 41,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/6ece9d9089392fc593338f54f59b888f2b934135?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:328dOzHmFwoBe0IkT96mRj\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-05-27T16:30:30Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1bFZcP8Yne2fJixI7SCULR\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1bFZcP8Yne2fJixI7SCULR\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1bFZcP8Yne2fJixI7SCULR\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Cade Hoppe\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1bFZcP8Yne2fJixI7SCULR\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4N1BxC1dhRs5TxS4oJYVmm\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4N1BxC1dhRs5TxS4oJYVmm\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4N1BxC1dhRs5TxS4oJYVmm\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27374054e1eaef6306286e49aae\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0274054e1eaef6306286e49aae\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485174054e1eaef6306286e49aae\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Tell Me How It's Worth It (Deluxe Edition)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-12-03\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 8,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4N1BxC1dhRs5TxS4oJYVmm\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1bFZcP8Yne2fJixI7SCULR\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1bFZcP8Yne2fJixI7SCULR\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1bFZcP8Yne2fJixI7SCULR\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Cade Hoppe\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1bFZcP8Yne2fJixI7SCULR\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 216733,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZHN62145528\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4vuZZU9LUgwlGHRaPgbAhM\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4vuZZU9LUgwlGHRaPgbAhM\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4vuZZU9LUgwlGHRaPgbAhM\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"On My Way Down\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 11,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3c31c8cfac01997c0b1bfd7da57946dd41ebe9c9?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4vuZZU9LUgwlGHRaPgbAhM\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-05-26T18:47:23Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1XyjBsbZBunXsYDTkaYtk9\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1XyjBsbZBunXsYDTkaYtk9\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1XyjBsbZBunXsYDTkaYtk9\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Knox Hamilton\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1XyjBsbZBunXsYDTkaYtk9\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1JncPjSctoYOSU2lYeQQsm\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1JncPjSctoYOSU2lYeQQsm\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1JncPjSctoYOSU2lYeQQsm\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273cc609cce427c918574b2e417\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02cc609cce427c918574b2e417\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851cc609cce427c918574b2e417\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Beach Boy - EP\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-07-06\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 4,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1JncPjSctoYOSU2lYeQQsm\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1XyjBsbZBunXsYDTkaYtk9\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1XyjBsbZBunXsYDTkaYtk9\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1XyjBsbZBunXsYDTkaYtk9\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Knox Hamilton\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1XyjBsbZBunXsYDTkaYtk9\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 227323,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADR1891893\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5r6dpSK8qbHVirjvVbCGt9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5r6dpSK8qbHVirjvVbCGt9\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5r6dpSK8qbHVirjvVbCGt9\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Beach Boy\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 36,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3335a21a8107d8ba75e6cd6e1fa467bc003f80ef?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5r6dpSK8qbHVirjvVbCGt9\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-05-18T03:34:47Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3jx7HGyoa2APekVbiXZvFh\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3jx7HGyoa2APekVbiXZvFh\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3jx7HGyoa2APekVbiXZvFh\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Astronomers\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3jx7HGyoa2APekVbiXZvFh\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3MmNXnSh5AXYnQK9m1bV3A\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3MmNXnSh5AXYnQK9m1bV3A\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3MmNXnSh5AXYnQK9m1bV3A\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273525f06df1d2467ed5ba75bd9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02525f06df1d2467ed5ba75bd9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851525f06df1d2467ed5ba75bd9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Hotel Rooms\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2022-02-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3MmNXnSh5AXYnQK9m1bV3A\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3jx7HGyoa2APekVbiXZvFh\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3jx7HGyoa2APekVbiXZvFh\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3jx7HGyoa2APekVbiXZvFh\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Astronomers\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3jx7HGyoa2APekVbiXZvFh\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 218181,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"uscgh2226575\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2lg25Ow6QERv7s6OvxKyv4\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2lg25Ow6QERv7s6OvxKyv4\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2lg25Ow6QERv7s6OvxKyv4\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Hotel Rooms\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 46,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/4d1a0b62c67a366e6838bc59431c1cf3c9aa78a8?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2lg25Ow6QERv7s6OvxKyv4\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-05-08T07:59:20Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4gQ4sNaO88EuYv8z8FUilY\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4gQ4sNaO88EuYv8z8FUilY\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4gQ4sNaO88EuYv8z8FUilY\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"PRETTY AWKWARD\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4gQ4sNaO88EuYv8z8FUilY\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1GkyFd84NM2MQSv7GiQhLd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1GkyFd84NM2MQSv7GiQhLd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1GkyFd84NM2MQSv7GiQhLd\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273f8da8e409ff6752b7c11cd97\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02f8da8e409ff6752b7c11cd97\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851f8da8e409ff6752b7c11cd97\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Hang Out\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-07-23\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1GkyFd84NM2MQSv7GiQhLd\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4gQ4sNaO88EuYv8z8FUilY\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4gQ4sNaO88EuYv8z8FUilY\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4gQ4sNaO88EuYv8z8FUilY\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"PRETTY AWKWARD\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4gQ4sNaO88EuYv8z8FUilY\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 194219,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQX91900809\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4H4pVznrGr3n6zNmdypCz4\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4H4pVznrGr3n6zNmdypCz4\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4H4pVznrGr3n6zNmdypCz4\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Hang Out\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 11,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1c97ae8793469a26a1e7e20123abefaeca9469ed?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4H4pVznrGr3n6zNmdypCz4\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-05-08T07:55:59Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3srupAODFNn7Dx4ZUg4uqM\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3srupAODFNn7Dx4ZUg4uqM\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3srupAODFNn7Dx4ZUg4uqM\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Raynes\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3srupAODFNn7Dx4ZUg4uqM\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4M95wuIguPnAhjrO82lvAP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4M95wuIguPnAhjrO82lvAP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4M95wuIguPnAhjrO82lvAP\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2737dbec2fe6236035f94979dce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e027dbec2fe6236035f94979dce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048517dbec2fe6236035f94979dce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Second Thought\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-11-27\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4M95wuIguPnAhjrO82lvAP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3srupAODFNn7Dx4ZUg4uqM\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3srupAODFNn7Dx4ZUg4uqM\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3srupAODFNn7Dx4ZUg4uqM\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Raynes\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3srupAODFNn7Dx4ZUg4uqM\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 201893,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1973424\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/77dMYGw2IIT1HR9ZtL6dGB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/77dMYGw2IIT1HR9ZtL6dGB\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"77dMYGw2IIT1HR9ZtL6dGB\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Second Thought\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 18,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:77dMYGw2IIT1HR9ZtL6dGB\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-05-04T18:40:46Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3X8yPl8ntOiAtXr9cZKD8u\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3X8yPl8ntOiAtXr9cZKD8u\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3X8yPl8ntOiAtXr9cZKD8u\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sam and Sounds\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3X8yPl8ntOiAtXr9cZKD8u\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/50mfKowXHAbwZ2ik03FY8n\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/50mfKowXHAbwZ2ik03FY8n\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"50mfKowXHAbwZ2ik03FY8n\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273101edf5ff1167dc203a6d5d1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02101edf5ff1167dc203a6d5d1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851101edf5ff1167dc203a6d5d1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Cloud 9\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-06-26\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:50mfKowXHAbwZ2ik03FY8n\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3X8yPl8ntOiAtXr9cZKD8u\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3X8yPl8ntOiAtXr9cZKD8u\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3X8yPl8ntOiAtXr9cZKD8u\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sam and Sounds\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3X8yPl8ntOiAtXr9cZKD8u\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 199578,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZHN32080841\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4MA2sZsOr0fbGZag4AiQDP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4MA2sZsOr0fbGZag4AiQDP\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4MA2sZsOr0fbGZag4AiQDP\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Cloud 9\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 30,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4MA2sZsOr0fbGZag4AiQDP\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-05-03T19:20:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/18MQBI4T40d9Cg9Uzj3Kh3\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/18MQBI4T40d9Cg9Uzj3Kh3\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"18MQBI4T40d9Cg9Uzj3Kh3\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Daniel Blair\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:18MQBI4T40d9Cg9Uzj3Kh3\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4NxBmflGjRvSecJZpS6sOM\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4NxBmflGjRvSecJZpS6sOM\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4NxBmflGjRvSecJZpS6sOM\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730b91119bc07b54fcab4a88c5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020b91119bc07b54fcab4a88c5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510b91119bc07b54fcab4a88c5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Flip Side Pt. One\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-11-08\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4NxBmflGjRvSecJZpS6sOM\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/18MQBI4T40d9Cg9Uzj3Kh3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/18MQBI4T40d9Cg9Uzj3Kh3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"18MQBI4T40d9Cg9Uzj3Kh3\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Daniel Blair\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:18MQBI4T40d9Cg9Uzj3Kh3\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 169307,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZK6F2039843\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7CrXwlj523rVbKIJqxOcRU\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7CrXwlj523rVbKIJqxOcRU\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7CrXwlj523rVbKIJqxOcRU\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"The Forgottens\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 32,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/9533fccbeb9bc41312df704561b9b992f5cf5e13?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7CrXwlj523rVbKIJqxOcRU\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-04-14T00:50:35Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3OYYN1sVAjeYS6sRlCH19H\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3OYYN1sVAjeYS6sRlCH19H\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3OYYN1sVAjeYS6sRlCH19H\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Leah Sykes\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3OYYN1sVAjeYS6sRlCH19H\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/16fbzlxW4rQ9O84nMLtNJP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/16fbzlxW4rQ9O84nMLtNJP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"16fbzlxW4rQ9O84nMLtNJP\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2738384fa03417cc2adb0d90434\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e028384fa03417cc2adb0d90434\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048518384fa03417cc2adb0d90434\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"I've Always Been Like This\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-04-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:16fbzlxW4rQ9O84nMLtNJP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3OYYN1sVAjeYS6sRlCH19H\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3OYYN1sVAjeYS6sRlCH19H\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3OYYN1sVAjeYS6sRlCH19H\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Leah Sykes\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3OYYN1sVAjeYS6sRlCH19H\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 177559,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAFH2052120\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0EleV3FPfzLz4THn10H1sx\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0EleV3FPfzLz4THn10H1sx\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0EleV3FPfzLz4THn10H1sx\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Sorry to the Waitress\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 30,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/40470a74a083bbdadd0467d360f9fcf4437400ad?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0EleV3FPfzLz4THn10H1sx\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-04-01T19:40:48Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/32Ko3nL0210QAt14S3Rs4Y\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/32Ko3nL0210QAt14S3Rs4Y\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"32Ko3nL0210QAt14S3Rs4Y\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sjowgren\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:32Ko3nL0210QAt14S3Rs4Y\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7HxeuvcM84U4sWEtOSlePG\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7HxeuvcM84U4sWEtOSlePG\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7HxeuvcM84U4sWEtOSlePG\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2734b3973fe57b73ffaab463c15\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e024b3973fe57b73ffaab463c15\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048514b3973fe57b73ffaab463c15\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"win'20\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-02-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 4,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7HxeuvcM84U4sWEtOSlePG\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/32Ko3nL0210QAt14S3Rs4Y\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/32Ko3nL0210QAt14S3Rs4Y\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"32Ko3nL0210QAt14S3Rs4Y\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sjowgren\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:32Ko3nL0210QAt14S3Rs4Y\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 179933,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFZ22054718\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1EmUW3D8vAfp2miQJTMupc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1EmUW3D8vAfp2miQJTMupc\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1EmUW3D8vAfp2miQJTMupc\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"What Goes Around\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 48,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/9dd70ee14335a3169de4d34df89f7ca290b8ac97?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1EmUW3D8vAfp2miQJTMupc\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-03-29T20:22:48Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/46U5WmejGzsPqUiw3Uw0Xq\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/46U5WmejGzsPqUiw3Uw0Xq\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"46U5WmejGzsPqUiw3Uw0Xq\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Vian Izak\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:46U5WmejGzsPqUiw3Uw0Xq\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4rCcHDbNIPKBkYi1rdgPYr\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4rCcHDbNIPKBkYi1rdgPYr\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4rCcHDbNIPKBkYi1rdgPYr\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c3d67952d8c13e5114629c2c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c3d67952d8c13e5114629c2c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c3d67952d8c13e5114629c2c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Northern Anthems\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-23\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4rCcHDbNIPKBkYi1rdgPYr\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/46U5WmejGzsPqUiw3Uw0Xq\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/46U5WmejGzsPqUiw3Uw0Xq\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"46U5WmejGzsPqUiw3Uw0Xq\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Vian Izak\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:46U5WmejGzsPqUiw3Uw0Xq\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 213725,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ8R71700015\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2GpkEkmkg2GJSOaZCZqlOx\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2GpkEkmkg2GJSOaZCZqlOx\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2GpkEkmkg2GJSOaZCZqlOx\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"The London Air Raids\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 48,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/02fa427b4fef1d6a72f97b270418a42336df9f27?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2GpkEkmkg2GJSOaZCZqlOx\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-03-28T18:44:17Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2x6K5sYwi04Ev2zyGki2nu\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2x6K5sYwi04Ev2zyGki2nu\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2x6K5sYwi04Ev2zyGki2nu\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"My Kid Brother\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2x6K5sYwi04Ev2zyGki2nu\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2bs7tVRu6oq5IDFuIHEEY4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2bs7tVRu6oq5IDFuIHEEY4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2bs7tVRu6oq5IDFuIHEEY4\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2738dd08faf87d482d006f4e7bc\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e028dd08faf87d482d006f4e7bc\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048518dd08faf87d482d006f4e7bc\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Pastels\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-03-06\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2bs7tVRu6oq5IDFuIHEEY4\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2x6K5sYwi04Ev2zyGki2nu\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2x6K5sYwi04Ev2zyGki2nu\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2x6K5sYwi04Ev2zyGki2nu\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"My Kid Brother\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2x6K5sYwi04Ev2zyGki2nu\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 242520,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US5262023541\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6lawRqK6mTMLb8OnvghKN5\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6lawRqK6mTMLb8OnvghKN5\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6lawRqK6mTMLb8OnvghKN5\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Pastels\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 34,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/882521f587458e11360e59cae2a5a0ca96034e22?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6lawRqK6mTMLb8OnvghKN5\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-03-25T21:10:59Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3SoOohS0zlj8nLdGmhrKA7\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3SoOohS0zlj8nLdGmhrKA7\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3SoOohS0zlj8nLdGmhrKA7\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Olivver the Kid\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3SoOohS0zlj8nLdGmhrKA7\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7bDNfNr6IAu9G1BKvTgVNx\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7bDNfNr6IAu9G1BKvTgVNx\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7bDNfNr6IAu9G1BKvTgVNx\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27312828a7e2164ac524ea90b18\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0212828a7e2164ac524ea90b18\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485112828a7e2164ac524ea90b18\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ego Surfin'\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-07-13\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7bDNfNr6IAu9G1BKvTgVNx\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3SoOohS0zlj8nLdGmhrKA7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3SoOohS0zlj8nLdGmhrKA7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3SoOohS0zlj8nLdGmhrKA7\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Olivver the Kid\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3SoOohS0zlj8nLdGmhrKA7\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 221875,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADS1846864\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1wVgA156IkWCK13DFbRgjp\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1wVgA156IkWCK13DFbRgjp\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1wVgA156IkWCK13DFbRgjp\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Vegas, Baby.\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 39,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c843b44c0ebde25503ed1e0551adc4ba503228c9?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1wVgA156IkWCK13DFbRgjp\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-03-24T19:49:20Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6ZuXJQZ4dNselMcRMUvUYs\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6ZuXJQZ4dNselMcRMUvUYs\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6ZuXJQZ4dNselMcRMUvUYs\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Tyler James Bellinger\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6ZuXJQZ4dNselMcRMUvUYs\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/40pKOASSVp9VhEQpbqvdFw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/40pKOASSVp9VhEQpbqvdFw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"40pKOASSVp9VhEQpbqvdFw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273db05dae7eb18f546bdd159ad\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02db05dae7eb18f546bdd159ad\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851db05dae7eb18f546bdd159ad\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"I'm Back !\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-12-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:40pKOASSVp9VhEQpbqvdFw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6ZuXJQZ4dNselMcRMUvUYs\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6ZuXJQZ4dNselMcRMUvUYs\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6ZuXJQZ4dNselMcRMUvUYs\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Tyler James Bellinger\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6ZuXJQZ4dNselMcRMUvUYs\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 166213,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"usl4r2131793\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/25p5SY0s0yQKw68T1hQl1f\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/25p5SY0s0yQKw68T1hQl1f\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"25p5SY0s0yQKw68T1hQl1f\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"I'm Back !\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 12,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c73c81ceb57169bf43cb24e5038c77a95ef3d50e?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:25p5SY0s0yQKw68T1hQl1f\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-03-02T16:05:46Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5h9iFvQJtAzSqYgpZU1GMm\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5h9iFvQJtAzSqYgpZU1GMm\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5h9iFvQJtAzSqYgpZU1GMm\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Highly Unlikely\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5h9iFvQJtAzSqYgpZU1GMm\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0nxex33qAmrt2rUBfBTAzS\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0nxex33qAmrt2rUBfBTAzS\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0nxex33qAmrt2rUBfBTAzS\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732af6afbfa279aff3e6e2dbc1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022af6afbfa279aff3e6e2dbc1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512af6afbfa279aff3e6e2dbc1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Touch\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-12-18\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 7,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0nxex33qAmrt2rUBfBTAzS\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5h9iFvQJtAzSqYgpZU1GMm\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5h9iFvQJtAzSqYgpZU1GMm\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5h9iFvQJtAzSqYgpZU1GMm\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Highly Unlikely\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5h9iFvQJtAzSqYgpZU1GMm\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 205474,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMGR32080463\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/08AGATD46KP7etUQu7HLZP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/08AGATD46KP7etUQu7HLZP\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"08AGATD46KP7etUQu7HLZP\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Touch\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 8,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:08AGATD46KP7etUQu7HLZP\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-02-12T05:52:56Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6HO599GtzYWMF4BsvwB1E6\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6HO599GtzYWMF4BsvwB1E6\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6HO599GtzYWMF4BsvwB1E6\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Moonroof\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6HO599GtzYWMF4BsvwB1E6\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7sdlwqWvW8WoAzZ67DoC4W\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7sdlwqWvW8WoAzZ67DoC4W\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7sdlwqWvW8WoAzZ67DoC4W\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730a3b058baed1aac098d38b0a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020a3b058baed1aac098d38b0a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510a3b058baed1aac098d38b0a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Dream State\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-10-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 7,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7sdlwqWvW8WoAzZ67DoC4W\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6HO599GtzYWMF4BsvwB1E6\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6HO599GtzYWMF4BsvwB1E6\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6HO599GtzYWMF4BsvwB1E6\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Moonroof\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6HO599GtzYWMF4BsvwB1E6\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 228148,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFYW2157028\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Pp6NKbZb0sgyk2190Rb9D\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Pp6NKbZb0sgyk2190Rb9D\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3Pp6NKbZb0sgyk2190Rb9D\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Vanilla\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Pp6NKbZb0sgyk2190Rb9D\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-02-05T07:18:14Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1oPRcJUkloHaRLYx0olBLJ\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1oPRcJUkloHaRLYx0olBLJ\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1oPRcJUkloHaRLYx0olBLJ\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Magdalena Bay\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1oPRcJUkloHaRLYx0olBLJ\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1ERrUvG31thFCxdwWUoJrY\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1ERrUvG31thFCxdwWUoJrY\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1ERrUvG31thFCxdwWUoJrY\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730ecbdac77e72dc16719a3e89\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020ecbdac77e72dc16719a3e89\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510ecbdac77e72dc16719a3e89\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Mercurial World\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-10-08\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 14,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1ERrUvG31thFCxdwWUoJrY\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1oPRcJUkloHaRLYx0olBLJ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1oPRcJUkloHaRLYx0olBLJ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1oPRcJUkloHaRLYx0olBLJ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Magdalena Bay\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1oPRcJUkloHaRLYx0olBLJ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 204363,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QM6N22162294\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3WkEKyrkEtbqN6mxZQi1dn\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3WkEKyrkEtbqN6mxZQi1dn\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3WkEKyrkEtbqN6mxZQi1dn\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Dawning of the Season\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 48,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/4418b4380aa1de080bde5ed14b913fdc9ef1e5a1?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3WkEKyrkEtbqN6mxZQi1dn\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-01-07T18:47:33Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6vVztIuqdDHvYWxOEXCzjN\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6vVztIuqdDHvYWxOEXCzjN\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6vVztIuqdDHvYWxOEXCzjN\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"SALES\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6vVztIuqdDHvYWxOEXCzjN\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7ywSMs3G2OWOGVKMqc7KsE\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7ywSMs3G2OWOGVKMqc7KsE\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7ywSMs3G2OWOGVKMqc7KsE\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2731138eea74b6d7e06289bedaa\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e021138eea74b6d7e06289bedaa\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048511138eea74b6d7e06289bedaa\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"SALES LP\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-04-20\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 15,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7ywSMs3G2OWOGVKMqc7KsE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6vVztIuqdDHvYWxOEXCzjN\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6vVztIuqdDHvYWxOEXCzjN\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6vVztIuqdDHvYWxOEXCzjN\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"SALES\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6vVztIuqdDHvYWxOEXCzjN\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 187333,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCACN1687807\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0So2sgVa8aJiARPl2P29u2\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0So2sgVa8aJiARPl2P29u2\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0So2sgVa8aJiARPl2P29u2\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Pope Is a Rockstar\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 72,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aff5fea2958b4f6f40e5b53cf5288e8e61fd2a89?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 6,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0So2sgVa8aJiARPl2P29u2\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-01-07T04:25:50Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3GYvf7puxwkr51EYoD9E7D\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3GYvf7puxwkr51EYoD9E7D\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3GYvf7puxwkr51EYoD9E7D\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"renforshort\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3GYvf7puxwkr51EYoD9E7D\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2JxyP3DMXo84BCjj5EXLbX\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2JxyP3DMXo84BCjj5EXLbX\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2JxyP3DMXo84BCjj5EXLbX\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730aea5c40fe5f62b906b5a149\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020aea5c40fe5f62b906b5a149\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510aea5c40fe5f62b906b5a149\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"teenage angst EP\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-03-13\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 7,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2JxyP3DMXo84BCjj5EXLbX\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3GYvf7puxwkr51EYoD9E7D\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3GYvf7puxwkr51EYoD9E7D\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3GYvf7puxwkr51EYoD9E7D\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"renforshort\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3GYvf7puxwkr51EYoD9E7D\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 177181,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUG12000357\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/74tswKcYGnbqDd9zbPHAgW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/74tswKcYGnbqDd9zbPHAgW\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"74tswKcYGnbqDd9zbPHAgW\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"i drive me mad\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 49,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e092492d53773391dd789464d9e49f70f872457a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:74tswKcYGnbqDd9zbPHAgW\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-01-07T02:52:16Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6bh228LGC3eAzbplPWV02r\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6bh228LGC3eAzbplPWV02r\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6bh228LGC3eAzbplPWV02r\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Declan J Donovan\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6bh228LGC3eAzbplPWV02r\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/28HcOL3JfPW8LbFmHc6WZk\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/28HcOL3JfPW8LbFmHc6WZk\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"28HcOL3JfPW8LbFmHc6WZk\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27375a0518c597d16463e4d4020\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0275a0518c597d16463e4d4020\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485175a0518c597d16463e4d4020\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Tangerine Skies\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-04-24\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:28HcOL3JfPW8LbFmHc6WZk\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6bh228LGC3eAzbplPWV02r\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6bh228LGC3eAzbplPWV02r\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6bh228LGC3eAzbplPWV02r\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Declan J Donovan\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6bh228LGC3eAzbplPWV02r\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 190890,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"DEE862000368\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0HlKVWqNINphxorvga3cRR\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0HlKVWqNINphxorvga3cRR\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0HlKVWqNINphxorvga3cRR\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Tangerine Skies\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 50,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f314ed1a5ceefb6dda05d1d22e0724594a38dd6a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0HlKVWqNINphxorvga3cRR\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-01-06T21:42:40Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"flor\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7vKo7mnIuqUHg4DM5biEv1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7vKo7mnIuqUHg4DM5biEv1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7vKo7mnIuqUHg4DM5biEv1\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27330b69a7e9f3e8f19ebed6cbf\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0230b69a7e9f3e8f19ebed6cbf\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485130b69a7e9f3e8f19ebed6cbf\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"lmho\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-08-19\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7vKo7mnIuqUHg4DM5biEv1\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"flor\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 222000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT22005182\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0cBohovCcJEFKOdEsw2g5F\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0cBohovCcJEFKOdEsw2g5F\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0cBohovCcJEFKOdEsw2g5F\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"lmho\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 47,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/b66b676186908b4454a134c200b6dbedbe8571fb?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0cBohovCcJEFKOdEsw2g5F\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-25T17:39:49Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6L6CvdHfpiOkQqdlUORPvW\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6L6CvdHfpiOkQqdlUORPvW\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6L6CvdHfpiOkQqdlUORPvW\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Cardigan Club\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6L6CvdHfpiOkQqdlUORPvW\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2qLVTHlk77pgn94xTYNw5i\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2qLVTHlk77pgn94xTYNw5i\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2qLVTHlk77pgn94xTYNw5i\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27371d885b4e2cd6a461d87af68\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0271d885b4e2cd6a461d87af68\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485171d885b4e2cd6a461d87af68\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Cardigan Club\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-04-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2qLVTHlk77pgn94xTYNw5i\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6L6CvdHfpiOkQqdlUORPvW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6L6CvdHfpiOkQqdlUORPvW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6L6CvdHfpiOkQqdlUORPvW\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Cardigan Club\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6L6CvdHfpiOkQqdlUORPvW\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 184752,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US43C1610700\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/76XpZsw27HJv3uiMeBVKmD\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/76XpZsw27HJv3uiMeBVKmD\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"76XpZsw27HJv3uiMeBVKmD\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Good Life\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 16,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:76XpZsw27HJv3uiMeBVKmD\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-25T16:59:39Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1V70bPTzUUx02B6HQNx1QQ\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1V70bPTzUUx02B6HQNx1QQ\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1V70bPTzUUx02B6HQNx1QQ\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Ry-Lo\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1V70bPTzUUx02B6HQNx1QQ\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6x2TFlftKysfMHkwvUoddq\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6x2TFlftKysfMHkwvUoddq\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6x2TFlftKysfMHkwvUoddq\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273752c50283e5153e6960b6222\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02752c50283e5153e6960b6222\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851752c50283e5153e6960b6222\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ry-Lo\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-06-24\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 3,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6x2TFlftKysfMHkwvUoddq\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1V70bPTzUUx02B6HQNx1QQ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1V70bPTzUUx02B6HQNx1QQ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1V70bPTzUUx02B6HQNx1QQ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ry-Lo\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1V70bPTzUUx02B6HQNx1QQ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 305818,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMGSG1600003\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7jOYau92YXPhJQTAfEcWuc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7jOYau92YXPhJQTAfEcWuc\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7jOYau92YXPhJQTAfEcWuc\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"New Friend\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 35,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2849172f5a7a1be1bb8d46b615be73af8eed674c?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7jOYau92YXPhJQTAfEcWuc\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-25T16:51:55Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2OwJfEHbju9I3yrWL5Fq3T\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2OwJfEHbju9I3yrWL5Fq3T\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2OwJfEHbju9I3yrWL5Fq3T\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Tony Ferrari\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2OwJfEHbju9I3yrWL5Fq3T\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3pFPBG84k5bQVbL9apf2PD\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3pFPBG84k5bQVbL9apf2PD\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3pFPBG84k5bQVbL9apf2PD\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Grace Grundy\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3pFPBG84k5bQVbL9apf2PD\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4tn2nGrGZiQD81BgxHn6KW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4tn2nGrGZiQD81BgxHn6KW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4tn2nGrGZiQD81BgxHn6KW\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733c2812f99e48a9d18b9e7f40\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023c2812f99e48a9d18b9e7f40\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513c2812f99e48a9d18b9e7f40\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Let's Buy a House\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-02-05\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4tn2nGrGZiQD81BgxHn6KW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2OwJfEHbju9I3yrWL5Fq3T\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2OwJfEHbju9I3yrWL5Fq3T\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2OwJfEHbju9I3yrWL5Fq3T\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Tony Ferrari\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2OwJfEHbju9I3yrWL5Fq3T\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3pFPBG84k5bQVbL9apf2PD\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3pFPBG84k5bQVbL9apf2PD\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3pFPBG84k5bQVbL9apf2PD\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Grace Grundy\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3pFPBG84k5bQVbL9apf2PD\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 215353,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZKDK2188689\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/53ilOOhgCLBaB4a0Tx0XVa\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/53ilOOhgCLBaB4a0Tx0XVa\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"53ilOOhgCLBaB4a0Tx0XVa\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Let's Buy a House\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 31,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2f61eb98c5b8ae05269d5d84547d08e7e787a5cf?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:53ilOOhgCLBaB4a0Tx0XVa\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-24T03:14:31Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1O1r2qVtIFqlTJoB4jsJKd\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1O1r2qVtIFqlTJoB4jsJKd\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1O1r2qVtIFqlTJoB4jsJKd\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Miki Fiki\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1O1r2qVtIFqlTJoB4jsJKd\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4Idgo1O8xfajjxv6Fq3afr\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4Idgo1O8xfajjxv6Fq3afr\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4Idgo1O8xfajjxv6Fq3afr\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b2878f6422cb168cf3ec121f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b2878f6422cb168cf3ec121f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b2878f6422cb168cf3ec121f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Be With Me\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-10-23\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4Idgo1O8xfajjxv6Fq3afr\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1O1r2qVtIFqlTJoB4jsJKd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1O1r2qVtIFqlTJoB4jsJKd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1O1r2qVtIFqlTJoB4jsJKd\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Miki Fiki\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1O1r2qVtIFqlTJoB4jsJKd\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 205766,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAFE2022741\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3wqgy9wMFvNmCJ9BU7B4ir\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3wqgy9wMFvNmCJ9BU7B4ir\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3wqgy9wMFvNmCJ9BU7B4ir\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Be With Me\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 36,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/b45af1001d5b656cfe79555f82e1890eff1f96c3?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3wqgy9wMFvNmCJ9BU7B4ir\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-20T16:49:52Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5SancUuEIRjnkYtglSRe8Q\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5SancUuEIRjnkYtglSRe8Q\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5SancUuEIRjnkYtglSRe8Q\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Trapdoor Social\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5SancUuEIRjnkYtglSRe8Q\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6gd39Ar7QkCyZk5l7LQujP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6gd39Ar7QkCyZk5l7LQujP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6gd39Ar7QkCyZk5l7LQujP\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273812dc8dc0a5954183aeb5de6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02812dc8dc0a5954183aeb5de6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851812dc8dc0a5954183aeb5de6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Trapdoor Social\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-08-12\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 14,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6gd39Ar7QkCyZk5l7LQujP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5SancUuEIRjnkYtglSRe8Q\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5SancUuEIRjnkYtglSRe8Q\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5SancUuEIRjnkYtglSRe8Q\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Trapdoor Social\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5SancUuEIRjnkYtglSRe8Q\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0WOPilKvCvRHVVLO94FAMN\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0WOPilKvCvRHVVLO94FAMN\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0WOPilKvCvRHVVLO94FAMN\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Pride of Mesa Ridge\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0WOPilKvCvRHVVLO94FAMN\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 228818,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCACQ1609925\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7wTiWnmGKN8bEZ7MoZ0Fit\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7wTiWnmGKN8bEZ7MoZ0Fit\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7wTiWnmGKN8bEZ7MoZ0Fit\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Fine on My Own (feat. the Pride of Mesa Ridge)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 35,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/60b2135cf264ae8820f7d9363aea4686821d9df5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 13,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7wTiWnmGKN8bEZ7MoZ0Fit\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-15T03:07:59Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3eHuDg8n9OGq0K4N8UksKT\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3eHuDg8n9OGq0K4N8UksKT\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3eHuDg8n9OGq0K4N8UksKT\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"People Planet\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3eHuDg8n9OGq0K4N8UksKT\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/51Vn4U1DTQPSxGnuGCQl8k\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/51Vn4U1DTQPSxGnuGCQl8k\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"51Vn4U1DTQPSxGnuGCQl8k\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b41aaff2857d79b99c8c7168\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b41aaff2857d79b99c8c7168\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b41aaff2857d79b99c8c7168\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Rehab\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-11-23\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:51Vn4U1DTQPSxGnuGCQl8k\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3eHuDg8n9OGq0K4N8UksKT\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3eHuDg8n9OGq0K4N8UksKT\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3eHuDg8n9OGq0K4N8UksKT\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"People Planet\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3eHuDg8n9OGq0K4N8UksKT\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 155749,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"usl4q1833696\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6bszosVJrRRAX5SOPwg1uE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6bszosVJrRRAX5SOPwg1uE\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6bszosVJrRRAX5SOPwg1uE\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Rehab\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 35,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/81ce08277e2eadfad2afcbb5d87cab8263483fee?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6bszosVJrRRAX5SOPwg1uE\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-12T20:05:40Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1EQiPk32D03HxHmExyCg9l\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1EQiPk32D03HxHmExyCg9l\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1EQiPk32D03HxHmExyCg9l\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Roses & Revolutions\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1EQiPk32D03HxHmExyCg9l\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5PxCTrv3Y1xVACfngpt7D2\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5PxCTrv3Y1xVACfngpt7D2\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5PxCTrv3Y1xVACfngpt7D2\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Lostboycrow\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5PxCTrv3Y1xVACfngpt7D2\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5pXU4pTiu6a5ue9Qr3s7JS\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5pXU4pTiu6a5ue9Qr3s7JS\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5pXU4pTiu6a5ue9Qr3s7JS\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27323c8d80e297f5b3090b654ff\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0223c8d80e297f5b3090b654ff\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485123c8d80e297f5b3090b654ff\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Coffee\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-05-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5pXU4pTiu6a5ue9Qr3s7JS\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1EQiPk32D03HxHmExyCg9l\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1EQiPk32D03HxHmExyCg9l\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1EQiPk32D03HxHmExyCg9l\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Roses & Revolutions\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1EQiPk32D03HxHmExyCg9l\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5PxCTrv3Y1xVACfngpt7D2\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5PxCTrv3Y1xVACfngpt7D2\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5PxCTrv3Y1xVACfngpt7D2\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lostboycrow\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5PxCTrv3Y1xVACfngpt7D2\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 185663,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"CAN112100187\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1kAaFW89gi4lYR7338kbPm\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1kAaFW89gi4lYR7338kbPm\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1kAaFW89gi4lYR7338kbPm\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Coffee\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1kAaFW89gi4lYR7338kbPm\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-12T19:38:48Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/02Gz7Nb7bIi0oxLIXYELYd\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/02Gz7Nb7bIi0oxLIXYELYd\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"02Gz7Nb7bIi0oxLIXYELYd\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Foxies\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:02Gz7Nb7bIi0oxLIXYELYd\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6PpubUco4WyCQk51U4gtW7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6PpubUco4WyCQk51U4gtW7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6PpubUco4WyCQk51U4gtW7\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273fdbec81d4ec63c61ea4e0543\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02fdbec81d4ec63c61ea4e0543\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851fdbec81d4ec63c61ea4e0543\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Screws\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-04-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6PpubUco4WyCQk51U4gtW7\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/02Gz7Nb7bIi0oxLIXYELYd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/02Gz7Nb7bIi0oxLIXYELYd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"02Gz7Nb7bIi0oxLIXYELYd\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Foxies\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:02Gz7Nb7bIi0oxLIXYELYd\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 165322,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZQAY2172088\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4xTdNpAQ31dPOEvXtRKoby\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4xTdNpAQ31dPOEvXtRKoby\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4xTdNpAQ31dPOEvXtRKoby\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Screws\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 31,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/a01bc4415584ceac7e0b367c2d4328415c9b045c?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4xTdNpAQ31dPOEvXtRKoby\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=50&limit=50\\\\\\\",\\\\n  \\\\\\\"offset\\\\\\\" : 0,\\\\n  \\\\\\\"previous\\\\\\\" : null,\\\\n  \\\\\\\"total\\\\\\\" : 286\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/tracks?offset=50&limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjAwYjYzNTYwYjg3ZTQyNjQwODViODk3YTNmMjlkMzFiIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"216455\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:23 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=50&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-09T19:19:13Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/41dCbpok7A4uyNqbo3VVZ0\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/41dCbpok7A4uyNqbo3VVZ0\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"41dCbpok7A4uyNqbo3VVZ0\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Tors\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:41dCbpok7A4uyNqbo3VVZ0\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0j0V5exRLo9JU2PRr2eXaJ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0j0V5exRLo9JU2PRr2eXaJ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0j0V5exRLo9JU2PRr2eXaJ\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27388703b9cf84442cc1f61e7ab\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0288703b9cf84442cc1f61e7ab\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485188703b9cf84442cc1f61e7ab\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Empty Hands\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-10-18\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0j0V5exRLo9JU2PRr2eXaJ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/41dCbpok7A4uyNqbo3VVZ0\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/41dCbpok7A4uyNqbo3VVZ0\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"41dCbpok7A4uyNqbo3VVZ0\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Tors\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:41dCbpok7A4uyNqbo3VVZ0\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 215000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1968162\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6FISagjh5rIfJ4cBR82CEV\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6FISagjh5rIfJ4cBR82CEV\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6FISagjh5rIfJ4cBR82CEV\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Empty Hands\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 24,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6FISagjh5rIfJ4cBR82CEV\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-04T22:46:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1JLf53adsPkYiAQPir2Fn3\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1JLf53adsPkYiAQPir2Fn3\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1JLf53adsPkYiAQPir2Fn3\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Zoe Clark\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1JLf53adsPkYiAQPir2Fn3\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0HwP5OA7VvjUKqSbvOJsoO\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0HwP5OA7VvjUKqSbvOJsoO\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0HwP5OA7VvjUKqSbvOJsoO\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27386e640acc292a67b287978ce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0286e640acc292a67b287978ce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485186e640acc292a67b287978ce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Last One Standing\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-01-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0HwP5OA7VvjUKqSbvOJsoO\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1JLf53adsPkYiAQPir2Fn3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1JLf53adsPkYiAQPir2Fn3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1JLf53adsPkYiAQPir2Fn3\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Zoe Clark\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1JLf53adsPkYiAQPir2Fn3\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 137120,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZNJX2071277\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/66YbwUJZK1C7To7wQci2nl\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/66YbwUJZK1C7To7wQci2nl\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"66YbwUJZK1C7To7wQci2nl\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Last One Standing\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 53,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/5da411dac05154ac56f8b26fb4e9417ba0c3ace0?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:66YbwUJZK1C7To7wQci2nl\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-04T16:46:05Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6ZUjdwG0NvY6MT7vvmluhV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6ZUjdwG0NvY6MT7vvmluhV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6ZUjdwG0NvY6MT7vvmluhV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Young Rising Sons\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6ZUjdwG0NvY6MT7vvmluhV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5DNWgAGMzY3CCgcEbJ82Cd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5DNWgAGMzY3CCgcEbJ82Cd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5DNWgAGMzY3CCgcEbJ82Cd\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732d4e2d6fcb4e1c14a04a23bd\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022d4e2d6fcb4e1c14a04a23bd\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512d4e2d6fcb4e1c14a04a23bd\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Happy\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-11-13\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5DNWgAGMzY3CCgcEbJ82Cd\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6ZUjdwG0NvY6MT7vvmluhV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6ZUjdwG0NvY6MT7vvmluhV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6ZUjdwG0NvY6MT7vvmluhV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Young Rising Sons\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6ZUjdwG0NvY6MT7vvmluhV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 231872,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ93L2054536\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2NPlD1KpRbkrlCQNJjRlkF\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2NPlD1KpRbkrlCQNJjRlkF\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2NPlD1KpRbkrlCQNJjRlkF\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Happy\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 4,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2NPlD1KpRbkrlCQNJjRlkF\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-12-03T00:34:04Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1vVHevk2PD45epYnDi9CCc\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1vVHevk2PD45epYnDi9CCc\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1vVHevk2PD45epYnDi9CCc\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Jack Stauber\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1vVHevk2PD45epYnDi9CCc\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1RHa1VdX6lsLbeedgsV1cb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1RHa1VdX6lsLbeedgsV1cb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1RHa1VdX6lsLbeedgsV1cb\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273f65bfa6478ec5f1895d37d8f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02f65bfa6478ec5f1895d37d8f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851f65bfa6478ec5f1895d37d8f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Pop Food\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-03-25\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1RHa1VdX6lsLbeedgsV1cb\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1vVHevk2PD45epYnDi9CCc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1vVHevk2PD45epYnDi9CCc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1vVHevk2PD45epYnDi9CCc\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Jack Stauber\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1vVHevk2PD45epYnDi9CCc\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 208026,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMPKX1703669\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2mlGPkAx4kwF8Df0GlScsC\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2mlGPkAx4kwF8Df0GlScsC\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2mlGPkAx4kwF8Df0GlScsC\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Buttercup\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 71,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/5992e1a5916f5dd0b5ff5c27bf8bd93aca3deae5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2mlGPkAx4kwF8Df0GlScsC\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-30T16:54:23Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3MNLhvqJkWsO6tcjY9ps62\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3MNLhvqJkWsO6tcjY9ps62\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3MNLhvqJkWsO6tcjY9ps62\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Maude Latour\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3MNLhvqJkWsO6tcjY9ps62\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4tylLsr8HZOfL4FQ6h7SB7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4tylLsr8HZOfL4FQ6h7SB7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4tylLsr8HZOfL4FQ6h7SB7\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273291482f79a0586928c1e35ca\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02291482f79a0586928c1e35ca\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851291482f79a0586928c1e35ca\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"One More Weekend\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-07-24\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4tylLsr8HZOfL4FQ6h7SB7\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3MNLhvqJkWsO6tcjY9ps62\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3MNLhvqJkWsO6tcjY9ps62\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3MNLhvqJkWsO6tcjY9ps62\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Maude Latour\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3MNLhvqJkWsO6tcjY9ps62\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 142829,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZC5P1800248\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/19YOJKCVvOL7v6B2Oe3UBc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/19YOJKCVvOL7v6B2Oe3UBc\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"19YOJKCVvOL7v6B2Oe3UBc\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"One More Weekend\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 60,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/a492712330f2b1b67e2bf1c2be20dfe528cc09d0?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:19YOJKCVvOL7v6B2Oe3UBc\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-30T14:53:35Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3YO2a6i2cfdFbgxk2HDfPe\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3YO2a6i2cfdFbgxk2HDfPe\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3YO2a6i2cfdFbgxk2HDfPe\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Will Joseph Cook\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3YO2a6i2cfdFbgxk2HDfPe\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3P4vW5tzQvmuoNaFQqzy9q\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3P4vW5tzQvmuoNaFQqzy9q\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3P4vW5tzQvmuoNaFQqzy9q\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"chloe moriondo\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3P4vW5tzQvmuoNaFQqzy9q\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2INWDEJAZUHqQOWwK2WUv1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2INWDEJAZUHqQOWwK2WUv1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2INWDEJAZUHqQOWwK2WUv1\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d1994a8ff56e14cae6c48512\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d1994a8ff56e14cae6c48512\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d1994a8ff56e14cae6c48512\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Be Around Me (feat. chloe moriondo)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-02-18\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2INWDEJAZUHqQOWwK2WUv1\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3YO2a6i2cfdFbgxk2HDfPe\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3YO2a6i2cfdFbgxk2HDfPe\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3YO2a6i2cfdFbgxk2HDfPe\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Will Joseph Cook\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3YO2a6i2cfdFbgxk2HDfPe\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3P4vW5tzQvmuoNaFQqzy9q\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3P4vW5tzQvmuoNaFQqzy9q\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3P4vW5tzQvmuoNaFQqzy9q\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"chloe moriondo\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3P4vW5tzQvmuoNaFQqzy9q\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 181249,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"UKY6X2100002\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Nsxlv9JESIFfOBbupIKOc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Nsxlv9JESIFfOBbupIKOc\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3Nsxlv9JESIFfOBbupIKOc\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Be Around Me (feat. chloe moriondo)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 53,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/a5bc933db1c6f8dd31d39f40b37a92fa4044ec5b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Nsxlv9JESIFfOBbupIKOc\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-30T14:51:08Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2gI1WfmpFmmgSRojy4Jup2\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2gI1WfmpFmmgSRojy4Jup2\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2gI1WfmpFmmgSRojy4Jup2\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"BLÜ EYES\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2gI1WfmpFmmgSRojy4Jup2\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2czDfsF6ycHDNT5ECHngXN\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2czDfsF6ycHDNT5ECHngXN\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2czDfsF6ycHDNT5ECHngXN\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273966bf4dda22d3e4106dedb52\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02966bf4dda22d3e4106dedb52\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851966bf4dda22d3e4106dedb52\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"actually happy\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-05-26\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2czDfsF6ycHDNT5ECHngXN\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2gI1WfmpFmmgSRojy4Jup2\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2gI1WfmpFmmgSRojy4Jup2\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2gI1WfmpFmmgSRojy4Jup2\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"BLÜ EYES\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2gI1WfmpFmmgSRojy4Jup2\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 179471,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZHN62189950\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2a8LD3eiZsaybSOZR9nbV2\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2a8LD3eiZsaybSOZR9nbV2\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2a8LD3eiZsaybSOZR9nbV2\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"actually happy\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 45,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/b81bf0d7afbfc877c2b2bf36c44ea9818fe026d4?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2a8LD3eiZsaybSOZR9nbV2\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-28T18:31:47Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4OkceeWNJehKqXINqtVeX1\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4OkceeWNJehKqXINqtVeX1\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4OkceeWNJehKqXINqtVeX1\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"TWIN XL\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4OkceeWNJehKqXINqtVeX1\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2SnSHHqNCdsZQjw0X7XgLt\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2SnSHHqNCdsZQjw0X7XgLt\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2SnSHHqNCdsZQjw0X7XgLt\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273100bfff5362d37ed8799bc7f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02100bfff5362d37ed8799bc7f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851100bfff5362d37ed8799bc7f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Melt\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-05-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2SnSHHqNCdsZQjw0X7XgLt\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4OkceeWNJehKqXINqtVeX1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4OkceeWNJehKqXINqtVeX1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4OkceeWNJehKqXINqtVeX1\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"TWIN XL\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4OkceeWNJehKqXINqtVeX1\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 175894,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQX92001247\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4Axn3CdPeSAciEvCa2p7Xs\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4Axn3CdPeSAciEvCa2p7Xs\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4Axn3CdPeSAciEvCa2p7Xs\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Melt\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 31,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/dcbdddcb0c4b62123449e64a01823753da98911b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4Axn3CdPeSAciEvCa2p7Xs\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-25T17:45:00Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4OkceeWNJehKqXINqtVeX1\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4OkceeWNJehKqXINqtVeX1\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4OkceeWNJehKqXINqtVeX1\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"TWIN XL\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4OkceeWNJehKqXINqtVeX1\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3YUOsP7Jk6FnsYwkdaVwA3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3YUOsP7Jk6FnsYwkdaVwA3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3YUOsP7Jk6FnsYwkdaVwA3\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d6d0c6ba1f92a58bf6a3faad\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d6d0c6ba1f92a58bf6a3faad\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d6d0c6ba1f92a58bf6a3faad\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lemonade\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-12-18\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3YUOsP7Jk6FnsYwkdaVwA3\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4OkceeWNJehKqXINqtVeX1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4OkceeWNJehKqXINqtVeX1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4OkceeWNJehKqXINqtVeX1\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"TWIN XL\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4OkceeWNJehKqXINqtVeX1\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 165180,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQX92005405\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5JsYER7lUgCnSzNxwJLDkL\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5JsYER7lUgCnSzNxwJLDkL\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5JsYER7lUgCnSzNxwJLDkL\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Lemonade\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 43,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8a4174035b639d35ed06049191afe1907dd6339c?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5JsYER7lUgCnSzNxwJLDkL\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-21T00:17:34Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0NIPkIjTV8mB795yEIiPYL\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0NIPkIjTV8mB795yEIiPYL\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0NIPkIjTV8mB795yEIiPYL\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Wallows\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0NIPkIjTV8mB795yEIiPYL\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7eed9MBclFPjjjvotfR2e9\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7eed9MBclFPjjjvotfR2e9\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7eed9MBclFPjjjvotfR2e9\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27384feca0133d9a8e6539a8325\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0284feca0133d9a8e6539a8325\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485184feca0133d9a8e6539a8325\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Nothing Happens\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-03-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7eed9MBclFPjjjvotfR2e9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0NIPkIjTV8mB795yEIiPYL\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0NIPkIjTV8mB795yEIiPYL\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0NIPkIjTV8mB795yEIiPYL\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wallows\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0NIPkIjTV8mB795yEIiPYL\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3l0CmX0FuQjFxr8SK7Vqag\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3l0CmX0FuQjFxr8SK7Vqag\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3l0CmX0FuQjFxr8SK7Vqag\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Clairo\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3l0CmX0FuQjFxr8SK7Vqag\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 178000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21812258\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/57RA3JGafJm5zRtKJiKPIm\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/57RA3JGafJm5zRtKJiKPIm\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"57RA3JGafJm5zRtKJiKPIm\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Are You Bored Yet? (feat. Clairo)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 78,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/075715293e8883dcaa5f21766f94685adfa95886?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:57RA3JGafJm5zRtKJiKPIm\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-20T23:57:35Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/57Wc6hKk68L1KrjdA3Z8cd\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/57Wc6hKk68L1KrjdA3Z8cd\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"57Wc6hKk68L1KrjdA3Z8cd\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Polar Boys\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:57Wc6hKk68L1KrjdA3Z8cd\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7zHu9iGrqL2GJliexMvmbK\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7zHu9iGrqL2GJliexMvmbK\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7zHu9iGrqL2GJliexMvmbK\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273e7eec79045e6c0b2a6f6cd04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02e7eec79045e6c0b2a6f6cd04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851e7eec79045e6c0b2a6f6cd04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Kendall Drive\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-01-26\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7zHu9iGrqL2GJliexMvmbK\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/57Wc6hKk68L1KrjdA3Z8cd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/57Wc6hKk68L1KrjdA3Z8cd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"57Wc6hKk68L1KrjdA3Z8cd\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Polar Boys\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:57Wc6hKk68L1KrjdA3Z8cd\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 164625,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"uscgh1824804\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4l9Lf72kBNL1RTV3ZQvK17\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4l9Lf72kBNL1RTV3ZQvK17\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4l9Lf72kBNL1RTV3ZQvK17\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Kendall Drive\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4l9Lf72kBNL1RTV3ZQvK17\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-11T03:00:35Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6GpcBKNmZDIrRzYkPJu7Wd\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6GpcBKNmZDIrRzYkPJu7Wd\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6GpcBKNmZDIrRzYkPJu7Wd\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"flora cash\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6GpcBKNmZDIrRzYkPJu7Wd\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"DK\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"SE\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6uX6tLDnj6Q4ptrzK0mtR3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6uX6tLDnj6Q4ptrzK0mtR3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6uX6tLDnj6Q4ptrzK0mtR3\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27380352ed7db9dbe30df981a99\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0280352ed7db9dbe30df981a99\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485180352ed7db9dbe30df981a99\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Nothing Lasts Forever (And It's Fine)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-04-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6uX6tLDnj6Q4ptrzK0mtR3\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6GpcBKNmZDIrRzYkPJu7Wd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6GpcBKNmZDIrRzYkPJu7Wd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6GpcBKNmZDIrRzYkPJu7Wd\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"flora cash\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6GpcBKNmZDIrRzYkPJu7Wd\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"DK\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"SE\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 218883,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"SEXCG1700102\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4zlqaEHnAle2taqwBbp9ZH\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4zlqaEHnAle2taqwBbp9ZH\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4zlqaEHnAle2taqwBbp9ZH\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"You're Somebody Else\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 54,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e6c9780195c7ad09f6e527a7064cb2e560d3f121?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4zlqaEHnAle2taqwBbp9ZH\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-03T14:48:52Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/42YoF8fzPiMbU5dlf59YuQ\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/42YoF8fzPiMbU5dlf59YuQ\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"42YoF8fzPiMbU5dlf59YuQ\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Land of Color\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:42YoF8fzPiMbU5dlf59YuQ\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/13W7GcPK1tMyA2bYtkqLsW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/13W7GcPK1tMyA2bYtkqLsW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"13W7GcPK1tMyA2bYtkqLsW\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27333174c88539481490d1f36ee\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0233174c88539481490d1f36ee\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485133174c88539481490d1f36ee\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Land of Color - EP\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-11-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:13W7GcPK1tMyA2bYtkqLsW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/42YoF8fzPiMbU5dlf59YuQ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/42YoF8fzPiMbU5dlf59YuQ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"42YoF8fzPiMbU5dlf59YuQ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Land of Color\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:42YoF8fzPiMbU5dlf59YuQ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 184019,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USA5W1800253\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0LGgx9BfTSEl4o5QqMfWyH\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0LGgx9BfTSEl4o5QqMfWyH\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0LGgx9BfTSEl4o5QqMfWyH\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Slow Ride\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f9558233c727a7582751b736bc8b507980c1eed8?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0LGgx9BfTSEl4o5QqMfWyH\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-11-01T04:24:24Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2LyLlHg03okxUU3UVrKtSC\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2LyLlHg03okxUU3UVrKtSC\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2LyLlHg03okxUU3UVrKtSC\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2736227bea855e8e32fe0c4e81f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e026227bea855e8e32fe0c4e81f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048516227bea855e8e32fe0c4e81f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Click\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-06-09\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 13,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2LyLlHg03okxUU3UVrKtSC\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 227267,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMRSZ1701239\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5cBLBXhU9sf6kGvb2Dv2cl\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5cBLBXhU9sf6kGvb2Dv2cl\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5cBLBXhU9sf6kGvb2Dv2cl\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"The Good Part\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 62,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3b8428228396d5ccad78e38b6a83075f6fc6ead0?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5cBLBXhU9sf6kGvb2Dv2cl\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-27T23:12:33Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1Cd373x8qzC7SNUg5IToqp\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1Cd373x8qzC7SNUg5IToqp\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Cd373x8qzC7SNUg5IToqp\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"BoyWithUke\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1Cd373x8qzC7SNUg5IToqp\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0NzheutoSuzfMlENTnHTQl\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0NzheutoSuzfMlENTnHTQl\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0NzheutoSuzfMlENTnHTQl\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733b57e2257933b78b7292de23\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023b57e2257933b78b7292de23\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513b57e2257933b78b7292de23\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Fever Dreams\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-06-04\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0NzheutoSuzfMlENTnHTQl\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1Cd373x8qzC7SNUg5IToqp\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1Cd373x8qzC7SNUg5IToqp\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1Cd373x8qzC7SNUg5IToqp\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"BoyWithUke\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1Cd373x8qzC7SNUg5IToqp\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 224747,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAFM2173435\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5GxUKIEkMXXZo1Tif0IzfC\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5GxUKIEkMXXZo1Tif0IzfC\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5GxUKIEkMXXZo1Tif0IzfC\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Two Moons\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 73,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8bc0d81ba093e77ea37917d8336dd18fae3d9e08?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5GxUKIEkMXXZo1Tif0IzfC\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-26T15:58:45Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0ndpuECxVStTsHhzq4Euxz\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0ndpuECxVStTsHhzq4Euxz\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0ndpuECxVStTsHhzq4Euxz\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Moody Joody\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0ndpuECxVStTsHhzq4Euxz\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0g7d0xQ8arRa2SVdfVTd72\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0g7d0xQ8arRa2SVdfVTd72\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0g7d0xQ8arRa2SVdfVTd72\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27314417781e6e5e2bbf22bfc0b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0214417781e6e5e2bbf22bfc0b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485114417781e6e5e2bbf22bfc0b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Heat\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-07-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0g7d0xQ8arRa2SVdfVTd72\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0ndpuECxVStTsHhzq4Euxz\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0ndpuECxVStTsHhzq4Euxz\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0ndpuECxVStTsHhzq4Euxz\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Moody Joody\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0ndpuECxVStTsHhzq4Euxz\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 204051,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZHNA2099173\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2Tus0XEu4LmNlk97CLML9u\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2Tus0XEu4LmNlk97CLML9u\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2Tus0XEu4LmNlk97CLML9u\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"The Heat\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 39,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aff447c4614a71e2a221b67d1e1e451566b6120f?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2Tus0XEu4LmNlk97CLML9u\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-24T19:54:50Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/32fNbCzrzfsTbMHjznvm4S\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/32fNbCzrzfsTbMHjznvm4S\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"32fNbCzrzfsTbMHjznvm4S\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Nat & Alex Wolff\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:32fNbCzrzfsTbMHjznvm4S\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2AadhTmkLTPNZ7CyrSkh8G\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2AadhTmkLTPNZ7CyrSkh8G\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2AadhTmkLTPNZ7CyrSkh8G\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273453a1ae5aed05ba8d322373f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02453a1ae5aed05ba8d322373f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851453a1ae5aed05ba8d322373f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Glue\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-08-07\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2AadhTmkLTPNZ7CyrSkh8G\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/32fNbCzrzfsTbMHjznvm4S\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/32fNbCzrzfsTbMHjznvm4S\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"32fNbCzrzfsTbMHjznvm4S\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Nat & Alex Wolff\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:32fNbCzrzfsTbMHjznvm4S\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 275008,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEZ2091441\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4Eg7rWODFFHoNc9KtwL4oT\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4Eg7rWODFFHoNc9KtwL4oT\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4Eg7rWODFFHoNc9KtwL4oT\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Glue\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 47,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/903385efea3299a1b661800d764c06fd394550c9?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4Eg7rWODFFHoNc9KtwL4oT\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-21T14:47:55Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7FzUl96rK3TB1HVeVNw973\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7FzUl96rK3TB1HVeVNw973\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7FzUl96rK3TB1HVeVNw973\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"AJ Smith\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7FzUl96rK3TB1HVeVNw973\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3XY6jFleC6RKXp5OopsFAE\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3XY6jFleC6RKXp5OopsFAE\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3XY6jFleC6RKXp5OopsFAE\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b15c01910fb78508b6c99fe6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b15c01910fb78508b6c99fe6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b15c01910fb78508b6c99fe6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Confetti\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-12-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3XY6jFleC6RKXp5OopsFAE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7FzUl96rK3TB1HVeVNw973\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7FzUl96rK3TB1HVeVNw973\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7FzUl96rK3TB1HVeVNw973\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"AJ Smith\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7FzUl96rK3TB1HVeVNw973\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 200641,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USLZJ2089276\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2LzNhkC0kb9qTSdgrejmbb\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2LzNhkC0kb9qTSdgrejmbb\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2LzNhkC0kb9qTSdgrejmbb\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Confetti\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 36,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ec1634b7b2660dc2e63000becad7a693729b17e?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2LzNhkC0kb9qTSdgrejmbb\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-21T00:40:59Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6B7x4EysPMAo1fj4FSFrEJ\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6B7x4EysPMAo1fj4FSFrEJ\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6B7x4EysPMAo1fj4FSFrEJ\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Social Animals\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6B7x4EysPMAo1fj4FSFrEJ\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4T1VWGiTzMEl6EJIrpxaZ7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4T1VWGiTzMEl6EJIrpxaZ7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4T1VWGiTzMEl6EJIrpxaZ7\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732d32b444569b94e93b034eb1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022d32b444569b94e93b034eb1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512d32b444569b94e93b034eb1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Cheer Up Charlie\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-11-03\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4T1VWGiTzMEl6EJIrpxaZ7\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6B7x4EysPMAo1fj4FSFrEJ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6B7x4EysPMAo1fj4FSFrEJ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6B7x4EysPMAo1fj4FSFrEJ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Social Animals\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6B7x4EysPMAo1fj4FSFrEJ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 219204,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADH1772394\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5crtOZ0N6tyiEcCkRyW8YM\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5crtOZ0N6tyiEcCkRyW8YM\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5crtOZ0N6tyiEcCkRyW8YM\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Cheer Up Charlie\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 24,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1b862829b379e3ed161cb051b48c679b656c0b05?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5crtOZ0N6tyiEcCkRyW8YM\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-19T18:29:35Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0DxPHf2flBAcV2SnZPg3SV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0DxPHf2flBAcV2SnZPg3SV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0DxPHf2flBAcV2SnZPg3SV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Jake Scott\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0DxPHf2flBAcV2SnZPg3SV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7Bc9G6iDUH9u6pYj6Q5jr7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7Bc9G6iDUH9u6pYj6Q5jr7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7Bc9G6iDUH9u6pYj6Q5jr7\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273becf044bf75eb5db75c7a3a3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02becf044bf75eb5db75c7a3a3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851becf044bf75eb5db75c7a3a3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Silhouettes & Sand\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2015-11-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 9,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7Bc9G6iDUH9u6pYj6Q5jr7\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0DxPHf2flBAcV2SnZPg3SV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0DxPHf2flBAcV2SnZPg3SV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0DxPHf2flBAcV2SnZPg3SV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Jake Scott\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0DxPHf2flBAcV2SnZPg3SV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 176733,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"ushm21591482\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7BO96T4UFKUbK96XujhaB2\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7BO96T4UFKUbK96XujhaB2\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7BO96T4UFKUbK96XujhaB2\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Dancing in the Dawn\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 53,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0334ad6de0ec0e940aa96cea25d8bff8f545a220?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 6,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7BO96T4UFKUbK96XujhaB2\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-10T05:09:21Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/54piSANQOPhhndGWqqc1DV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/54piSANQOPhhndGWqqc1DV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"54piSANQOPhhndGWqqc1DV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Felicity\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:54piSANQOPhhndGWqqc1DV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1WZQcAXf3nrcA2Uip5azrc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1WZQcAXf3nrcA2Uip5azrc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1WZQcAXf3nrcA2Uip5azrc\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273ce70c63c5a989c5251766706\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02ce70c63c5a989c5251766706\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851ce70c63c5a989c5251766706\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Pilot with a Fear of Heights\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-05-18\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1WZQcAXf3nrcA2Uip5azrc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/54piSANQOPhhndGWqqc1DV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/54piSANQOPhhndGWqqc1DV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"54piSANQOPhhndGWqqc1DV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Felicity\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:54piSANQOPhhndGWqqc1DV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 199024,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1807993\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/72XFWgmIuW2i5uKUbhpQWt\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/72XFWgmIuW2i5uKUbhpQWt\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"72XFWgmIuW2i5uKUbhpQWt\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Pilot with a Fear of Heights\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 27,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:72XFWgmIuW2i5uKUbhpQWt\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-10T04:22:34Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4QtjFIgtyBbtj0uIRIJcpj\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4QtjFIgtyBbtj0uIRIJcpj\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4QtjFIgtyBbtj0uIRIJcpj\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Ivory Layne\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4QtjFIgtyBbtj0uIRIJcpj\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7I8zMEzatyFDoYpBChOj9S\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7I8zMEzatyFDoYpBChOj9S\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7I8zMEzatyFDoYpBChOj9S\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c166b926ec9b756c3b043868\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c166b926ec9b756c3b043868\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c166b926ec9b756c3b043868\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Committed\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-04-27\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 3,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7I8zMEzatyFDoYpBChOj9S\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4QtjFIgtyBbtj0uIRIJcpj\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4QtjFIgtyBbtj0uIRIJcpj\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4QtjFIgtyBbtj0uIRIJcpj\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ivory Layne\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4QtjFIgtyBbtj0uIRIJcpj\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 196000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADP1818377\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6VGnKsXhFekwBOAnIY8cFM\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6VGnKsXhFekwBOAnIY8cFM\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6VGnKsXhFekwBOAnIY8cFM\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Green (Secret Songbook Sessions)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 39,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8b506435292199adc0d3c7ccdc9c330f1539b5b9?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6VGnKsXhFekwBOAnIY8cFM\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-10T03:56:33Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/49jTY62Cpw3RYo4dLuG43W\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/49jTY62Cpw3RYo4dLuG43W\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"49jTY62Cpw3RYo4dLuG43W\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Cian Ducrot\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:49jTY62Cpw3RYo4dLuG43W\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3HfPgsV9182o2KraJHNQ83\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3HfPgsV9182o2KraJHNQ83\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3HfPgsV9182o2KraJHNQ83\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273fa3894aea7c6937604ca26a3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02fa3894aea7c6937604ca26a3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851fa3894aea7c6937604ca26a3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"started in college (mixtape)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-07-10\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3HfPgsV9182o2KraJHNQ83\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/49jTY62Cpw3RYo4dLuG43W\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/49jTY62Cpw3RYo4dLuG43W\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"49jTY62Cpw3RYo4dLuG43W\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Cian Ducrot\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:49jTY62Cpw3RYo4dLuG43W\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 2,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 179558,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1962454\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6UjmzarRswXYXr6k67kemd\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6UjmzarRswXYXr6k67kemd\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6UjmzarRswXYXr6k67kemd\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"All That I Know\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 50,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e4d4e61018942773486cc98397dd80b42cd2adec?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6UjmzarRswXYXr6k67kemd\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-10T01:53:30Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6g01TPprAdALKCjAwBYPH1\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6g01TPprAdALKCjAwBYPH1\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6g01TPprAdALKCjAwBYPH1\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Casey Lowry\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6g01TPprAdALKCjAwBYPH1\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1rfIrt2WVJGHlRRb6alpYI\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1rfIrt2WVJGHlRRb6alpYI\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1rfIrt2WVJGHlRRb6alpYI\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27323d9233338f4f841e84bbe8f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0223d9233338f4f841e84bbe8f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485123d9233338f4f841e84bbe8f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Psycho\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-02-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1rfIrt2WVJGHlRRb6alpYI\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6g01TPprAdALKCjAwBYPH1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6g01TPprAdALKCjAwBYPH1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6g01TPprAdALKCjAwBYPH1\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Casey Lowry\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6g01TPprAdALKCjAwBYPH1\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 196400,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"UKELY2000006\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0KopvI4SRfbketpJaDnG68\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0KopvI4SRfbketpJaDnG68\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0KopvI4SRfbketpJaDnG68\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Psycho\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 35,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/77325d4ac481b8275e0b63c165a30387e69a8a19?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0KopvI4SRfbketpJaDnG68\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-10T01:40:16Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3jRUgDdL3cI6Jti1iZPVAB\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3jRUgDdL3cI6Jti1iZPVAB\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3jRUgDdL3cI6Jti1iZPVAB\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Chxrlotte\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3jRUgDdL3cI6Jti1iZPVAB\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/475DekHO5qji4FysQuYAIW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/475DekHO5qji4FysQuYAIW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"475DekHO5qji4FysQuYAIW\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273104bd8d103759d511183c7ce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02104bd8d103759d511183c7ce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851104bd8d103759d511183c7ce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Come With Me\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-07-04\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:475DekHO5qji4FysQuYAIW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3jRUgDdL3cI6Jti1iZPVAB\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3jRUgDdL3cI6Jti1iZPVAB\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3jRUgDdL3cI6Jti1iZPVAB\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Chxrlotte\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3jRUgDdL3cI6Jti1iZPVAB\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 156586,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEH1985725\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/20knH2CFE0me7lUYfAa4BX\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/20knH2CFE0me7lUYfAa4BX\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"20knH2CFE0me7lUYfAa4BX\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Come With Me\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 51,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/09aadd5389c391fc43f9d74e1a84f1dbd6b9ef3d?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:20knH2CFE0me7lUYfAa4BX\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-08T18:48:52Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/48PAAxWdIDbA4WHkHjgsEv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/48PAAxWdIDbA4WHkHjgsEv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"48PAAxWdIDbA4WHkHjgsEv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Wild Party\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:48PAAxWdIDbA4WHkHjgsEv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"CA\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"US\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1itqJ1Ss7xUhNq0XoV1Ndk\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1itqJ1Ss7xUhNq0XoV1Ndk\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1itqJ1Ss7xUhNq0XoV1Ndk\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b2b05168e86b0af78ede0d97\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b2b05168e86b0af78ede0d97\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b2b05168e86b0af78ede0d97\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Phantom Pop\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2014-10-07\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1itqJ1Ss7xUhNq0XoV1Ndk\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/48PAAxWdIDbA4WHkHjgsEv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/48PAAxWdIDbA4WHkHjgsEv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"48PAAxWdIDbA4WHkHjgsEv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wild Party\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:48PAAxWdIDbA4WHkHjgsEv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"CA\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"US\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 221626,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US5261419803\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/21xou84xCn9aF4z2N5GzTK\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/21xou84xCn9aF4z2N5GzTK\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"21xou84xCn9aF4z2N5GzTK\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Life's Too Short\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 46,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/7174a08edd4dee3739dac0fa6ccd7a1559b69f34?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:21xou84xCn9aF4z2N5GzTK\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-08T17:23:51Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6fU24B4K9kWmFt5WTwwsLF\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6fU24B4K9kWmFt5WTwwsLF\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6fU24B4K9kWmFt5WTwwsLF\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Noah Floersch\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6fU24B4K9kWmFt5WTwwsLF\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/167DuKsDR7dEJmsEH4Mc2D\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/167DuKsDR7dEJmsEH4Mc2D\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"167DuKsDR7dEJmsEH4Mc2D\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273bed03e69f71f10abd0c788d6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02bed03e69f71f10abd0c788d6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851bed03e69f71f10abd0c788d6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Girl from the Sidewalk\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-12-08\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:167DuKsDR7dEJmsEH4Mc2D\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6fU24B4K9kWmFt5WTwwsLF\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6fU24B4K9kWmFt5WTwwsLF\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6fU24B4K9kWmFt5WTwwsLF\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Noah Floersch\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6fU24B4K9kWmFt5WTwwsLF\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 404210,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADY1881397\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/15CQ7QHdv9z5Gk8YThPfpL\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/15CQ7QHdv9z5Gk8YThPfpL\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"15CQ7QHdv9z5Gk8YThPfpL\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Girl from the Sidewalk\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 41,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e9b5ff5c1c3b7d4034dda0fdc3fcb51e85e74a91?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:15CQ7QHdv9z5Gk8YThPfpL\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-07T20:37:49Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6aYFM3YVoyI9q7DuTRY9nY\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6aYFM3YVoyI9q7DuTRY9nY\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6aYFM3YVoyI9q7DuTRY9nY\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Roseburg\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6aYFM3YVoyI9q7DuTRY9nY\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3Mk8hnqKmRJyySltvDr8Bb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3Mk8hnqKmRJyySltvDr8Bb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3Mk8hnqKmRJyySltvDr8Bb\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273931451f9e6b65fa559aec737\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02931451f9e6b65fa559aec737\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851931451f9e6b65fa559aec737\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Righteous Punk\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-02-18\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3Mk8hnqKmRJyySltvDr8Bb\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6aYFM3YVoyI9q7DuTRY9nY\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6aYFM3YVoyI9q7DuTRY9nY\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6aYFM3YVoyI9q7DuTRY9nY\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Roseburg\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6aYFM3YVoyI9q7DuTRY9nY\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 222401,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZES81921929\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/75tN7O8U0ypCQ85LFtTgND\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/75tN7O8U0ypCQ85LFtTgND\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"75tN7O8U0ypCQ85LFtTgND\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Be Good\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ada041f4fb01fc86ffb6e776761d823bb7873e07?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:75tN7O8U0ypCQ85LFtTgND\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-04T16:28:21Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2LQuNrg0CPQj6R9DJc2vXB\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2LQuNrg0CPQj6R9DJc2vXB\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2LQuNrg0CPQj6R9DJc2vXB\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Felix Hagan & the Family\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2LQuNrg0CPQj6R9DJc2vXB\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0dok15xhsdGhsokxbIphNw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0dok15xhsdGhsokxbIphNw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0dok15xhsdGhsokxbIphNw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273ac3acb8532f3a13537e3d901\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02ac3acb8532f3a13537e3d901\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851ac3acb8532f3a13537e3d901\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Attention Seeker\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-11-24\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0dok15xhsdGhsokxbIphNw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2LQuNrg0CPQj6R9DJc2vXB\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2LQuNrg0CPQj6R9DJc2vXB\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2LQuNrg0CPQj6R9DJc2vXB\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Felix Hagan & the Family\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2LQuNrg0CPQj6R9DJc2vXB\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 262509,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GB26W1700211\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0SaiBUaBe0AXfsUU0XOxhE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0SaiBUaBe0AXfsUU0XOxhE\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0SaiBUaBe0AXfsUU0XOxhE\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Tough to Be a Dreamer\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 41,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d12fbbb5b20a739d0d15d6334819d2f69f1ad111?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 12,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0SaiBUaBe0AXfsUU0XOxhE\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-10-04T01:38:59Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/70fUpxdAr6t0LJw3xJmMhm\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/70fUpxdAr6t0LJw3xJmMhm\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"70fUpxdAr6t0LJw3xJmMhm\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Motherfolk\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:70fUpxdAr6t0LJw3xJmMhm\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4wOpcPLdWnzhU28kubGRXC\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4wOpcPLdWnzhU28kubGRXC\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4wOpcPLdWnzhU28kubGRXC\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27309486ea76c350f9f465ead53\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0209486ea76c350f9f465ead53\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485109486ea76c350f9f465ead53\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Family Ghost\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-11-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4wOpcPLdWnzhU28kubGRXC\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/70fUpxdAr6t0LJw3xJmMhm\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/70fUpxdAr6t0LJw3xJmMhm\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"70fUpxdAr6t0LJw3xJmMhm\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Motherfolk\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:70fUpxdAr6t0LJw3xJmMhm\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 173369,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ8GX1700696\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1cjqFBE4aOD6Dlmy0sUxzr\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1cjqFBE4aOD6Dlmy0sUxzr\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1cjqFBE4aOD6Dlmy0sUxzr\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Fine With It\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 25,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ae3293404ba2a12dd2e04a6091d120ddbc03f5b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 7,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1cjqFBE4aOD6Dlmy0sUxzr\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-09-24T19:58:01Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0wyMPXGfOuQzNR54ujR9Ix\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0wyMPXGfOuQzNR54ujR9Ix\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0wyMPXGfOuQzNR54ujR9Ix\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Caamp\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0wyMPXGfOuQzNR54ujR9Ix\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4Ib3LE6FimfhNVnY7Tc1zM\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4Ib3LE6FimfhNVnY7Tc1zM\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4Ib3LE6FimfhNVnY7Tc1zM\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273bd24a030cbb9f020ead67baa\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02bd24a030cbb9f020ead67baa\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851bd24a030cbb9f020ead67baa\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"By and By\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-07-26\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4Ib3LE6FimfhNVnY7Tc1zM\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0wyMPXGfOuQzNR54ujR9Ix\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0wyMPXGfOuQzNR54ujR9Ix\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0wyMPXGfOuQzNR54ujR9Ix\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Caamp\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0wyMPXGfOuQzNR54ujR9Ix\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 280794,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQE91500937\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/75nZ4W6quZhI55LKiqCXWh\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/75nZ4W6quZhI55LKiqCXWh\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"75nZ4W6quZhI55LKiqCXWh\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"By and By\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 66,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/6b6cd20a98bf38ba3f93546693b7832f4797ae42?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 11,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:75nZ4W6quZhI55LKiqCXWh\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-09-23T18:24:31Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3D1IyJznpDnWnnFrzjuWnh\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3D1IyJznpDnWnnFrzjuWnh\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3D1IyJznpDnWnnFrzjuWnh\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Ivan & Alyosha\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3D1IyJznpDnWnnFrzjuWnh\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4zLNBl29V46EJGzzoXWW4T\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4zLNBl29V46EJGzzoXWW4T\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4zLNBl29V46EJGzzoXWW4T\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273fb8b1cb9172771570959bf23\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02fb8b1cb9172771570959bf23\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851fb8b1cb9172771570959bf23\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ivan & Alyosha\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-10-23\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4zLNBl29V46EJGzzoXWW4T\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3D1IyJznpDnWnnFrzjuWnh\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3D1IyJznpDnWnnFrzjuWnh\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3D1IyJznpDnWnnFrzjuWnh\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ivan & Alyosha\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3D1IyJznpDnWnnFrzjuWnh\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 252946,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"CAN111900232\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0Yd7U8LUQrC9k81b3fBVoS\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0Yd7U8LUQrC9k81b3fBVoS\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0Yd7U8LUQrC9k81b3fBVoS\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Everybody Breaks\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0Yd7U8LUQrC9k81b3fBVoS\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-09-22T00:28:06Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2Wda8QEZK7twazWzqDvOdk\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2Wda8QEZK7twazWzqDvOdk\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2Wda8QEZK7twazWzqDvOdk\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Maddie Poppe\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2Wda8QEZK7twazWzqDvOdk\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2QLmbA4bUXnqklxUOuyVyg\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2QLmbA4bUXnqklxUOuyVyg\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2QLmbA4bUXnqklxUOuyVyg\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2737123300bb171f248cac55a4c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e027123300bb171f248cac55a4c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048517123300bb171f248cac55a4c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Whirlwind\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-05-17\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2QLmbA4bUXnqklxUOuyVyg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2Wda8QEZK7twazWzqDvOdk\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2Wda8QEZK7twazWzqDvOdk\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2Wda8QEZK7twazWzqDvOdk\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Maddie Poppe\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2Wda8QEZK7twazWzqDvOdk\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 182813,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USHR11939118\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2VQzy5hIet7TpNop2MSFgN\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2VQzy5hIet7TpNop2MSFgN\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2VQzy5hIet7TpNop2MSFgN\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Wildflowers\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 52,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/cbefdb703304e5fedc1f7e8599712c9163fb5f26?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2VQzy5hIet7TpNop2MSFgN\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-09-21T15:40:53Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1rwaNYO0jV0TYiZm4SQTOe\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1rwaNYO0jV0TYiZm4SQTOe\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1rwaNYO0jV0TYiZm4SQTOe\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Kulick\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1rwaNYO0jV0TYiZm4SQTOe\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1JEYfSof9aC3v7dQb92G1m\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1JEYfSof9aC3v7dQb92G1m\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1JEYfSof9aC3v7dQb92G1m\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2737759d785656d8d772f02e416\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e027759d785656d8d772f02e416\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048517759d785656d8d772f02e416\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Yelling in a Quiet Neighborhood\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-10-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 9,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1JEYfSof9aC3v7dQb92G1m\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1rwaNYO0jV0TYiZm4SQTOe\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1rwaNYO0jV0TYiZm4SQTOe\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1rwaNYO0jV0TYiZm4SQTOe\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Kulick\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1rwaNYO0jV0TYiZm4SQTOe\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 203080,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QM7282088916\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1tRpbSpNYcwTuINLnLLuEy\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1tRpbSpNYcwTuINLnLLuEy\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1tRpbSpNYcwTuINLnLLuEy\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Rope\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 19,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/4899f2b0a3907f134c722555cc5acee32e8118a3?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1tRpbSpNYcwTuINLnLLuEy\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-09-14T01:24:27Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2Iv3GtO9JsuCcN65u5JpDj\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2Iv3GtO9JsuCcN65u5JpDj\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2Iv3GtO9JsuCcN65u5JpDj\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Modern Day Miracle\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2Iv3GtO9JsuCcN65u5JpDj\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5dOoZKm3bj9iDNZDNvAf5H\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5dOoZKm3bj9iDNZDNvAf5H\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5dOoZKm3bj9iDNZDNvAf5H\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273cc7b28825a8b829e6dd72494\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02cc7b28825a8b829e6dd72494\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851cc7b28825a8b829e6dd72494\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Falling in a Dream\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-06-05\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5dOoZKm3bj9iDNZDNvAf5H\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2Iv3GtO9JsuCcN65u5JpDj\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2Iv3GtO9JsuCcN65u5JpDj\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2Iv3GtO9JsuCcN65u5JpDj\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Modern Day Miracle\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2Iv3GtO9JsuCcN65u5JpDj\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 234747,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZES92069704\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3vjy2Guv89g2GDn4DJl53G\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3vjy2Guv89g2GDn4DJl53G\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3vjy2Guv89g2GDn4DJl53G\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Falling in a Dream\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 40,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/bf6963928c57897558984d7835bb07d7f7c099f4?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3vjy2Guv89g2GDn4DJl53G\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-09-04T22:12:49Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/58eX9oo07KxvqPgbQmI0V5\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/58eX9oo07KxvqPgbQmI0V5\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"58eX9oo07KxvqPgbQmI0V5\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Linus from the Stars\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:58eX9oo07KxvqPgbQmI0V5\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0AtyEBzAK9kZIajNDBW13F\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0AtyEBzAK9kZIajNDBW13F\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0AtyEBzAK9kZIajNDBW13F\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273582a5cad29027f4a1df50cc1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02582a5cad29027f4a1df50cc1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851582a5cad29027f4a1df50cc1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lovely, Wonderful Thoughts\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-01-09\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0AtyEBzAK9kZIajNDBW13F\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/58eX9oo07KxvqPgbQmI0V5\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/58eX9oo07KxvqPgbQmI0V5\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"58eX9oo07KxvqPgbQmI0V5\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Linus from the Stars\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:58eX9oo07KxvqPgbQmI0V5\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 201600,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"SE53D1900001\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5ES1j81Tyrkw9i5KyVc25f\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5ES1j81Tyrkw9i5KyVc25f\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5ES1j81Tyrkw9i5KyVc25f\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Starry Eyed\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 38,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/100349f5ff36ce12db0db4a2a59e518bfb109f88?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5ES1j81Tyrkw9i5KyVc25f\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-09-04T21:54:06Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2rHL6EYRIhNpKppupGwW0o\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2rHL6EYRIhNpKppupGwW0o\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2rHL6EYRIhNpKppupGwW0o\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Brennen Henson\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2rHL6EYRIhNpKppupGwW0o\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1ieqb4b6E2KHdMT0iLxXcQ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1ieqb4b6E2KHdMT0iLxXcQ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1ieqb4b6E2KHdMT0iLxXcQ\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d75ee3c000825eee077ae697\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d75ee3c000825eee077ae697\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d75ee3c000825eee077ae697\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Hold Me\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-05-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1ieqb4b6E2KHdMT0iLxXcQ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2rHL6EYRIhNpKppupGwW0o\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2rHL6EYRIhNpKppupGwW0o\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2rHL6EYRIhNpKppupGwW0o\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Brennen Henson\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2rHL6EYRIhNpKppupGwW0o\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 252055,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFYW1933205\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3eoNkbxAbEAwjhWUNjvtZ6\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3eoNkbxAbEAwjhWUNjvtZ6\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3eoNkbxAbEAwjhWUNjvtZ6\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Hold Me\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 43,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/020b0e854522e53362be74825d0242c04d791787?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3eoNkbxAbEAwjhWUNjvtZ6\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-28T20:36:55Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4R2Uq6auSG3ZSkBHA0ONQb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4R2Uq6auSG3ZSkBHA0ONQb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4R2Uq6auSG3ZSkBHA0ONQb\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bear Attack!\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4R2Uq6auSG3ZSkBHA0ONQb\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0WgOVf8Jt9lacLTKoBCYKc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0WgOVf8Jt9lacLTKoBCYKc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0WgOVf8Jt9lacLTKoBCYKc\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2734049ad8e05fc86305980fe68\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e024049ad8e05fc86305980fe68\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048514049ad8e05fc86305980fe68\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Epochs\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-02-04\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 4,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0WgOVf8Jt9lacLTKoBCYKc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4R2Uq6auSG3ZSkBHA0ONQb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4R2Uq6auSG3ZSkBHA0ONQb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4R2Uq6auSG3ZSkBHA0ONQb\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bear Attack!\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4R2Uq6auSG3ZSkBHA0ONQb\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 242700,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCACL1651888\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2MuhEFdNLC5Ig3CqaQ2s5H\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2MuhEFdNLC5Ig3CqaQ2s5H\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2MuhEFdNLC5Ig3CqaQ2s5H\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Carnivore\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 47,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/bb4f89e24a36431a34203bd1ffdc1370577c7ec3?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2MuhEFdNLC5Ig3CqaQ2s5H\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-28T19:33:49Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/42crL07E4WPfVovyUtMpvC\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/42crL07E4WPfVovyUtMpvC\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"42crL07E4WPfVovyUtMpvC\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Robert DeLong\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:42crL07E4WPfVovyUtMpvC\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2eZ2ATn7u3JNXAxBAPZfwu\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2eZ2ATn7u3JNXAxBAPZfwu\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2eZ2ATn7u3JNXAxBAPZfwu\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273a374e07ac7f07adcc2ba221a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02a374e07ac7f07adcc2ba221a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851a374e07ac7f07adcc2ba221a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Better In College (feat. Ashe)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-09-11\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2eZ2ATn7u3JNXAxBAPZfwu\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/42crL07E4WPfVovyUtMpvC\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/42crL07E4WPfVovyUtMpvC\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"42crL07E4WPfVovyUtMpvC\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Robert DeLong\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:42crL07E4WPfVovyUtMpvC\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6P5NO5hzJbuOqSdyPB7SJM\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6P5NO5hzJbuOqSdyPB7SJM\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6P5NO5hzJbuOqSdyPB7SJM\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ashe\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6P5NO5hzJbuOqSdyPB7SJM\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 208786,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USYAH1900287\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7hsWlOs1hC4uLdf7bZ44RM\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7hsWlOs1hC4uLdf7bZ44RM\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7hsWlOs1hC4uLdf7bZ44RM\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Better In College (feat. Ashe)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 11,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7hsWlOs1hC4uLdf7bZ44RM\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-11T07:55:01Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/266PvBAoJzPdxt3dgkEsBW\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/266PvBAoJzPdxt3dgkEsBW\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"266PvBAoJzPdxt3dgkEsBW\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"YOU\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:266PvBAoJzPdxt3dgkEsBW\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4L9e9zLbj55KDVSq7sMlNk\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4L9e9zLbj55KDVSq7sMlNk\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4L9e9zLbj55KDVSq7sMlNk\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730a60716ed84b411d47a194da\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020a60716ed84b411d47a194da\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510a60716ed84b411d47a194da\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"California\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-10-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4L9e9zLbj55KDVSq7sMlNk\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/266PvBAoJzPdxt3dgkEsBW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/266PvBAoJzPdxt3dgkEsBW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"266PvBAoJzPdxt3dgkEsBW\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"YOU\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:266PvBAoJzPdxt3dgkEsBW\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 184476,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEM1907933\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4s7LFFBthJEHOMR6qn67qB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4s7LFFBthJEHOMR6qn67qB\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4s7LFFBthJEHOMR6qn67qB\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"California\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 36,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/49707b8e1d8a175608cdc4b84edbd1c68fdf5fe7?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4s7LFFBthJEHOMR6qn67qB\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-10T22:00:26Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2ic4xySjQ39N7DJ0HZemeG\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2ic4xySjQ39N7DJ0HZemeG\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2ic4xySjQ39N7DJ0HZemeG\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bronze Radio Return\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2ic4xySjQ39N7DJ0HZemeG\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4Pc4lw8lfsJWPNNqfCer8r\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4Pc4lw8lfsJWPNNqfCer8r\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4Pc4lw8lfsJWPNNqfCer8r\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733aeab822f6e758b3d0cbe310\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023aeab822f6e758b3d0cbe310\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513aeab822f6e758b3d0cbe310\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Entertain You\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-02-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4Pc4lw8lfsJWPNNqfCer8r\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2ic4xySjQ39N7DJ0HZemeG\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2ic4xySjQ39N7DJ0HZemeG\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2ic4xySjQ39N7DJ0HZemeG\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bronze Radio Return\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2ic4xySjQ39N7DJ0HZemeG\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 226710,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ8GX1700328\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/407tDPFK5oB7hxSDl5Tg4O\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/407tDPFK5oB7hxSDl5Tg4O\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"407tDPFK5oB7hxSDl5Tg4O\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"With Me All Along\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 53,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d7138440da73440ad01dc8f26bdbac907d1ce535?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 7,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:407tDPFK5oB7hxSDl5Tg4O\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-03T00:09:01Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5LGo1zHegJTWzqVXgeNplt\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5LGo1zHegJTWzqVXgeNplt\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5LGo1zHegJTWzqVXgeNplt\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Ryan Mack\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5LGo1zHegJTWzqVXgeNplt\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3GyomH7dFhBWrQuvyY7DpH\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3GyomH7dFhBWrQuvyY7DpH\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3GyomH7dFhBWrQuvyY7DpH\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273dab4d669e6462afbacc8385e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02dab4d669e6462afbacc8385e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851dab4d669e6462afbacc8385e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Broke\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-11-11\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3GyomH7dFhBWrQuvyY7DpH\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5LGo1zHegJTWzqVXgeNplt\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5LGo1zHegJTWzqVXgeNplt\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5LGo1zHegJTWzqVXgeNplt\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ryan Mack\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5LGo1zHegJTWzqVXgeNplt\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 150973,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"IERZR2000002\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2zu30LdbP8392UxdpWrWG9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2zu30LdbP8392UxdpWrWG9\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2zu30LdbP8392UxdpWrWG9\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Broke\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 52,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/29635a393871ef58cbf3d81ac7de407a9a977eb8?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2zu30LdbP8392UxdpWrWG9\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-02T23:14:13Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1yE5pPI54nK5zg9FLj9hXd\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1yE5pPI54nK5zg9FLj9hXd\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1yE5pPI54nK5zg9FLj9hXd\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"RØYLS\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1yE5pPI54nK5zg9FLj9hXd\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/441KmoZ0jmcBI9lWtgA838\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/441KmoZ0jmcBI9lWtgA838\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"441KmoZ0jmcBI9lWtgA838\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730c1c3631875c34043ef89bd4\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020c1c3631875c34043ef89bd4\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510c1c3631875c34043ef89bd4\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Savages\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-04-12\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:441KmoZ0jmcBI9lWtgA838\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1yE5pPI54nK5zg9FLj9hXd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1yE5pPI54nK5zg9FLj9hXd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1yE5pPI54nK5zg9FLj9hXd\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"RØYLS\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1yE5pPI54nK5zg9FLj9hXd\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 204000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USA2P1914324\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1mhieKEuq6NV42a6YmEmRu\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1mhieKEuq6NV42a6YmEmRu\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1mhieKEuq6NV42a6YmEmRu\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Savages\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 38,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1a0f7f5f649460c89a732b654a8c30183349a9fa?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1mhieKEuq6NV42a6YmEmRu\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-02T23:11:04Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/46U5WmejGzsPqUiw3Uw0Xq\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/46U5WmejGzsPqUiw3Uw0Xq\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"46U5WmejGzsPqUiw3Uw0Xq\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Vian Izak\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:46U5WmejGzsPqUiw3Uw0Xq\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2ObGYWfbreeQPwmZ7gnzMB\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2ObGYWfbreeQPwmZ7gnzMB\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2ObGYWfbreeQPwmZ7gnzMB\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Michael Schawel\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2ObGYWfbreeQPwmZ7gnzMB\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7zXVPIFzkPh0a6GS7p8GpN\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7zXVPIFzkPh0a6GS7p8GpN\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7zXVPIFzkPh0a6GS7p8GpN\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27399196c56c17d66e2f72df2d7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0299196c56c17d66e2f72df2d7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485199196c56c17d66e2f72df2d7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The London Air Raids (Michael Schawel Remix)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-08-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7zXVPIFzkPh0a6GS7p8GpN\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/46U5WmejGzsPqUiw3Uw0Xq\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/46U5WmejGzsPqUiw3Uw0Xq\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"46U5WmejGzsPqUiw3Uw0Xq\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Vian Izak\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:46U5WmejGzsPqUiw3Uw0Xq\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2ObGYWfbreeQPwmZ7gnzMB\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2ObGYWfbreeQPwmZ7gnzMB\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2ObGYWfbreeQPwmZ7gnzMB\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Michael Schawel\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2ObGYWfbreeQPwmZ7gnzMB\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 173055,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ8R71700148\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5hhctiFbhPspFkn0mTRC97\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5hhctiFbhPspFkn0mTRC97\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5hhctiFbhPspFkn0mTRC97\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"The London Air Raids - Michael Schawel Remix\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 41,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/da4dd02e6d4f0d81ba5b4a207c73960d7c13a824?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5hhctiFbhPspFkn0mTRC97\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-02T16:50:03Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6qqNVTkY8uBg9cP3Jd7DAH\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6qqNVTkY8uBg9cP3Jd7DAH\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6qqNVTkY8uBg9cP3Jd7DAH\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Billie Eilish\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0JGOiO34nwfUdDrD612dOp\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0JGOiO34nwfUdDrD612dOp\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0JGOiO34nwfUdDrD612dOp\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732a038d3bf875d23e4aeaa84e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022a038d3bf875d23e4aeaa84e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512a038d3bf875d23e4aeaa84e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Happier Than Ever\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-07-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 16,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0JGOiO34nwfUdDrD612dOp\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6qqNVTkY8uBg9cP3Jd7DAH\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6qqNVTkY8uBg9cP3Jd7DAH\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6qqNVTkY8uBg9cP3Jd7DAH\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Billie Eilish\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6qqNVTkY8uBg9cP3Jd7DAH\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 298899,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM72105936\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4RVwu0g32PAqgUiJoXsdF8\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4RVwu0g32PAqgUiJoXsdF8\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4RVwu0g32PAqgUiJoXsdF8\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Happier Than Ever\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 86,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/20a10ed1ec5ad22668edc467682141db898ba45b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 15,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4RVwu0g32PAqgUiJoXsdF8\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-02T00:59:14Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2AOZDcU573oPnb1DcROcs6\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2AOZDcU573oPnb1DcROcs6\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2AOZDcU573oPnb1DcROcs6\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Ethan Sak\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2AOZDcU573oPnb1DcROcs6\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4uETUluvjvAeKKVRpd3jE9\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4uETUluvjvAeKKVRpd3jE9\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4uETUluvjvAeKKVRpd3jE9\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273dd1f1404f69606243dac1e47\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02dd1f1404f69606243dac1e47\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851dd1f1404f69606243dac1e47\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Make My Heart Go\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-01-25\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4uETUluvjvAeKKVRpd3jE9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2AOZDcU573oPnb1DcROcs6\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2AOZDcU573oPnb1DcROcs6\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2AOZDcU573oPnb1DcROcs6\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ethan Sak\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2AOZDcU573oPnb1DcROcs6\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 175793,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEA1995316\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5Kj7L3YnvkgiRmhMzYCnOW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5Kj7L3YnvkgiRmhMzYCnOW\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5Kj7L3YnvkgiRmhMzYCnOW\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Make My Heart Go\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5Kj7L3YnvkgiRmhMzYCnOW\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-02T00:39:17Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7aHNy2bjgGqOeFqUZ1shgb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7aHNy2bjgGqOeFqUZ1shgb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7aHNy2bjgGqOeFqUZ1shgb\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"New Friends\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7aHNy2bjgGqOeFqUZ1shgb\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1yntuGDRMZlcjOIyd27Tr9\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1yntuGDRMZlcjOIyd27Tr9\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1yntuGDRMZlcjOIyd27Tr9\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c84637a45a28c9c5151e3ae3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c84637a45a28c9c5151e3ae3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c84637a45a28c9c5151e3ae3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Purple Candy\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-07-12\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1yntuGDRMZlcjOIyd27Tr9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7aHNy2bjgGqOeFqUZ1shgb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7aHNy2bjgGqOeFqUZ1shgb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7aHNy2bjgGqOeFqUZ1shgb\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"New Friends\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7aHNy2bjgGqOeFqUZ1shgb\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 255847,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFYZ1924724\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7dMelypWXvdBG5RpRO1RJU\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7dMelypWXvdBG5RpRO1RJU\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7dMelypWXvdBG5RpRO1RJU\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Purple Candy\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7dMelypWXvdBG5RpRO1RJU\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-28T22:28:25Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3kVUvbeRdcrqQ3oHk5hPdx\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3kVUvbeRdcrqQ3oHk5hPdx\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3kVUvbeRdcrqQ3oHk5hPdx\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Grouplove\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3kVUvbeRdcrqQ3oHk5hPdx\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3oylWMc9TTC6Nx4I6U3axc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3oylWMc9TTC6Nx4I6U3axc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3oylWMc9TTC6Nx4I6U3axc\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d84a9bbcba91cb6a4a212b1b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d84a9bbcba91cb6a4a212b1b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d84a9bbcba91cb6a4a212b1b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Never Trust a Happy Song\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2011-09-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3oylWMc9TTC6Nx4I6U3axc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3kVUvbeRdcrqQ3oHk5hPdx\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3kVUvbeRdcrqQ3oHk5hPdx\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3kVUvbeRdcrqQ3oHk5hPdx\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Grouplove\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3kVUvbeRdcrqQ3oHk5hPdx\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 218013,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21101334\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0GO8y8jQk1PkHzS31d699N\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0GO8y8jQk1PkHzS31d699N\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0GO8y8jQk1PkHzS31d699N\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Tongue Tied\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 77,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0a3f9dcbd192a5b5bc70e5e768807d1c73e41366?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0GO8y8jQk1PkHzS31d699N\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-28T19:49:09Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/477tsxxnnHIlgh6oY6t9eq\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/477tsxxnnHIlgh6oY6t9eq\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"477tsxxnnHIlgh6oY6t9eq\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Noah Cunane\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:477tsxxnnHIlgh6oY6t9eq\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5CUmySQGLw4wXvGbD2KOMj\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5CUmySQGLw4wXvGbD2KOMj\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5CUmySQGLw4wXvGbD2KOMj\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27359662d06d44ddbb4e2493d13\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0259662d06d44ddbb4e2493d13\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485159662d06d44ddbb4e2493d13\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Vampire\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-09-08\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5CUmySQGLw4wXvGbD2KOMj\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/477tsxxnnHIlgh6oY6t9eq\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/477tsxxnnHIlgh6oY6t9eq\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"477tsxxnnHIlgh6oY6t9eq\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Noah Cunane\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:477tsxxnnHIlgh6oY6t9eq\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 127074,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMCE32000442\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4MZFRySsRu7V2FeDBVuoO6\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4MZFRySsRu7V2FeDBVuoO6\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4MZFRySsRu7V2FeDBVuoO6\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Vampire\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 43,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/b6dd0a8cdcb1e161800a13d1cb91f976b106a52b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4MZFRySsRu7V2FeDBVuoO6\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-26T21:37:17Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7gWuzS45c8RqCO79UmnQdk\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7gWuzS45c8RqCO79UmnQdk\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7gWuzS45c8RqCO79UmnQdk\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Osei The Seventh\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7gWuzS45c8RqCO79UmnQdk\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0jtuq1gdsHlc35DTSUcqwJ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0jtuq1gdsHlc35DTSUcqwJ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0jtuq1gdsHlc35DTSUcqwJ\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c9e4a4b431d215cc40781461\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c9e4a4b431d215cc40781461\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c9e4a4b431d215cc40781461\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Café Deluxe\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-02-19\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0jtuq1gdsHlc35DTSUcqwJ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7gWuzS45c8RqCO79UmnQdk\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7gWuzS45c8RqCO79UmnQdk\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7gWuzS45c8RqCO79UmnQdk\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Osei The Seventh\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7gWuzS45c8RqCO79UmnQdk\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 180362,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQX92003199\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4KAbHs539qjYyqH8OyQRPt\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4KAbHs539qjYyqH8OyQRPt\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4KAbHs539qjYyqH8OyQRPt\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Café Deluxe\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 44,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/7cb2f916615fa87e11c29a7a8152af38dcf77a5c?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4KAbHs539qjYyqH8OyQRPt\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=100&limit=50\\\\\\\",\\\\n  \\\\\\\"offset\\\\\\\" : 50,\\\\n  \\\\\\\"previous\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=0&limit=50\\\\\\\",\\\\n  \\\\\\\"total\\\\\\\" : 286\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/tracks?offset=100&limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjNiOTRhNzFjOTk3MzI4NzhjZTg0YTc2MzA3MzJmODBmIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"208504\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:23 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=100&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-20T19:51:46Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7giUHu5pv6YTZgSkxxCcgh\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7giUHu5pv6YTZgSkxxCcgh\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7giUHu5pv6YTZgSkxxCcgh\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Edward Sharpe & The Magnetic Zeros\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7giUHu5pv6YTZgSkxxCcgh\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4EBtalKeisyblXwox9mMXf\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4EBtalKeisyblXwox9mMXf\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4EBtalKeisyblXwox9mMXf\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27393769b06d10205212197060a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0293769b06d10205212197060a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485193769b06d10205212197060a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Up From Below\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2009-07-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 13,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4EBtalKeisyblXwox9mMXf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7giUHu5pv6YTZgSkxxCcgh\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7giUHu5pv6YTZgSkxxCcgh\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7giUHu5pv6YTZgSkxxCcgh\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Edward Sharpe & The Magnetic Zeros\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7giUHu5pv6YTZgSkxxCcgh\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 303200,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USVR90954206\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6ZapsNk1ZpaebNXAIohP9R\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6ZapsNk1ZpaebNXAIohP9R\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6ZapsNk1ZpaebNXAIohP9R\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Home\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 6,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6ZapsNk1ZpaebNXAIohP9R\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-14T17:08:56Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4qyZ9QtsG2q2DPrwm7lgQV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4qyZ9QtsG2q2DPrwm7lgQV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4qyZ9QtsG2q2DPrwm7lgQV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Lil Loop\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4qyZ9QtsG2q2DPrwm7lgQV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0ZHGtv9We7CntjSMfy1b3A\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0ZHGtv9We7CntjSMfy1b3A\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0ZHGtv9We7CntjSMfy1b3A\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d01918047cfe4ccac5473da0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d01918047cfe4ccac5473da0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d01918047cfe4ccac5473da0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Amazing Adventures of Discovery\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-09-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 3,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0ZHGtv9We7CntjSMfy1b3A\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4qyZ9QtsG2q2DPrwm7lgQV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4qyZ9QtsG2q2DPrwm7lgQV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4qyZ9QtsG2q2DPrwm7lgQV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lil Loop\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4qyZ9QtsG2q2DPrwm7lgQV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 124387,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZHN51972894\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4Zs6iLvI39UtUFiZ5yOT4Y\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4Zs6iLvI39UtUFiZ5yOT4Y\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4Zs6iLvI39UtUFiZ5yOT4Y\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Discovery Dance 2.0\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 15,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/30c73b2a4c2f249d6668825b5da505d2aa3c5e7a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4Zs6iLvI39UtUFiZ5yOT4Y\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-12T21:21:48Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"American Authors\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1av32Pkx9yoZYU250F34zW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1av32Pkx9yoZYU250F34zW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1av32Pkx9yoZYU250F34zW\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c32b9cb61b201e9846a18370\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c32b9cb61b201e9846a18370\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c32b9cb61b201e9846a18370\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"What We Live For\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-07-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1av32Pkx9yoZYU250F34zW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"American Authors\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 206920,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM71602522\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6zDs6zI94L761vd0cVScTT\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6zDs6zI94L761vd0cVScTT\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6zDs6zI94L761vd0cVScTT\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"I'm Born To Run\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 65,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/c1fa330c10b892ab2090e3e7d927993f083aa5e4?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6zDs6zI94L761vd0cVScTT\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-12T21:02:18Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2q3GG88dVwuQPF4FmySr9I\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2q3GG88dVwuQPF4FmySr9I\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2q3GG88dVwuQPF4FmySr9I\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Score\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2q3GG88dVwuQPF4FmySr9I\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6pUg9RDDoVyQQVJ48FkmXz\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6pUg9RDDoVyQQVJ48FkmXz\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6pUg9RDDoVyQQVJ48FkmXz\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c469e75608b59994c1c422be\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c469e75608b59994c1c422be\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c469e75608b59994c1c422be\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"ATLAS\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-10-13\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6pUg9RDDoVyQQVJ48FkmXz\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2q3GG88dVwuQPF4FmySr9I\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2q3GG88dVwuQPF4FmySr9I\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2q3GG88dVwuQPF4FmySr9I\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Score\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2q3GG88dVwuQPF4FmySr9I\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 231986,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM71700189\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7Fv8Qp3tTSbSS2VjryUF7L\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7Fv8Qp3tTSbSS2VjryUF7L\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7Fv8Qp3tTSbSS2VjryUF7L\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Revolution\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 66,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/a73c5b6423a9c280e88b6b8e0aeba69a799c159a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 8,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7Fv8Qp3tTSbSS2VjryUF7L\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-09T16:44:36Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4BxCuXFJrSWGi1KHcVqaU4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4BxCuXFJrSWGi1KHcVqaU4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4BxCuXFJrSWGi1KHcVqaU4\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Kodaline\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4BxCuXFJrSWGi1KHcVqaU4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7MGBQrzuC41v7jmMVyPQwd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7MGBQrzuC41v7jmMVyPQwd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7MGBQrzuC41v7jmMVyPQwd\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2737bae79a3901e0ad8334c3d97\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e027bae79a3901e0ad8334c3d97\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048517bae79a3901e0ad8334c3d97\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wherever You Are\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-01-10\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7MGBQrzuC41v7jmMVyPQwd\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4BxCuXFJrSWGi1KHcVqaU4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4BxCuXFJrSWGi1KHcVqaU4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4BxCuXFJrSWGi1KHcVqaU4\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Kodaline\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4BxCuXFJrSWGi1KHcVqaU4\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 185004,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1978984\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1b3nlcP6hogIzYRVK2Ui7K\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1b3nlcP6hogIzYRVK2Ui7K\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1b3nlcP6hogIzYRVK2Ui7K\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Wherever You Are\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 1,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1b3nlcP6hogIzYRVK2Ui7K\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-05T06:17:06Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"American Authors\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0V4laGZGshNCpurfIdUhHv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0V4laGZGshNCpurfIdUhHv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0V4laGZGshNCpurfIdUhHv\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273cc761ba55b0e7abad4539abe\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02cc761ba55b0e7abad4539abe\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851cc761ba55b0e7abad4539abe\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Oh, What A Life\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2014-01-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0V4laGZGshNCpurfIdUhHv\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"American Authors\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 183893,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM71302188\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/64ybTt8CKxPdeXBNnu08Op\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/64ybTt8CKxPdeXBNnu08Op\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"64ybTt8CKxPdeXBNnu08Op\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Believer\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 50,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/856e368f6e031465353b3610b0b9f37b4812ada2?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:64ybTt8CKxPdeXBNnu08Op\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-03T18:33:10Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1Eie0tY91rpi7Y0jtIOXzI\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1Eie0tY91rpi7Y0jtIOXzI\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Eie0tY91rpi7Y0jtIOXzI\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Wingtip\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1Eie0tY91rpi7Y0jtIOXzI\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1HIM724n5CusJzGpfbIBX7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1HIM724n5CusJzGpfbIBX7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1HIM724n5CusJzGpfbIBX7\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27349157669a7b7f40551c2a922\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0249157669a7b7f40551c2a922\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485149157669a7b7f40551c2a922\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Heartworks\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-10-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1HIM724n5CusJzGpfbIBX7\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1Eie0tY91rpi7Y0jtIOXzI\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1Eie0tY91rpi7Y0jtIOXzI\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1Eie0tY91rpi7Y0jtIOXzI\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wingtip\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1Eie0tY91rpi7Y0jtIOXzI\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 159754,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZJG51919824\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/17onAqgx91Bp9MXtF4TvJ8\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/17onAqgx91Bp9MXtF4TvJ8\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"17onAqgx91Bp9MXtF4TvJ8\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Heartworks\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 47,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:17onAqgx91Bp9MXtF4TvJ8\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-02T22:19:26Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/10exVja0key0uqUkk6LJRT\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/10exVja0key0uqUkk6LJRT\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"10exVja0key0uqUkk6LJRT\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Vance Joy\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:10exVja0key0uqUkk6LJRT\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AU\\\\\\\", \\\\\\\"NZ\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6HQ54O9WPAWQS5gNtS1YOw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6HQ54O9WPAWQS5gNtS1YOw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6HQ54O9WPAWQS5gNtS1YOw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27362f1ce2663a8c7957efd2ef9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0262f1ce2663a8c7957efd2ef9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485162f1ce2663a8c7957efd2ef9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Missing Piece\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-05-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6HQ54O9WPAWQS5gNtS1YOw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/10exVja0key0uqUkk6LJRT\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/10exVja0key0uqUkk6LJRT\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"10exVja0key0uqUkk6LJRT\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Vance Joy\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:10exVja0key0uqUkk6LJRT\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AU\\\\\\\", \\\\\\\"NZ\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 217408,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT22102087\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0YYg6U1Yrd4UjnG5iVhiXh\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0YYg6U1Yrd4UjnG5iVhiXh\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0YYg6U1Yrd4UjnG5iVhiXh\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Missing Piece\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 53,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1b068cb62dd3f818a47d8d2d02d0f03c3c78e706?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0YYg6U1Yrd4UjnG5iVhiXh\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-02T17:23:49Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5vBSrE1xujD2FXYRarbAXc\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5vBSrE1xujD2FXYRarbAXc\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5vBSrE1xujD2FXYRarbAXc\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Years & Years\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5vBSrE1xujD2FXYRarbAXc\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0l3xFNgfm1mT3fLIRsgRtW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0l3xFNgfm1mT3fLIRsgRtW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0l3xFNgfm1mT3fLIRsgRtW\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273bdee2903ac46df0b47cd0086\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02bdee2903ac46df0b47cd0086\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851bdee2903ac46df0b47cd0086\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"If You're Over Me\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-05-10\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0l3xFNgfm1mT3fLIRsgRtW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5vBSrE1xujD2FXYRarbAXc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5vBSrE1xujD2FXYRarbAXc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5vBSrE1xujD2FXYRarbAXc\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Years & Years\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5vBSrE1xujD2FXYRarbAXc\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 189000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBUM71801455\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/01k24g94i1JvkFLQmVEdCd\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/01k24g94i1JvkFLQmVEdCd\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"01k24g94i1JvkFLQmVEdCd\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"If You're Over Me\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 54,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/557e842060e4cc2ab6e83620fb2504e70a2dae72?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:01k24g94i1JvkFLQmVEdCd\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-02T03:43:33Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4AcHt3JxKy59IX7JNNlZn4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4AcHt3JxKy59IX7JNNlZn4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4AcHt3JxKy59IX7JNNlZn4\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Fitz and The Tantrums\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4AcHt3JxKy59IX7JNNlZn4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7HBKKw5pJLNj6mdRLb1KG3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7HBKKw5pJLNj6mdRLb1KG3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7HBKKw5pJLNj6mdRLb1KG3\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27358c4833cc8b1a3d6e4890940\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0258c4833cc8b1a3d6e4890940\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485158c4833cc8b1a3d6e4890940\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Fitz and The Tantrums\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-06-10\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7HBKKw5pJLNj6mdRLb1KG3\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4AcHt3JxKy59IX7JNNlZn4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4AcHt3JxKy59IX7JNNlZn4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4AcHt3JxKy59IX7JNNlZn4\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Fitz and The Tantrums\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4AcHt3JxKy59IX7JNNlZn4\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 193253,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21600408\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7j56HrjR9cGzvekvZY3Faz\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7j56HrjR9cGzvekvZY3Faz\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7j56HrjR9cGzvekvZY3Faz\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"HandClap\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 64,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/7d5f93b1b43d0f30ccfdbc8422e86a34127471b3?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7j56HrjR9cGzvekvZY3Faz\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-02T03:38:29Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6VxCmtR7S3yz4vnzsJqhSV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6VxCmtR7S3yz4vnzsJqhSV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6VxCmtR7S3yz4vnzsJqhSV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sheppard\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6VxCmtR7S3yz4vnzsJqhSV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0ecUmBX4469DFW5iWkuHia\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0ecUmBX4469DFW5iWkuHia\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0ecUmBX4469DFW5iWkuHia\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2738a99868b5a57469de83fb9ba\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e028a99868b5a57469de83fb9ba\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048518a99868b5a57469de83fb9ba\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bombs Away\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2015-01-12\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0ecUmBX4469DFW5iWkuHia\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6VxCmtR7S3yz4vnzsJqhSV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6VxCmtR7S3yz4vnzsJqhSV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6VxCmtR7S3yz4vnzsJqhSV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sheppard\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6VxCmtR7S3yz4vnzsJqhSV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 218227,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"AUIYA1400002\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0qt5f5EL92o8Snzopsv0en\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0qt5f5EL92o8Snzopsv0en\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0qt5f5EL92o8Snzopsv0en\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Geronimo\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 69,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/69fb93fe506d1142df3a770c3aa42a36b3fadc60?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0qt5f5EL92o8Snzopsv0en\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-07-01T20:29:26Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4gzpq5DPGxSnKTe4SA8HAU\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4gzpq5DPGxSnKTe4SA8HAU\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4gzpq5DPGxSnKTe4SA8HAU\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Coldplay\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4gzpq5DPGxSnKTe4SA8HAU\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6wiPmk3powmcz3G7zr6krg\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6wiPmk3powmcz3G7zr6krg\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6wiPmk3powmcz3G7zr6krg\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b1092c02972b0bfd91703f75\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b1092c02972b0bfd91703f75\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b1092c02972b0bfd91703f75\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Higher Power\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-05-07\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6wiPmk3powmcz3G7zr6krg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4gzpq5DPGxSnKTe4SA8HAU\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4gzpq5DPGxSnKTe4SA8HAU\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4gzpq5DPGxSnKTe4SA8HAU\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Coldplay\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4gzpq5DPGxSnKTe4SA8HAU\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 211294,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBAYE2100379\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0939D7aT18uBDS2MTjWzct\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0939D7aT18uBDS2MTjWzct\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0939D7aT18uBDS2MTjWzct\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Higher Power\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 74,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2d55b9267a4f0fc809f03ee7e7d0527485332d21?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0939D7aT18uBDS2MTjWzct\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-06-28T17:05:32Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1Hsdzj7Dlq2I7tHP7501T4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1Hsdzj7Dlq2I7tHP7501T4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Hsdzj7Dlq2I7tHP7501T4\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Niall Horan\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1Hsdzj7Dlq2I7tHP7501T4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5gdoRB1AUsGnScCuZ8gmPp\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5gdoRB1AUsGnScCuZ8gmPp\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5gdoRB1AUsGnScCuZ8gmPp\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733d13e91ce05c4e9b3e7201b7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023d13e91ce05c4e9b3e7201b7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513d13e91ce05c4e9b3e7201b7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Heartbreak Weather\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-03-13\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 14,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5gdoRB1AUsGnScCuZ8gmPp\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1Hsdzj7Dlq2I7tHP7501T4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1Hsdzj7Dlq2I7tHP7501T4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1Hsdzj7Dlq2I7tHP7501T4\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Niall Horan\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1Hsdzj7Dlq2I7tHP7501T4\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 193089,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUG12000226\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7rpNuuoMbid56XkDsx2FjE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7rpNuuoMbid56XkDsx2FjE\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7rpNuuoMbid56XkDsx2FjE\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Black And White\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 71,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/129efed16f076519528c9cfd1dda7a4032170a0a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7rpNuuoMbid56XkDsx2FjE\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-06-25T00:45:42Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2r4Yrkx4LokKxn7LHzJQjV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2r4Yrkx4LokKxn7LHzJQjV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2r4Yrkx4LokKxn7LHzJQjV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Brothers + Company\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2r4Yrkx4LokKxn7LHzJQjV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0Ww3vAC9qShtmIdptlkYWd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0Ww3vAC9qShtmIdptlkYWd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0Ww3vAC9qShtmIdptlkYWd\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732b3a5fd12aec130a614a90d2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022b3a5fd12aec130a614a90d2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512b3a5fd12aec130a614a90d2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Run\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-03-25\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0Ww3vAC9qShtmIdptlkYWd\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2r4Yrkx4LokKxn7LHzJQjV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2r4Yrkx4LokKxn7LHzJQjV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2r4Yrkx4LokKxn7LHzJQjV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Brothers + Company\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2r4Yrkx4LokKxn7LHzJQjV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 223652,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCACM1661349\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1Tstz6KHdiwv1xD5AeXHln\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1Tstz6KHdiwv1xD5AeXHln\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1Tstz6KHdiwv1xD5AeXHln\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Forever Love\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 26,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8dba4d41924acc7b5e44916b93c6e7f79a302a4f?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 6,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1Tstz6KHdiwv1xD5AeXHln\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-06-22T20:02:15Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1zNfnkHqbNqPMm0LY98Tfx\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1zNfnkHqbNqPMm0LY98Tfx\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1zNfnkHqbNqPMm0LY98Tfx\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"fredo disco\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1zNfnkHqbNqPMm0LY98Tfx\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/37JQK4X64SOl3G6T56UQRW\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/37JQK4X64SOl3G6T56UQRW\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"37JQK4X64SOl3G6T56UQRW\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"c0in\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:37JQK4X64SOl3G6T56UQRW\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7DvmTX1JyNLw62ShWq4nBD\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7DvmTX1JyNLw62ShWq4nBD\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7DvmTX1JyNLw62ShWq4nBD\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273df35ba51bac1e96cafb6ab4a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02df35ba51bac1e96cafb6ab4a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851df35ba51bac1e96cafb6ab4a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"life!\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-12-25\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7DvmTX1JyNLw62ShWq4nBD\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1zNfnkHqbNqPMm0LY98Tfx\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1zNfnkHqbNqPMm0LY98Tfx\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1zNfnkHqbNqPMm0LY98Tfx\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"fredo disco\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1zNfnkHqbNqPMm0LY98Tfx\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/37JQK4X64SOl3G6T56UQRW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/37JQK4X64SOl3G6T56UQRW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"37JQK4X64SOl3G6T56UQRW\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"c0in\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:37JQK4X64SOl3G6T56UQRW\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 146346,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ5FN1786562\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1fDsPpyR4utXvOFc9cefJt\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1fDsPpyR4utXvOFc9cefJt\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1fDsPpyR4utXvOFc9cefJt\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"life!\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 30,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/5f5a588ecf57e4a216beaa2baba28a48da572c54?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1fDsPpyR4utXvOFc9cefJt\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-06-12T22:44:56Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5cN9JUcmWKhbR3kM2mWIge\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5cN9JUcmWKhbR3kM2mWIge\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5cN9JUcmWKhbR3kM2mWIge\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Telehope\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5cN9JUcmWKhbR3kM2mWIge\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4F6qa8EPIgXZqsXjRKEmQm\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4F6qa8EPIgXZqsXjRKEmQm\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4F6qa8EPIgXZqsXjRKEmQm\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2736c90b7738fb3059a5bc1ef44\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e026c90b7738fb3059a5bc1ef44\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048516c90b7738fb3059a5bc1ef44\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"As Long as You're Here\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-07-03\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4F6qa8EPIgXZqsXjRKEmQm\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5cN9JUcmWKhbR3kM2mWIge\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5cN9JUcmWKhbR3kM2mWIge\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5cN9JUcmWKhbR3kM2mWIge\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Telehope\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5cN9JUcmWKhbR3kM2mWIge\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 197586,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEY2095089\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2rLibAE1JDKjvDD4f1yrZT\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2rLibAE1JDKjvDD4f1yrZT\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2rLibAE1JDKjvDD4f1yrZT\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"As Long as You're Here\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 14,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/a72fb2d8cb38160193b8892b28f59b839fd83c62?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2rLibAE1JDKjvDD4f1yrZT\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-06-02T13:56:53Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xwv9O4HYAqPMp1bbSqufi\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xwv9O4HYAqPMp1bbSqufi\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xwv9O4HYAqPMp1bbSqufi\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Mom Rock\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xwv9O4HYAqPMp1bbSqufi\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4TN7Zkl7TnC2J1ETVWXb2a\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4TN7Zkl7TnC2J1ETVWXb2a\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4TN7Zkl7TnC2J1ETVWXb2a\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273a3e2ab8ea0ef8054bfe90371\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02a3e2ab8ea0ef8054bfe90371\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851a3e2ab8ea0ef8054bfe90371\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Grand Romantic Life\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-04-19\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4TN7Zkl7TnC2J1ETVWXb2a\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xwv9O4HYAqPMp1bbSqufi\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xwv9O4HYAqPMp1bbSqufi\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xwv9O4HYAqPMp1bbSqufi\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Mom Rock\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xwv9O4HYAqPMp1bbSqufi\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 198954,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZES61925597\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2sL9oNbbcToqV7CKnpHUzm\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2sL9oNbbcToqV7CKnpHUzm\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2sL9oNbbcToqV7CKnpHUzm\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Grand Romantic Life\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 46,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/4d9e5a77b36c713c45c2f2d5401234b2b16d7d64?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2sL9oNbbcToqV7CKnpHUzm\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-06-02T13:56:08Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7ed5eSusVIBEIvmkASgzKj\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7ed5eSusVIBEIvmkASgzKj\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7ed5eSusVIBEIvmkASgzKj\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Honest Men\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7ed5eSusVIBEIvmkASgzKj\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4vpZiKNXO0eTWDWwJai3Iw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4vpZiKNXO0eTWDWwJai3Iw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4vpZiKNXO0eTWDWwJai3Iw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b526da3c03d761065997c800\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b526da3c03d761065997c800\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b526da3c03d761065997c800\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"I'm Okay\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-05-29\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4vpZiKNXO0eTWDWwJai3Iw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7ed5eSusVIBEIvmkASgzKj\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7ed5eSusVIBEIvmkASgzKj\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7ed5eSusVIBEIvmkASgzKj\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Honest Men\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7ed5eSusVIBEIvmkASgzKj\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 191798,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADN1821715\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5FcOQsmiflVSyO2DK5OJUw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5FcOQsmiflVSyO2DK5OJUw\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5FcOQsmiflVSyO2DK5OJUw\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"I'm Okay\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 53,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d37eaaaa5257e643925ee2ba448b79ebe80cf0bd?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5FcOQsmiflVSyO2DK5OJUw\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-05-17T19:47:03Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1gneO1Mf6DCsgxUtDzF4lS\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1gneO1Mf6DCsgxUtDzF4lS\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1gneO1Mf6DCsgxUtDzF4lS\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"daysormay\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1gneO1Mf6DCsgxUtDzF4lS\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/64l4DaO6yUrUYJZO1KJiSi\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/64l4DaO6yUrUYJZO1KJiSi\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"64l4DaO6yUrUYJZO1KJiSi\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273ad922db37a7a2e624fde85c8\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02ad922db37a7a2e624fde85c8\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851ad922db37a7a2e624fde85c8\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Role Model\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-11-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:64l4DaO6yUrUYJZO1KJiSi\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1gneO1Mf6DCsgxUtDzF4lS\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1gneO1Mf6DCsgxUtDzF4lS\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1gneO1Mf6DCsgxUtDzF4lS\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"daysormay\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1gneO1Mf6DCsgxUtDzF4lS\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 199825,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"CAYS41800001\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0TVwZvHd4EE4QDMgmevUcJ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0TVwZvHd4EE4QDMgmevUcJ\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0TVwZvHd4EE4QDMgmevUcJ\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Role Model\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 4,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0TVwZvHd4EE4QDMgmevUcJ\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-04-21T22:27:45Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5UWH3rIlO4qbXk6PMFZEbP\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5UWH3rIlO4qbXk6PMFZEbP\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5UWH3rIlO4qbXk6PMFZEbP\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Heydaze\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5UWH3rIlO4qbXk6PMFZEbP\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1TGwCuVPI0jQIOknItuTvc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1TGwCuVPI0jQIOknItuTvc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1TGwCuVPI0jQIOknItuTvc\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2738cc42bd74b4e5fb9d95fdfbc\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e028cc42bd74b4e5fb9d95fdfbc\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048518cc42bd74b4e5fb9d95fdfbc\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"New Religion\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-04-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1TGwCuVPI0jQIOknItuTvc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5UWH3rIlO4qbXk6PMFZEbP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5UWH3rIlO4qbXk6PMFZEbP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5UWH3rIlO4qbXk6PMFZEbP\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Heydaze\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5UWH3rIlO4qbXk6PMFZEbP\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 203586,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM71703397\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4DZghpw50ZnO3ckfDuNkft\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4DZghpw50ZnO3ckfDuNkft\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4DZghpw50ZnO3ckfDuNkft\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"New Religion\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 57,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/87398e95ba4f7c1c898c9f926852e308e7d80847?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4DZghpw50ZnO3ckfDuNkft\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-04-20T15:56:36Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Saint Motel\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/58m5trM2xJ9sXj49bjCAIg\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/58m5trM2xJ9sXj49bjCAIg\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"58m5trM2xJ9sXj49bjCAIg\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2738112cfa4b4778473fa0da779\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e028112cfa4b4778473fa0da779\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048518112cfa4b4778473fa0da779\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Original Motion Picture Soundtrack: Pt. 1\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-10-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:58m5trM2xJ9sXj49bjCAIg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Saint Motel\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 161120,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21905811\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4UgLRXh1z9NorzrdawpIgj\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4UgLRXh1z9NorzrdawpIgj\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4UgLRXh1z9NorzrdawpIgj\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Van Horn\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4UgLRXh1z9NorzrdawpIgj\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-04-20T01:16:42Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4luZExkmgn39Kj5XsYWria\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4luZExkmgn39Kj5XsYWria\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4luZExkmgn39Kj5XsYWria\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Jagwar Twin\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4luZExkmgn39Kj5XsYWria\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/13NsPsyxVLcJtbt6gMpDLh\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/13NsPsyxVLcJtbt6gMpDLh\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"13NsPsyxVLcJtbt6gMpDLh\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2737b7e8b50498d4fdeb55a8eba\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e027b7e8b50498d4fdeb55a8eba\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048517b7e8b50498d4fdeb55a8eba\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Happy Face\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-12-11\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:13NsPsyxVLcJtbt6gMpDLh\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4luZExkmgn39Kj5XsYWria\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4luZExkmgn39Kj5XsYWria\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4luZExkmgn39Kj5XsYWria\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Jagwar Twin\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4luZExkmgn39Kj5XsYWria\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 170733,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZNWS2055769\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1EXhThDOXJTtKRmYZ286PW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1EXhThDOXJTtKRmYZ286PW\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1EXhThDOXJTtKRmYZ286PW\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Happy Face\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1EXhThDOXJTtKRmYZ286PW\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-04-13T14:05:46Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3QN1rAppoKbXhExveckTuO\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3QN1rAppoKbXhExveckTuO\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3QN1rAppoKbXhExveckTuO\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Little Hurt\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3QN1rAppoKbXhExveckTuO\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4jWzsoD0s0VHSkdIifg9QE\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4jWzsoD0s0VHSkdIifg9QE\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4jWzsoD0s0VHSkdIifg9QE\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273754094df348a9745a04c95ce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02754094df348a9745a04c95ce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851754094df348a9745a04c95ce\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Every Second\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2021-01-29\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 7,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4jWzsoD0s0VHSkdIifg9QE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3QN1rAppoKbXhExveckTuO\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3QN1rAppoKbXhExveckTuO\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3QN1rAppoKbXhExveckTuO\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Little Hurt\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3QN1rAppoKbXhExveckTuO\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 173597,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQX92004405\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/72ZjIEQhf0JLuxE6m6bb1U\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/72ZjIEQhf0JLuxE6m6bb1U\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"72ZjIEQhf0JLuxE6m6bb1U\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"My Head Hurts\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 29,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/dc5ef2cf9243141e085162bb61c0775e9a3af87b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:72ZjIEQhf0JLuxE6m6bb1U\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-04-12T14:47:35Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6cIToqbQYnkosHSGOZZCZx\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6cIToqbQYnkosHSGOZZCZx\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6cIToqbQYnkosHSGOZZCZx\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Windy Crankage\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6cIToqbQYnkosHSGOZZCZx\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6fp7sdQozb8JcxiiJ6z8sH\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6fp7sdQozb8JcxiiJ6z8sH\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6fp7sdQozb8JcxiiJ6z8sH\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27348c6bd1ff45eaf2f7dbf5105\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0248c6bd1ff45eaf2f7dbf5105\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485148c6bd1ff45eaf2f7dbf5105\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Mojo\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-04-19\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6fp7sdQozb8JcxiiJ6z8sH\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6cIToqbQYnkosHSGOZZCZx\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6cIToqbQYnkosHSGOZZCZx\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6cIToqbQYnkosHSGOZZCZx\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Windy Crankage\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6cIToqbQYnkosHSGOZZCZx\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 176401,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZES61965490\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/32VeSDbfdQjz6hefyvf4TE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/32VeSDbfdQjz6hefyvf4TE\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"32VeSDbfdQjz6hefyvf4TE\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Mojo\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 36,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/21a490dd33c19de34313ac08a83dc1dff3d6a8b1?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:32VeSDbfdQjz6hefyvf4TE\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-04-08T21:04:58Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/79HpNR0tVvH8suvBlv4nhB\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/79HpNR0tVvH8suvBlv4nhB\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"79HpNR0tVvH8suvBlv4nhB\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Adjective\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:79HpNR0tVvH8suvBlv4nhB\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1vO6Zh0JQEaYOyg4Z6abwl\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1vO6Zh0JQEaYOyg4Z6abwl\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1vO6Zh0JQEaYOyg4Z6abwl\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sunrises\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1vO6Zh0JQEaYOyg4Z6abwl\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2TBpGlViCOpoMMjAhZLH90\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2TBpGlViCOpoMMjAhZLH90\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2TBpGlViCOpoMMjAhZLH90\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"thesleepynomad\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2TBpGlViCOpoMMjAhZLH90\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3AmmcljK5DhTIAfpBd5o8M\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3AmmcljK5DhTIAfpBd5o8M\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3AmmcljK5DhTIAfpBd5o8M\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273f817625ab52e0cfac430cbb8\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02f817625ab52e0cfac430cbb8\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851f817625ab52e0cfac430cbb8\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Skyfalling\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-06-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3AmmcljK5DhTIAfpBd5o8M\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/79HpNR0tVvH8suvBlv4nhB\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/79HpNR0tVvH8suvBlv4nhB\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"79HpNR0tVvH8suvBlv4nhB\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Adjective\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:79HpNR0tVvH8suvBlv4nhB\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1vO6Zh0JQEaYOyg4Z6abwl\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1vO6Zh0JQEaYOyg4Z6abwl\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1vO6Zh0JQEaYOyg4Z6abwl\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sunrises\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1vO6Zh0JQEaYOyg4Z6abwl\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2TBpGlViCOpoMMjAhZLH90\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2TBpGlViCOpoMMjAhZLH90\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2TBpGlViCOpoMMjAhZLH90\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"thesleepynomad\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2TBpGlViCOpoMMjAhZLH90\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 175263,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADQ1874217\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0AG5yTcrgrTMST5ya6QV7n\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0AG5yTcrgrTMST5ya6QV7n\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0AG5yTcrgrTMST5ya6QV7n\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Skyfalling\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/21561c45fe2aa76462e8bc0bb9b918895e2f409a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0AG5yTcrgrTMST5ya6QV7n\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-04-08T15:53:03Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/37gTAIe8kJ5xGtkJLsfFgP\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/37gTAIe8kJ5xGtkJLsfFgP\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"37gTAIe8kJ5xGtkJLsfFgP\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Crooked Teeth\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:37gTAIe8kJ5xGtkJLsfFgP\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1eiw7i9loekg5F8nlqgKTi\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1eiw7i9loekg5F8nlqgKTi\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1eiw7i9loekg5F8nlqgKTi\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273aedc0277e595415147e15c94\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02aedc0277e595415147e15c94\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851aedc0277e595415147e15c94\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Where Did All Our Time Go?\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-09-27\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 4,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1eiw7i9loekg5F8nlqgKTi\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/37gTAIe8kJ5xGtkJLsfFgP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/37gTAIe8kJ5xGtkJLsfFgP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"37gTAIe8kJ5xGtkJLsfFgP\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Crooked Teeth\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:37gTAIe8kJ5xGtkJLsfFgP\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 149124,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZGPQ1972245\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2yg45ut31cuzjRi596tTDx\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2yg45ut31cuzjRi596tTDx\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2yg45ut31cuzjRi596tTDx\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"You and Me (Forever)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2yg45ut31cuzjRi596tTDx\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-03-25T19:23:38Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3do7OIiTLJkRcWn4VD4116\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3do7OIiTLJkRcWn4VD4116\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3do7OIiTLJkRcWn4VD4116\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Karma Killers\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3do7OIiTLJkRcWn4VD4116\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3y9ZIWQnFxaeCKI6LijFw7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3y9ZIWQnFxaeCKI6LijFw7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3y9ZIWQnFxaeCKI6LijFw7\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273bc8c422d59311d786c23ba8a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02bc8c422d59311d786c23ba8a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851bc8c422d59311d786c23ba8a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Strange Therapy\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2015-06-08\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3y9ZIWQnFxaeCKI6LijFw7\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3do7OIiTLJkRcWn4VD4116\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3do7OIiTLJkRcWn4VD4116\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3do7OIiTLJkRcWn4VD4116\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Karma Killers\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3do7OIiTLJkRcWn4VD4116\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 206626,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM71506830\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2Z6NnvSvr5DcjiWbbLpLlV\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2Z6NnvSvr5DcjiWbbLpLlV\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2Z6NnvSvr5DcjiWbbLpLlV\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Domino\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 39,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8ec690b7bc0ff39c637c50d1bfff77c282b37cf9?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2Z6NnvSvr5DcjiWbbLpLlV\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-03-12T03:02:06Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5pRFwoIJjbBS2CIGfVktmK\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5pRFwoIJjbBS2CIGfVktmK\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5pRFwoIJjbBS2CIGfVktmK\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Hello Atlantic\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5pRFwoIJjbBS2CIGfVktmK\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/34KZFVay4RWO8ADZkC2jl1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/34KZFVay4RWO8ADZkC2jl1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"34KZFVay4RWO8ADZkC2jl1\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273f592fd59d63da49a6bd5fcd5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02f592fd59d63da49a6bd5fcd5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851f592fd59d63da49a6bd5fcd5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Night Life\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-09-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:34KZFVay4RWO8ADZkC2jl1\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5pRFwoIJjbBS2CIGfVktmK\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5pRFwoIJjbBS2CIGfVktmK\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5pRFwoIJjbBS2CIGfVktmK\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Hello Atlantic\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5pRFwoIJjbBS2CIGfVktmK\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 186641,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZHN81942768\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4NnIvmE64cmVSAwuOhPfYf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4NnIvmE64cmVSAwuOhPfYf\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4NnIvmE64cmVSAwuOhPfYf\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Night Life\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 45,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/dcbebdf35f7571acee26ca67ffa83b85f4dd90d7?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4NnIvmE64cmVSAwuOhPfYf\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-03-10T14:02:40Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4h1KKGcIKkVPfuH6K7nVYa\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4h1KKGcIKkVPfuH6K7nVYa\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4h1KKGcIKkVPfuH6K7nVYa\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Frank Hamilton\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4h1KKGcIKkVPfuH6K7nVYa\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1u6hQWWROBCFcYMWKoJY5i\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1u6hQWWROBCFcYMWKoJY5i\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1u6hQWWROBCFcYMWKoJY5i\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732d3c026deeeebc9b45fbc348\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022d3c026deeeebc9b45fbc348\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512d3c026deeeebc9b45fbc348\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Songs to Make Life Slightly Less Awkward\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-09-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 13,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1u6hQWWROBCFcYMWKoJY5i\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4h1KKGcIKkVPfuH6K7nVYa\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4h1KKGcIKkVPfuH6K7nVYa\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4h1KKGcIKkVPfuH6K7nVYa\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Frank Hamilton\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4h1KKGcIKkVPfuH6K7nVYa\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 162289,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1663841\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6pMX22sZK50GZuFYgNNKlA\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6pMX22sZK50GZuFYgNNKlA\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6pMX22sZK50GZuFYgNNKlA\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"What If\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 25,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 9,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6pMX22sZK50GZuFYgNNKlA\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-03-01T22:27:15Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4PjHNisXpQqSDXOJBFRK8p\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4PjHNisXpQqSDXOJBFRK8p\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4PjHNisXpQqSDXOJBFRK8p\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Federal Empire\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4PjHNisXpQqSDXOJBFRK8p\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0b23AHutIA1BOW0u1dZ6wM\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0b23AHutIA1BOW0u1dZ6wM\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0b23AHutIA1BOW0u1dZ6wM\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27379792c351ab88274375d0999\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0279792c351ab88274375d0999\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485179792c351ab88274375d0999\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Road Through Hell\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-03-25\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0b23AHutIA1BOW0u1dZ6wM\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4PjHNisXpQqSDXOJBFRK8p\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4PjHNisXpQqSDXOJBFRK8p\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4PjHNisXpQqSDXOJBFRK8p\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Federal Empire\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4PjHNisXpQqSDXOJBFRK8p\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 233760,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1670824\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/51zCoqJ2sQ2lZIehtrVJjK\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/51zCoqJ2sQ2lZIehtrVJjK\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"51zCoqJ2sQ2lZIehtrVJjK\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"I Never Liked Your Friends\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 26,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 10,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:51zCoqJ2sQ2lZIehtrVJjK\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-03-01T22:27:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rPGKWFVuwuRPPuh1QitHc\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rPGKWFVuwuRPPuh1QitHc\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6rPGKWFVuwuRPPuh1QitHc\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"LaPeer\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rPGKWFVuwuRPPuh1QitHc\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5m0Qi0Nb6i8sQSqUu6HL69\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5m0Qi0Nb6i8sQSqUu6HL69\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5m0Qi0Nb6i8sQSqUu6HL69\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d30d00b6ea79b39026e5832c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d30d00b6ea79b39026e5832c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d30d00b6ea79b39026e5832c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"'90s Kids\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-06-15\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 8,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5m0Qi0Nb6i8sQSqUu6HL69\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rPGKWFVuwuRPPuh1QitHc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rPGKWFVuwuRPPuh1QitHc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6rPGKWFVuwuRPPuh1QitHc\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"LaPeer\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rPGKWFVuwuRPPuh1QitHc\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 240234,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMAAK1843228\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2UaXPLcduEF1BOICI5vrnR\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2UaXPLcduEF1BOICI5vrnR\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2UaXPLcduEF1BOICI5vrnR\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"California\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 35,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/9e6f0df24bb58233fd69e040ec0ff096a1887b53?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2UaXPLcduEF1BOICI5vrnR\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-02-25T17:07:54Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4of9cTJoXBKZhb8aIwXgqC\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4of9cTJoXBKZhb8aIwXgqC\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4of9cTJoXBKZhb8aIwXgqC\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Neutral Snap\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4of9cTJoXBKZhb8aIwXgqC\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1CpNyR4LQJKRRjI25vnNRY\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1CpNyR4LQJKRRjI25vnNRY\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1CpNyR4LQJKRRjI25vnNRY\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27300fd6365434a6df9de0c8459\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0200fd6365434a6df9de0c8459\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485100fd6365434a6df9de0c8459\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sorry, I Passed Out\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-01-10\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1CpNyR4LQJKRRjI25vnNRY\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4of9cTJoXBKZhb8aIwXgqC\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4of9cTJoXBKZhb8aIwXgqC\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4of9cTJoXBKZhb8aIwXgqC\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Neutral Snap\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4of9cTJoXBKZhb8aIwXgqC\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 194743,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMEU31922400\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/25BTZjv8zQKKy6w8tYB5Xi\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/25BTZjv8zQKKy6w8tYB5Xi\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"25BTZjv8zQKKy6w8tYB5Xi\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Butterscotch\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 39,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d4383b8d8b17fa26afb491adeed6081ac1481d53?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 7,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:25BTZjv8zQKKy6w8tYB5Xi\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-02-24T03:27:04Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0hp58JplihFjlLstUbKS0x\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0hp58JplihFjlLstUbKS0x\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0hp58JplihFjlLstUbKS0x\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Home Team\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0hp58JplihFjlLstUbKS0x\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6Lr7fmCihSri2QStZmumN4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6Lr7fmCihSri2QStZmumN4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6Lr7fmCihSri2QStZmumN4\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273560bb8a31ac8a852c80c55f2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02560bb8a31ac8a852c80c55f2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851560bb8a31ac8a852c80c55f2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"She's Quiet (Acoustic)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-06-07\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6Lr7fmCihSri2QStZmumN4\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0hp58JplihFjlLstUbKS0x\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0hp58JplihFjlLstUbKS0x\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0hp58JplihFjlLstUbKS0x\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Home Team\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0hp58JplihFjlLstUbKS0x\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 200117,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QM6MZ1985783\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4NlqCEZY5njqLwUR18hcTV\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4NlqCEZY5njqLwUR18hcTV\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4NlqCEZY5njqLwUR18hcTV\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"She's Quiet (Acoustic)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 45,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1008281513d170885c62b70216e74a7c2e80114a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4NlqCEZY5njqLwUR18hcTV\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-02-20T13:05:17Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7vqzl54mcVY2EoKAjfiKJX\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7vqzl54mcVY2EoKAjfiKJX\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7vqzl54mcVY2EoKAjfiKJX\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"THE DLX\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7vqzl54mcVY2EoKAjfiKJX\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5on4fjrZGtPoUd0Tj8gCMt\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5on4fjrZGtPoUd0Tj8gCMt\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5on4fjrZGtPoUd0Tj8gCMt\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27394383c72ee3b49f4a7038db5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0294383c72ee3b49f4a7038db5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485194383c72ee3b49f4a7038db5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Idk\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-09\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5on4fjrZGtPoUd0Tj8gCMt\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7vqzl54mcVY2EoKAjfiKJX\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7vqzl54mcVY2EoKAjfiKJX\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7vqzl54mcVY2EoKAjfiKJX\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"THE DLX\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7vqzl54mcVY2EoKAjfiKJX\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 191829,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADN1831742\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6llVxshZN6xXIIEa1N8vYF\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6llVxshZN6xXIIEa1N8vYF\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6llVxshZN6xXIIEa1N8vYF\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Idk\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 41,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/6aa260f3d94a2d0d34a6bdf49a89df84bd10b1e3?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6llVxshZN6xXIIEa1N8vYF\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-02-19T04:37:54Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3GIXsr5vAVkwN5i0noYsBp\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3GIXsr5vAVkwN5i0noYsBp\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3GIXsr5vAVkwN5i0noYsBp\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Make Out Monday\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3GIXsr5vAVkwN5i0noYsBp\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7sdehJGZDARtT6CXd8Cirs\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7sdehJGZDARtT6CXd8Cirs\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7sdehJGZDARtT6CXd8Cirs\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273fe0ae04ad7c2b20dfc069c4a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02fe0ae04ad7c2b20dfc069c4a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851fe0ae04ad7c2b20dfc069c4a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Blue Romance\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-01-13\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7sdehJGZDARtT6CXd8Cirs\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3GIXsr5vAVkwN5i0noYsBp\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3GIXsr5vAVkwN5i0noYsBp\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3GIXsr5vAVkwN5i0noYsBp\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Make Out Monday\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3GIXsr5vAVkwN5i0noYsBp\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 207612,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEP2030562\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4Qjomzi0XFpy7JKzn9z4R9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4Qjomzi0XFpy7JKzn9z4R9\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4Qjomzi0XFpy7JKzn9z4R9\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Blue Romance\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 24,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/212830a8ceb1483e0e6d1e10746d443baee2abba?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4Qjomzi0XFpy7JKzn9z4R9\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-02-05T03:24:24Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5yNN92qKENCA4pWmoSZJpG\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5yNN92qKENCA4pWmoSZJpG\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5yNN92qKENCA4pWmoSZJpG\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Divided By Friday\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5yNN92qKENCA4pWmoSZJpG\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/14dZamzErNFomaBC1HIKUi\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/14dZamzErNFomaBC1HIKUi\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"14dZamzErNFomaBC1HIKUi\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273aaa3a346f7eb2aeaa963bc7d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02aaa3a346f7eb2aeaa963bc7d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851aaa3a346f7eb2aeaa963bc7d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Modern Memoirs\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2013-10-15\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:14dZamzErNFomaBC1HIKUi\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5yNN92qKENCA4pWmoSZJpG\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5yNN92qKENCA4pWmoSZJpG\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5yNN92qKENCA4pWmoSZJpG\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Divided By Friday\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5yNN92qKENCA4pWmoSZJpG\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 205666,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USHR21269009\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1FJm4f49Po8iCht1tdOTPB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1FJm4f49Po8iCht1tdOTPB\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1FJm4f49Po8iCht1tdOTPB\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Relapse\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 45,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ca026e1dfedb5f5c7650233492dea4afe0f480a5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1FJm4f49Po8iCht1tdOTPB\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-01-29T18:57:15Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5yNN92qKENCA4pWmoSZJpG\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5yNN92qKENCA4pWmoSZJpG\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5yNN92qKENCA4pWmoSZJpG\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Divided By Friday\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5yNN92qKENCA4pWmoSZJpG\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0cnrlUaBS3bik3OtVrlV64\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0cnrlUaBS3bik3OtVrlV64\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0cnrlUaBS3bik3OtVrlV64\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27374c309f75eec12b6f9351571\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0274c309f75eec12b6f9351571\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485174c309f75eec12b6f9351571\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Looking Back\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-05-29\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 3,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0cnrlUaBS3bik3OtVrlV64\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5yNN92qKENCA4pWmoSZJpG\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5yNN92qKENCA4pWmoSZJpG\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5yNN92qKENCA4pWmoSZJpG\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Divided By Friday\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5yNN92qKENCA4pWmoSZJpG\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 206545,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US43C1614268\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2twi9UZQOwSGiSmHyT9QuG\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2twi9UZQOwSGiSmHyT9QuG\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2twi9UZQOwSGiSmHyT9QuG\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Keep and Leave Behind\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 17,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2twi9UZQOwSGiSmHyT9QuG\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-01-16T19:20:02Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"American Authors\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1CUQDgSlBNj44AHhBjg4bn\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1CUQDgSlBNj44AHhBjg4bn\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1CUQDgSlBNj44AHhBjg4bn\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273e4505cf21c3db0ab04f0a367\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02e4505cf21c3db0ab04f0a367\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851e4505cf21c3db0ab04f0a367\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Counting Down\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-09-04\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1CUQDgSlBNj44AHhBjg4bn\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0MlOPi3zIDMVrfA9R04Fe3\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"American Authors\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0MlOPi3zIDMVrfA9R04Fe3\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 201922,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM72016949\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/36E5LDs4HPJwAJNGVYbLs8\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/36E5LDs4HPJwAJNGVYbLs8\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"36E5LDs4HPJwAJNGVYbLs8\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Counting Down\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 35,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/cd0288057204cb13e4e9182ecaf4dd396a18acbf?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:36E5LDs4HPJwAJNGVYbLs8\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-01-16T19:16:45Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7A8id9cqUSbYSyB1RjBK55\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7A8id9cqUSbYSyB1RjBK55\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7A8id9cqUSbYSyB1RjBK55\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Last Youth\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7A8id9cqUSbYSyB1RjBK55\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/09IH6bqUR5SGqfMFNJ7qie\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/09IH6bqUR5SGqfMFNJ7qie\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"09IH6bqUR5SGqfMFNJ7qie\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273100f36614521f662ce80bcb5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02100f36614521f662ce80bcb5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851100f36614521f662ce80bcb5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Too Soon\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-08-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:09IH6bqUR5SGqfMFNJ7qie\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7A8id9cqUSbYSyB1RjBK55\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7A8id9cqUSbYSyB1RjBK55\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7A8id9cqUSbYSyB1RjBK55\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Last Youth\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7A8id9cqUSbYSyB1RjBK55\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 187078,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZK6P2003128\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/44SO6umsPAbIRSt7feSQul\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/44SO6umsPAbIRSt7feSQul\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"44SO6umsPAbIRSt7feSQul\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Too Soon\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:44SO6umsPAbIRSt7feSQul\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-01-05T03:40:16Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2M5FAo9wD9hyBf2aZEIIg6\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2M5FAo9wD9hyBf2aZEIIg6\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2M5FAo9wD9hyBf2aZEIIg6\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"{Parentheses}\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2M5FAo9wD9hyBf2aZEIIg6\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6AlnWCxhtYkMF2gq30omFn\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6AlnWCxhtYkMF2gq30omFn\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6AlnWCxhtYkMF2gq30omFn\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273afaf6006172a71414bfa4ee7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02afaf6006172a71414bfa4ee7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851afaf6006172a71414bfa4ee7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"{ }\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-03-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6AlnWCxhtYkMF2gq30omFn\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2M5FAo9wD9hyBf2aZEIIg6\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2M5FAo9wD9hyBf2aZEIIg6\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2M5FAo9wD9hyBf2aZEIIg6\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"{Parentheses}\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2M5FAo9wD9hyBf2aZEIIg6\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 161097,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCACR1687932\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4pF42a0ckjj7S0g2U4twgI\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4pF42a0ckjj7S0g2U4twgI\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4pF42a0ckjj7S0g2U4twgI\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"It's Always Sunny With You\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 47,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/bff012f0df227d289af4edb58317d28aa8928ea0?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4pF42a0ckjj7S0g2U4twgI\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-12-31T20:58:13Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7FgfVur1vT0yQyKIi0feNB\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7FgfVur1vT0yQyKIi0feNB\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7FgfVur1vT0yQyKIi0feNB\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"FITZ\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7FgfVur1vT0yQyKIi0feNB\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4AcHt3JxKy59IX7JNNlZn4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4AcHt3JxKy59IX7JNNlZn4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4AcHt3JxKy59IX7JNNlZn4\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Fitz and The Tantrums\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4AcHt3JxKy59IX7JNNlZn4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/216MPYHQfkgJYRP7CQe1lr\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/216MPYHQfkgJYRP7CQe1lr\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"216MPYHQfkgJYRP7CQe1lr\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b288fb614475d5629b89174d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b288fb614475d5629b89174d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b288fb614475d5629b89174d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Head Up High\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-10-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:216MPYHQfkgJYRP7CQe1lr\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7FgfVur1vT0yQyKIi0feNB\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7FgfVur1vT0yQyKIi0feNB\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7FgfVur1vT0yQyKIi0feNB\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"FITZ\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7FgfVur1vT0yQyKIi0feNB\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4AcHt3JxKy59IX7JNNlZn4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4AcHt3JxKy59IX7JNNlZn4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4AcHt3JxKy59IX7JNNlZn4\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Fitz and The Tantrums\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4AcHt3JxKy59IX7JNNlZn4\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 132705,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT22006439\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6WcinC5nKan2DMFUfjVerX\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6WcinC5nKan2DMFUfjVerX\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6WcinC5nKan2DMFUfjVerX\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Head Up High\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 41,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/7065f392c44c09b4341dbfb6305008588bdfa569?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6WcinC5nKan2DMFUfjVerX\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-12-31T17:42:35Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6u0sR7YTLPNf5CdyBg3ZE1\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6u0sR7YTLPNf5CdyBg3ZE1\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6u0sR7YTLPNf5CdyBg3ZE1\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Fuller\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6u0sR7YTLPNf5CdyBg3ZE1\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2Y7dG4MozE80jnAAFaLay1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2Y7dG4MozE80jnAAFaLay1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2Y7dG4MozE80jnAAFaLay1\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2738ac403df230be97f0d50eb31\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e028ac403df230be97f0d50eb31\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048518ac403df230be97f0d50eb31\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Favorite Poison\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-03-20\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2Y7dG4MozE80jnAAFaLay1\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6u0sR7YTLPNf5CdyBg3ZE1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6u0sR7YTLPNf5CdyBg3ZE1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6u0sR7YTLPNf5CdyBg3ZE1\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Fuller\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6u0sR7YTLPNf5CdyBg3ZE1\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 192156,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFZ32040953\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6JsAootlXP63bzFJK9gNsv\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6JsAootlXP63bzFJK9gNsv\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6JsAootlXP63bzFJK9gNsv\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Favorite Poison\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 52,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/81cfffba94820b13b3e6feba4aaadeb4b2d36a87?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6JsAootlXP63bzFJK9gNsv\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-12-21T09:54:45Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2JMtxA2S9SNUlqBlkDtXm6\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2JMtxA2S9SNUlqBlkDtXm6\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2JMtxA2S9SNUlqBlkDtXm6\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The National Parks\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2JMtxA2S9SNUlqBlkDtXm6\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2Re9wrza8ZH46MUah5tILo\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2Re9wrza8ZH46MUah5tILo\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2Re9wrza8ZH46MUah5tILo\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d434fde30bbff803137e56e5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d434fde30bbff803137e56e5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d434fde30bbff803137e56e5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wildflower\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-06-19\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 15,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2Re9wrza8ZH46MUah5tILo\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2JMtxA2S9SNUlqBlkDtXm6\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2JMtxA2S9SNUlqBlkDtXm6\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2JMtxA2S9SNUlqBlkDtXm6\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The National Parks\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2JMtxA2S9SNUlqBlkDtXm6\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 212455,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US28B2002202\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5JXFmCOdJsBoii6QHKxCrC\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5JXFmCOdJsBoii6QHKxCrC\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5JXFmCOdJsBoii6QHKxCrC\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Wildflower\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 39,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8e72e99a5aa67cbeccd06f5b46a18fddb014008d?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5JXFmCOdJsBoii6QHKxCrC\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-12-09T01:46:42Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4gkQ6lCzYYgtA03pAAx7D7\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4gkQ6lCzYYgtA03pAAx7D7\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4gkQ6lCzYYgtA03pAAx7D7\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"JADN\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4gkQ6lCzYYgtA03pAAx7D7\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0PC3CIk7dS7zDfIL4HXsK8\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0PC3CIk7dS7zDfIL4HXsK8\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0PC3CIk7dS7zDfIL4HXsK8\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273fa043af2f6f72e8c6cd92ddb\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02fa043af2f6f72e8c6cd92ddb\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851fa043af2f6f72e8c6cd92ddb\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"City Skies\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-11-08\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 8,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0PC3CIk7dS7zDfIL4HXsK8\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4gkQ6lCzYYgtA03pAAx7D7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4gkQ6lCzYYgtA03pAAx7D7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4gkQ6lCzYYgtA03pAAx7D7\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"JADN\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4gkQ6lCzYYgtA03pAAx7D7\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 237750,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ4JJ1976538\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1U2j36G8WZKTGBMXyZRn9r\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1U2j36G8WZKTGBMXyZRn9r\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1U2j36G8WZKTGBMXyZRn9r\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Little Love\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 42,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/34622874e0d72d03009725392774f1742d437eb5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1U2j36G8WZKTGBMXyZRn9r\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-11-17T17:29:07Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/61rwPIA5CVaw8Q2T6uOz6k\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/61rwPIA5CVaw8Q2T6uOz6k\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"61rwPIA5CVaw8Q2T6uOz6k\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b2c40c05cf2aff930b21eae4\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b2c40c05cf2aff930b21eae4\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b2c40c05cf2aff930b21eae4\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bummerland\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-08-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:61rwPIA5CVaw8Q2T6uOz6k\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 189115,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMRSZ2002029\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/33n9hKYymXgXV0p6j2zYp9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/33n9hKYymXgXV0p6j2zYp9\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"33n9hKYymXgXV0p6j2zYp9\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Bummerland\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 44,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2450b088edcda3e92443f8f964d1976b138b4e45?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:33n9hKYymXgXV0p6j2zYp9\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-11-15T00:51:28Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7B36GsLpC6IogfPjjkRlj3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7B36GsLpC6IogfPjjkRlj3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7B36GsLpC6IogfPjjkRlj3\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2737438c9fcd956a8ab16f9610c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e027438c9fcd956a8ab16f9610c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048517438c9fcd956a8ab16f9610c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bang!\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-02-12\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7B36GsLpC6IogfPjjkRlj3\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 170858,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMRSZ2000128\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/53BHUFdQphHiZUUG3nx9zn\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/53BHUFdQphHiZUUG3nx9zn\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"53BHUFdQphHiZUUG3nx9zn\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Bang!\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 3,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:53BHUFdQphHiZUUG3nx9zn\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-11-14T03:10:02Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7xEFii6utZmQ61kX59HmLH\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7xEFii6utZmQ61kX59HmLH\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7xEFii6utZmQ61kX59HmLH\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"FRENSHIP\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7xEFii6utZmQ61kX59HmLH\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5qeKpDQFyotJjLh61pUZQo\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5qeKpDQFyotJjLh61pUZQo\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5qeKpDQFyotJjLh61pUZQo\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273670048174db73ef55039c7bf\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02670048174db73ef55039c7bf\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851670048174db73ef55039c7bf\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Truce - EP\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-09-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5qeKpDQFyotJjLh61pUZQo\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7xEFii6utZmQ61kX59HmLH\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7xEFii6utZmQ61kX59HmLH\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7xEFii6utZmQ61kX59HmLH\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"FRENSHIP\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7xEFii6utZmQ61kX59HmLH\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1oKdM70mJD8VvDOTKeS8t1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1oKdM70mJD8VvDOTKeS8t1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1oKdM70mJD8VvDOTKeS8t1\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Emily Warren\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1oKdM70mJD8VvDOTKeS8t1\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 237706,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USSM11605173\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2XMTqoHHSH0lvuXrvIEdco\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2XMTqoHHSH0lvuXrvIEdco\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2XMTqoHHSH0lvuXrvIEdco\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Capsize\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 66,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/9643cb0a1eb93b2c5ddf01e48fbc085a376baee5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2XMTqoHHSH0lvuXrvIEdco\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-11-11T22:43:57Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3QaxveoTiMetZCMp1sftiu\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3QaxveoTiMetZCMp1sftiu\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3QaxveoTiMetZCMp1sftiu\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Waterparks\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3QaxveoTiMetZCMp1sftiu\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6W5NAcsq5dV2vMcxPFWXTb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6W5NAcsq5dV2vMcxPFWXTb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6W5NAcsq5dV2vMcxPFWXTb\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733cd2ff03a508f5314a626701\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023cd2ff03a508f5314a626701\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513cd2ff03a508f5314a626701\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"FANDOM\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-10-11\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 15,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6W5NAcsq5dV2vMcxPFWXTb\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3QaxveoTiMetZCMp1sftiu\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3QaxveoTiMetZCMp1sftiu\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3QaxveoTiMetZCMp1sftiu\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Waterparks\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3QaxveoTiMetZCMp1sftiu\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 133351,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USHR21912811\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2Rmw7J0krEU75ffhkaK93D\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2Rmw7J0krEU75ffhkaK93D\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2Rmw7J0krEU75ffhkaK93D\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"I Miss Having Sex But At Least I Don't Wanna Die Anymore\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 64,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/9746a43ca4e3c0f8168a2cd00f9566dfdcea1eb4?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 10,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2Rmw7J0krEU75ffhkaK93D\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-11-11T14:24:51Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5Jswm7CW6Cm4MHFyIpW6Ih\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5Jswm7CW6Cm4MHFyIpW6Ih\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5Jswm7CW6Cm4MHFyIpW6Ih\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Jake Is Lloyd\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5Jswm7CW6Cm4MHFyIpW6Ih\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/00nmZ9EpfTJpQZs4Ci7ea3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/00nmZ9EpfTJpQZs4Ci7ea3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"00nmZ9EpfTJpQZs4Ci7ea3\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730ba94ac86b91caf4806fa970\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020ba94ac86b91caf4806fa970\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510ba94ac86b91caf4806fa970\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Madeline // Monsters\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-08-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 2,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:00nmZ9EpfTJpQZs4Ci7ea3\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5Jswm7CW6Cm4MHFyIpW6Ih\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5Jswm7CW6Cm4MHFyIpW6Ih\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5Jswm7CW6Cm4MHFyIpW6Ih\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Jake Is Lloyd\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5Jswm7CW6Cm4MHFyIpW6Ih\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 239000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFZ61903553\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/09Ne54nJcWohCkLcC1xA5u\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/09Ne54nJcWohCkLcC1xA5u\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"09Ne54nJcWohCkLcC1xA5u\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Madeline\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 40,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/56a311dc3636cece5c13c2a827239db6338a5dfe?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:09Ne54nJcWohCkLcC1xA5u\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-11-06T19:21:26Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0INDB6Snts5NDbzh8jC3lk\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0INDB6Snts5NDbzh8jC3lk\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0INDB6Snts5NDbzh8jC3lk\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Run River North\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0INDB6Snts5NDbzh8jC3lk\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/03XgqzstOeMjmuSAS9JxVT\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/03XgqzstOeMjmuSAS9JxVT\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"03XgqzstOeMjmuSAS9JxVT\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273e6a9d0af0bc0674f0d98a0a9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02e6a9d0af0bc0674f0d98a0a9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851e6a9d0af0bc0674f0d98a0a9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Rearview\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-03-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:03XgqzstOeMjmuSAS9JxVT\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0INDB6Snts5NDbzh8jC3lk\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0INDB6Snts5NDbzh8jC3lk\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0INDB6Snts5NDbzh8jC3lk\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Run River North\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0INDB6Snts5NDbzh8jC3lk\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 222913,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"CAN111900023\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6c0wahl7b3rEq2Srq7vVnf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6c0wahl7b3rEq2Srq7vVnf\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6c0wahl7b3rEq2Srq7vVnf\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Rearview\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6c0wahl7b3rEq2Srq7vVnf\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=150&limit=50\\\\\\\",\\\\n  \\\\\\\"offset\\\\\\\" : 100,\\\\n  \\\\\\\"previous\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=50&limit=50\\\\\\\",\\\\n  \\\\\\\"total\\\\\\\" : 286\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/tracks?offset=150&limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-ImIwNmJmODdhNTRmYTQ2ODI3ZGMzOTVjN2M3NDZiNzg0Ig==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"213236\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:23 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=150&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-11-05T23:50:48Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1g1yxsNVPhMUl9GrMjEb2o\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1g1yxsNVPhMUl9GrMjEb2o\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1g1yxsNVPhMUl9GrMjEb2o\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Plain White T's\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1g1yxsNVPhMUl9GrMjEb2o\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5TAmG2iyx5BRYR2z8f9xUd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5TAmG2iyx5BRYR2z8f9xUd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5TAmG2iyx5BRYR2z8f9xUd\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2735401a744c4292cf397ad32b5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e025401a744c4292cf397ad32b5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048515401a744c4292cf397ad32b5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Big Bad World\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2008-01-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5TAmG2iyx5BRYR2z8f9xUd\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1g1yxsNVPhMUl9GrMjEb2o\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1g1yxsNVPhMUl9GrMjEb2o\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1g1yxsNVPhMUl9GrMjEb2o\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Plain White T's\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1g1yxsNVPhMUl9GrMjEb2o\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 198360,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USHR10824091\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5VWmMZCfJ4yVkJw9ZLFXej\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5VWmMZCfJ4yVkJw9ZLFXej\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5VWmMZCfJ4yVkJw9ZLFXej\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"1, 2, 3, 4\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 58,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d6ae489787c904d190f5d3db29b6fc7d6bb240ef?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5VWmMZCfJ4yVkJw9ZLFXej\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-10-30T02:53:52Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1GPMjJFlpnO6hOHBhsX0qW\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1GPMjJFlpnO6hOHBhsX0qW\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1GPMjJFlpnO6hOHBhsX0qW\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bajillionaire\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1GPMjJFlpnO6hOHBhsX0qW\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0Q6A1yDohh6ehU1WzEo3SA\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0Q6A1yDohh6ehU1WzEo3SA\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0Q6A1yDohh6ehU1WzEo3SA\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273958fdaa1981f4497f5ce4f39\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02958fdaa1981f4497f5ce4f39\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851958fdaa1981f4497f5ce4f39\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sleepwalking\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-04-12\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0Q6A1yDohh6ehU1WzEo3SA\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1GPMjJFlpnO6hOHBhsX0qW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1GPMjJFlpnO6hOHBhsX0qW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1GPMjJFlpnO6hOHBhsX0qW\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bajillionaire\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1GPMjJFlpnO6hOHBhsX0qW\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1WNwNKCMaAZKRhB1PAquF2\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1WNwNKCMaAZKRhB1PAquF2\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1WNwNKCMaAZKRhB1PAquF2\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Brewer\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1WNwNKCMaAZKRhB1PAquF2\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 206769,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"AUNV01900074\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7qQ3Uh2UZ8EHMo5tEl2YLg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7qQ3Uh2UZ8EHMo5tEl2YLg\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7qQ3Uh2UZ8EHMo5tEl2YLg\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Sleepwalking\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 39,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ae0933aea2f510ec19a550c16eb5f90b0cf47ca1?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7qQ3Uh2UZ8EHMo5tEl2YLg\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-10-24T18:58:23Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0oqycKHsajVQAXB1PyGv3h\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0oqycKHsajVQAXB1PyGv3h\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0oqycKHsajVQAXB1PyGv3h\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Jonah Taylor\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0oqycKHsajVQAXB1PyGv3h\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/51pWCLA6cMaYmlJS2civo2\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/51pWCLA6cMaYmlJS2civo2\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"51pWCLA6cMaYmlJS2civo2\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2731d2b8bc35b93b64515504c5e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e021d2b8bc35b93b64515504c5e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048511d2b8bc35b93b64515504c5e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Seattle\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-02-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:51pWCLA6cMaYmlJS2civo2\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0oqycKHsajVQAXB1PyGv3h\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0oqycKHsajVQAXB1PyGv3h\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0oqycKHsajVQAXB1PyGv3h\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Jonah Taylor\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0oqycKHsajVQAXB1PyGv3h\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 233406,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEP2094633\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0VmKDSE7p7V06TNwQ9902d\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0VmKDSE7p7V06TNwQ9902d\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0VmKDSE7p7V06TNwQ9902d\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Seattle\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 23,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/890c18eb6d3e75b4594b8f99b03513a53d9be8d6?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0VmKDSE7p7V06TNwQ9902d\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-10-24T17:38:04Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7DxXCQhYeP9YYtxBCmIQcY\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7DxXCQhYeP9YYtxBCmIQcY\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7DxXCQhYeP9YYtxBCmIQcY\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Alex Di Leo\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7DxXCQhYeP9YYtxBCmIQcY\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2MDQe4r1qh0cFRNlDhyDoD\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2MDQe4r1qh0cFRNlDhyDoD\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2MDQe4r1qh0cFRNlDhyDoD\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273278004ad2770388cbe49424a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02278004ad2770388cbe49424a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851278004ad2770388cbe49424a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Strange Open Land\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-11-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2MDQe4r1qh0cFRNlDhyDoD\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7DxXCQhYeP9YYtxBCmIQcY\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7DxXCQhYeP9YYtxBCmIQcY\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7DxXCQhYeP9YYtxBCmIQcY\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Alex Di Leo\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7DxXCQhYeP9YYtxBCmIQcY\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 170306,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADJ1768508\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7bXcM2tPVBmOeSRzPjXvHk\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7bXcM2tPVBmOeSRzPjXvHk\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7bXcM2tPVBmOeSRzPjXvHk\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Underneath the Covers\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 24,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7bXcM2tPVBmOeSRzPjXvHk\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-10-23T20:21:17Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2FXC3k01G6Gw61bmprjgqS\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2FXC3k01G6Gw61bmprjgqS\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2FXC3k01G6Gw61bmprjgqS\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Hozier\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2FXC3k01G6Gw61bmprjgqS\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AU\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"US\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2c7gFThUYyo2t6ogAgIYNw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2c7gFThUYyo2t6ogAgIYNw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2c7gFThUYyo2t6ogAgIYNw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2735795e01c151ba5a8ce4bd295\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e025795e01c151ba5a8ce4bd295\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048515795e01c151ba5a8ce4bd295\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wasteland, Baby!\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-03-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 14,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2c7gFThUYyo2t6ogAgIYNw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2FXC3k01G6Gw61bmprjgqS\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2FXC3k01G6Gw61bmprjgqS\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2FXC3k01G6Gw61bmprjgqS\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Hozier\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2FXC3k01G6Gw61bmprjgqS\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AU\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"US\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 217480,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USSM11806793\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5Apvsk0suoivI1H8CmBglv\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5Apvsk0suoivI1H8CmBglv\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5Apvsk0suoivI1H8CmBglv\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Almost (Sweet Music)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 68,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/5e0c6c3af82915626e38e6851ae01c0744ecfd62?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5Apvsk0suoivI1H8CmBglv\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-10-10T20:24:29Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1btWGBz4Uu1HozTwb2Lm8A\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1btWGBz4Uu1HozTwb2Lm8A\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1btWGBz4Uu1HozTwb2Lm8A\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Hippo Campus\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1btWGBz4Uu1HozTwb2Lm8A\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"CA\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"US\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6tGEWfRhonWuuQikgOnYhN\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6tGEWfRhonWuuQikgOnYhN\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6tGEWfRhonWuuQikgOnYhN\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27382c6a08699bfd0e4bbe95001\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0282c6a08699bfd0e4bbe95001\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485182c6a08699bfd0e4bbe95001\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bambi\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-09-28\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6tGEWfRhonWuuQikgOnYhN\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1btWGBz4Uu1HozTwb2Lm8A\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1btWGBz4Uu1HozTwb2Lm8A\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1btWGBz4Uu1HozTwb2Lm8A\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Hippo Campus\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1btWGBz4Uu1HozTwb2Lm8A\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"CA\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"US\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 208280,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QM5BK1800233\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4vBIr27NcRFBNpyIxLHZuB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4vBIr27NcRFBNpyIxLHZuB\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4vBIr27NcRFBNpyIxLHZuB\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Golden\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 49,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/d93fa5b85635d1b1bccc85cd0f95c1e627bba953?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 9,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4vBIr27NcRFBNpyIxLHZuB\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-10-01T19:08:50Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7blXVKBSxdFZsIqlhdViKc\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7blXVKBSxdFZsIqlhdViKc\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7blXVKBSxdFZsIqlhdViKc\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Valley\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7blXVKBSxdFZsIqlhdViKc\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2H1daV65dzHfSoYda0wqjB\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2H1daV65dzHfSoYda0wqjB\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2H1daV65dzHfSoYda0wqjB\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730cdb4b03fd27a1301592a5e3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020cdb4b03fd27a1301592a5e3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510cdb4b03fd27a1301592a5e3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"MAYBE\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-09-17\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 18,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2H1daV65dzHfSoYda0wqjB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7blXVKBSxdFZsIqlhdViKc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7blXVKBSxdFZsIqlhdViKc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7blXVKBSxdFZsIqlhdViKc\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Valley\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7blXVKBSxdFZsIqlhdViKc\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 233333,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"CAUM71800223\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1553kU3XIclpbNAVzopQ2J\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1553kU3XIclpbNAVzopQ2J\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1553kU3XIclpbNAVzopQ2J\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"A Phone Call In Amsterdam\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 41,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/38ff70111767d53e5dfc7dd4eb5052b77bbe874b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 7,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1553kU3XIclpbNAVzopQ2J\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-10-01T02:41:49Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/29Wvrc4vfXuf9eMexefk7N\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/29Wvrc4vfXuf9eMexefk7N\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"29Wvrc4vfXuf9eMexefk7N\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Prince of Eden\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:29Wvrc4vfXuf9eMexefk7N\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3KYt6lRldRTGfpMFO1ik8t\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3KYt6lRldRTGfpMFO1ik8t\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3KYt6lRldRTGfpMFO1ik8t\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2735f4e889a35789faf58f99f37\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e025f4e889a35789faf58f99f37\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048515f4e889a35789faf58f99f37\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Tree That Bears Fruit in the Freedom That Bears You\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-06-24\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3KYt6lRldRTGfpMFO1ik8t\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/29Wvrc4vfXuf9eMexefk7N\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/29Wvrc4vfXuf9eMexefk7N\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"29Wvrc4vfXuf9eMexefk7N\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Prince of Eden\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:29Wvrc4vfXuf9eMexefk7N\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 196000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMEZE1835114\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2suNItytldArwaJP0lvLGz\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2suNItytldArwaJP0lvLGz\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2suNItytldArwaJP0lvLGz\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Mammal Talk\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2suNItytldArwaJP0lvLGz\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-09-23T21:04:38Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"flor\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0gSkJ8vX0yW1mkNKORxhMP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0gSkJ8vX0yW1mkNKORxhMP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0gSkJ8vX0yW1mkNKORxhMP\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733aebc750a193f108ab9b3030\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023aebc750a193f108ab9b3030\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513aebc750a193f108ab9b3030\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"ley lines\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-09-06\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0gSkJ8vX0yW1mkNKORxhMP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"flor\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 229226,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21902424\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3h5gxoE6mHTPDWnfJXvqLx\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3h5gxoE6mHTPDWnfJXvqLx\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3h5gxoE6mHTPDWnfJXvqLx\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"ley lines\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/29d9c306147875645c54c4855bcf0b61be9b719b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3h5gxoE6mHTPDWnfJXvqLx\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-08-15T19:44:07Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sleep State\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/00ohFnom4dFjyfNhfPoeTE\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/00ohFnom4dFjyfNhfPoeTE\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"00ohFnom4dFjyfNhfPoeTE\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2731f89fbf9528f8f326e1e92d6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e021f89fbf9528f8f326e1e92d6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048511f89fbf9528f8f326e1e92d6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Awkward\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-02-06\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:00ohFnom4dFjyfNhfPoeTE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sleep State\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 252465,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADL1808048\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0NHctaL3zukcg49qjxWPYx\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0NHctaL3zukcg49qjxWPYx\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0NHctaL3zukcg49qjxWPYx\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Awkward\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 38,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/7116bae5d13a5ea69cd22880896037a1d6253947?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0NHctaL3zukcg49qjxWPYx\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-08-03T19:33:50Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1RoacmLhUw1zQLmAcOEm2v\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1RoacmLhUw1zQLmAcOEm2v\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1RoacmLhUw1zQLmAcOEm2v\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Foxtrot & the Get Down\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1RoacmLhUw1zQLmAcOEm2v\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0nLffdBRC229Y3xq7npeFm\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0nLffdBRC229Y3xq7npeFm\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0nLffdBRC229Y3xq7npeFm\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b5a6502f15a1bfb701a9f525\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b5a6502f15a1bfb701a9f525\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b5a6502f15a1bfb701a9f525\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Legends Don't Die\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-06-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0nLffdBRC229Y3xq7npeFm\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1RoacmLhUw1zQLmAcOEm2v\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1RoacmLhUw1zQLmAcOEm2v\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1RoacmLhUw1zQLmAcOEm2v\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Foxtrot & the Get Down\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1RoacmLhUw1zQLmAcOEm2v\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 180350,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QM6N21901210\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5STtyk6WYxKxUN98yl0KxK\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5STtyk6WYxKxUN98yl0KxK\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5STtyk6WYxKxUN98yl0KxK\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Legends Don't Die\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 35,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1397ea6ee525ecfe1ba3991e424e73c5fbdde64d?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5STtyk6WYxKxUN98yl0KxK\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-07-19T22:06:29Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5UjifI1TYefXWn9GdqDOHl\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5UjifI1TYefXWn9GdqDOHl\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5UjifI1TYefXWn9GdqDOHl\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Social House\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5UjifI1TYefXWn9GdqDOHl\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3p81zUBFZ3zdzxceXKeVSK\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3p81zUBFZ3zdzxceXKeVSK\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3p81zUBFZ3zdzxceXKeVSK\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273013314e9861a2c4a796b2176\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02013314e9861a2c4a796b2176\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851013314e9861a2c4a796b2176\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Magic In The Hamptons (feat. Lil Yachty)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-06-08\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3p81zUBFZ3zdzxceXKeVSK\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5UjifI1TYefXWn9GdqDOHl\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5UjifI1TYefXWn9GdqDOHl\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5UjifI1TYefXWn9GdqDOHl\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Social House\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5UjifI1TYefXWn9GdqDOHl\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6icQOAFXDZKsumw3YXyusw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6icQOAFXDZKsumw3YXyusw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6icQOAFXDZKsumw3YXyusw\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lil Yachty\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6icQOAFXDZKsumw3YXyusw\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 164640,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM71806833\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2Yer0p7uB2lVBUAtANuuQp\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2Yer0p7uB2lVBUAtANuuQp\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2Yer0p7uB2lVBUAtANuuQp\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Magic In The Hamptons (feat. Lil Yachty)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 73,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/5ef6b1fb0d77d10a18df4b8181e08ff3516f71a8?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2Yer0p7uB2lVBUAtANuuQp\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-07-18T19:27:14Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7wg1qvie3KqDNQbAkTdbX0\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7wg1qvie3KqDNQbAkTdbX0\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7wg1qvie3KqDNQbAkTdbX0\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Louis The Child\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7wg1qvie3KqDNQbAkTdbX0\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4aBLjtEUUg1424XB5WQgKP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4aBLjtEUUg1424XB5WQgKP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4aBLjtEUUg1424XB5WQgKP\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d0c97444ecc52c4ca601144a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d0c97444ecc52c4ca601144a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d0c97444ecc52c4ca601144a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Here For Now\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-06-26\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 14,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4aBLjtEUUg1424XB5WQgKP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7wg1qvie3KqDNQbAkTdbX0\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7wg1qvie3KqDNQbAkTdbX0\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7wg1qvie3KqDNQbAkTdbX0\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Louis The Child\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7wg1qvie3KqDNQbAkTdbX0\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3ApUX1o6oSz321MMECyIYd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3ApUX1o6oSz321MMECyIYd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3ApUX1o6oSz321MMECyIYd\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Quinn XCII\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3ApUX1o6oSz321MMECyIYd\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5JMLG56F1X5mFmWNmS0iAp\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5JMLG56F1X5mFmWNmS0iAp\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5JMLG56F1X5mFmWNmS0iAp\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Chelsea Cutler\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5JMLG56F1X5mFmWNmS0iAp\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 197453,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM72006496\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/52681Ivj8kgCi90Lu8B9fl\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/52681Ivj8kgCi90Lu8B9fl\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"52681Ivj8kgCi90Lu8B9fl\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Little Things (with Quinn XCII & Chelsea Cutler)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 57,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/97a3d338597e4c69d145527db2687eeb59593491?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:52681Ivj8kgCi90Lu8B9fl\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-07-16T21:45:46Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bryce Vine\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/08IW6sUfN9fRYG8Xlgm4oC\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/08IW6sUfN9fRYG8Xlgm4oC\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"08IW6sUfN9fRYG8Xlgm4oC\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d67c496c586f830b6a73ea8c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d67c496c586f830b6a73ea8c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d67c496c586f830b6a73ea8c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lazy Fair\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2014-04-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:08IW6sUfN9fRYG8Xlgm4oC\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bryce Vine\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 252546,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQY51460659\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5DJNyvuMmZfsfvdTpMMmUq\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5DJNyvuMmZfsfvdTpMMmUq\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5DJNyvuMmZfsfvdTpMMmUq\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Sour Patch Kids\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 65,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/5b51a075b35c34683691876331dae815aafc075e?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5DJNyvuMmZfsfvdTpMMmUq\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-07-16T20:41:13Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bryce Vine\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/08IW6sUfN9fRYG8Xlgm4oC\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/08IW6sUfN9fRYG8Xlgm4oC\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"08IW6sUfN9fRYG8Xlgm4oC\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d67c496c586f830b6a73ea8c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d67c496c586f830b6a73ea8c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d67c496c586f830b6a73ea8c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lazy Fair\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2014-04-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:08IW6sUfN9fRYG8Xlgm4oC\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bryce Vine\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 230560,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQY51460662\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1ouanDM2jYv4G09wUlftdO\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1ouanDM2jYv4G09wUlftdO\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1ouanDM2jYv4G09wUlftdO\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Take Me Home\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 48,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/9cac2f0b5e28b0b57fd2455a7f263a277392271d?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1ouanDM2jYv4G09wUlftdO\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-07-14T19:11:44Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bryce Vine\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6jiCRHd8yYXOQbCTwlwm0b\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6jiCRHd8yYXOQbCTwlwm0b\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6jiCRHd8yYXOQbCTwlwm0b\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273aed1472ced35e207b4922af6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02aed1472ced35e207b4922af6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851aed1472ced35e207b4922af6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"On the Ball\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-06-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6jiCRHd8yYXOQbCTwlwm0b\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1ShZZUjkbXCjhwrb18BA8I\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bryce Vine\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1ShZZUjkbXCjhwrb18BA8I\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 190703,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USWB11801200\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/03F0kSuBhDgD2zWlAwkG8x\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/03F0kSuBhDgD2zWlAwkG8x\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"03F0kSuBhDgD2zWlAwkG8x\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"On the Ball\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 45,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/460e04e40c53b30234ae4c1b835183d4eb290abe?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:03F0kSuBhDgD2zWlAwkG8x\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-07-13T17:16:55Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7r8xR0LmnaAM623MmRDn1V\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7r8xR0LmnaAM623MmRDn1V\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7r8xR0LmnaAM623MmRDn1V\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Max Frost\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7r8xR0LmnaAM623MmRDn1V\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0nbOawzuvt0cp8S74R3dMY\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0nbOawzuvt0cp8S74R3dMY\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0nbOawzuvt0cp8S74R3dMY\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d2b420a7f33f6cfdcfc77b3b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d2b420a7f33f6cfdcfc77b3b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d2b420a7f33f6cfdcfc77b3b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Gold Rush\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-10-05\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0nbOawzuvt0cp8S74R3dMY\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7r8xR0LmnaAM623MmRDn1V\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7r8xR0LmnaAM623MmRDn1V\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7r8xR0LmnaAM623MmRDn1V\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Max Frost\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7r8xR0LmnaAM623MmRDn1V\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 219283,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21810981\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/00QD9HF2Q8i4dJnGdzR0He\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/00QD9HF2Q8i4dJnGdzR0He\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"00QD9HF2Q8i4dJnGdzR0He\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"New Confessional\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 31,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/a9b97160c2d2d1ca3bd9e8e57976760977f7efa0?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:00QD9HF2Q8i4dJnGdzR0He\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-07-13T00:28:57Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/692n9oP6XtKux7LbSOnkSC\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/692n9oP6XtKux7LbSOnkSC\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"692n9oP6XtKux7LbSOnkSC\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"bodie\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:692n9oP6XtKux7LbSOnkSC\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4y7dwUN2o3P6lgG9ltGOMg\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4y7dwUN2o3P6lgG9ltGOMg\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4y7dwUN2o3P6lgG9ltGOMg\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273ab64fb31faafd11a9d6203b3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02ab64fb31faafd11a9d6203b3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851ab64fb31faafd11a9d6203b3\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"moonlight\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-10-18\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4y7dwUN2o3P6lgG9ltGOMg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/692n9oP6XtKux7LbSOnkSC\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/692n9oP6XtKux7LbSOnkSC\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"692n9oP6XtKux7LbSOnkSC\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"bodie\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:692n9oP6XtKux7LbSOnkSC\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 196549,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"SEYOK1771725\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5Nmgb8GscFb4r8Ttmcwca8\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5Nmgb8GscFb4r8Ttmcwca8\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5Nmgb8GscFb4r8Ttmcwca8\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"moonlight\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 38,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/84655806fef35cd8072c60d666f0ac57b7995b45?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5Nmgb8GscFb4r8Ttmcwca8\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-07-06T16:34:05Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6P5NO5hzJbuOqSdyPB7SJM\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6P5NO5hzJbuOqSdyPB7SJM\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6P5NO5hzJbuOqSdyPB7SJM\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Ashe\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6P5NO5hzJbuOqSdyPB7SJM\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1Hsdzj7Dlq2I7tHP7501T4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1Hsdzj7Dlq2I7tHP7501T4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1Hsdzj7Dlq2I7tHP7501T4\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Niall Horan\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1Hsdzj7Dlq2I7tHP7501T4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3pqw4TEWnaCDNK2xs0BKhr\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3pqw4TEWnaCDNK2xs0BKhr\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3pqw4TEWnaCDNK2xs0BKhr\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273a987515783d010661bfd631e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02a987515783d010661bfd631e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851a987515783d010661bfd631e\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Moral of the Story (feat. Niall Horan)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-06-17\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3pqw4TEWnaCDNK2xs0BKhr\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6P5NO5hzJbuOqSdyPB7SJM\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6P5NO5hzJbuOqSdyPB7SJM\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6P5NO5hzJbuOqSdyPB7SJM\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ashe\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6P5NO5hzJbuOqSdyPB7SJM\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1Hsdzj7Dlq2I7tHP7501T4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1Hsdzj7Dlq2I7tHP7501T4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1Hsdzj7Dlq2I7tHP7501T4\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Niall Horan\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1Hsdzj7Dlq2I7tHP7501T4\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 198515,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQE92000087\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2NWVdwbd2hPIzC2lyf4y63\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2NWVdwbd2hPIzC2lyf4y63\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2NWVdwbd2hPIzC2lyf4y63\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Moral of the Story (feat. Niall Horan)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 65,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2dcf18453335c531de914f95191a746a217791d8?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2NWVdwbd2hPIzC2lyf4y63\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-06-06T04:33:07Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2a76fsDcTl6A43zwaFNPr4\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2a76fsDcTl6A43zwaFNPr4\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2a76fsDcTl6A43zwaFNPr4\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Jane Bordeaux\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2a76fsDcTl6A43zwaFNPr4\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6A1VmcWYNckHMAVbinI7fj\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6A1VmcWYNckHMAVbinI7fj\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6A1VmcWYNckHMAVbinI7fj\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2739dd641e5d1f91fae441d5ad4\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e029dd641e5d1f91fae441d5ad4\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048519dd641e5d1f91fae441d5ad4\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"אוקיינוסים\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-08-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6A1VmcWYNckHMAVbinI7fj\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2a76fsDcTl6A43zwaFNPr4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2a76fsDcTl6A43zwaFNPr4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2a76fsDcTl6A43zwaFNPr4\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Jane Bordeaux\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2a76fsDcTl6A43zwaFNPr4\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 195700,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"IL1021810934\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7lUDcFMpOnFEpfSixlCWUc\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7lUDcFMpOnFEpfSixlCWUc\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7lUDcFMpOnFEpfSixlCWUc\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"רוקדים צמודים\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 43,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ba762d068384ef32ccd73b6dbda18652f08cb707?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7lUDcFMpOnFEpfSixlCWUc\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-06-01T04:48:02Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5ApQnMT6oR8eLguf24xb9S\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5ApQnMT6oR8eLguf24xb9S\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5ApQnMT6oR8eLguf24xb9S\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Foreign Air\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5ApQnMT6oR8eLguf24xb9S\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5wMSuwUsClGYaoaqESEyM3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5wMSuwUsClGYaoaqESEyM3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5wMSuwUsClGYaoaqESEyM3\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2734ff0b0fd4f0367c75f8016a2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e024ff0b0fd4f0367c75f8016a2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048514ff0b0fd4f0367c75f8016a2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Everything is Good Now\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-03-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5wMSuwUsClGYaoaqESEyM3\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5ApQnMT6oR8eLguf24xb9S\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5ApQnMT6oR8eLguf24xb9S\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5ApQnMT6oR8eLguf24xb9S\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Foreign Air\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5ApQnMT6oR8eLguf24xb9S\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 178679,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEC1922070\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0hHJd9bMTuQZIJdhtMcDtj\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0hHJd9bMTuQZIJdhtMcDtj\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0hHJd9bMTuQZIJdhtMcDtj\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Everything is Good Now\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 38,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ad8fee78d52e57f48bf67b592df5a3b6cdbb93bc?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0hHJd9bMTuQZIJdhtMcDtj\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-06-01T00:31:51Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6as7uFVTtY0fMn8X3Z4PCx\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6as7uFVTtY0fMn8X3Z4PCx\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6as7uFVTtY0fMn8X3Z4PCx\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"MTNMEN\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6as7uFVTtY0fMn8X3Z4PCx\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/23LmPTBAquLuDpWCxFnh1Z\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/23LmPTBAquLuDpWCxFnh1Z\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"23LmPTBAquLuDpWCxFnh1Z\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27368b1955353e313ae1be09fa5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0268b1955353e313ae1be09fa5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485168b1955353e313ae1be09fa5\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Falling Up\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-07-26\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:23LmPTBAquLuDpWCxFnh1Z\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6as7uFVTtY0fMn8X3Z4PCx\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6as7uFVTtY0fMn8X3Z4PCx\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6as7uFVTtY0fMn8X3Z4PCx\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"MTNMEN\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6as7uFVTtY0fMn8X3Z4PCx\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 221102,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFZ21980391\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/67OqLk7tD4Pqer2qiWZybQ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/67OqLk7tD4Pqer2qiWZybQ\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"67OqLk7tD4Pqer2qiWZybQ\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Falling Up\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 42,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ecdf59933f6f8c4e65ac59cef242a7784e2734c0?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:67OqLk7tD4Pqer2qiWZybQ\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-05-29T14:01:41Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7eaa5bidliPI0djFYv166f\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7eaa5bidliPI0djFYv166f\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7eaa5bidliPI0djFYv166f\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"MAGIC GIANT\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7eaa5bidliPI0djFYv166f\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7tSccVmXBn6RyHKoeKgKIv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7tSccVmXBn6RyHKoeKgKIv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7tSccVmXBn6RyHKoeKgKIv\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273202da3a846fa427ab7131b9b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02202da3a846fa427ab7131b9b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851202da3a846fa427ab7131b9b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"In The Wind\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-05-19\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 15,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7tSccVmXBn6RyHKoeKgKIv\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7eaa5bidliPI0djFYv166f\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7eaa5bidliPI0djFYv166f\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7eaa5bidliPI0djFYv166f\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"MAGIC GIANT\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7eaa5bidliPI0djFYv166f\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 277466,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USRZR1700215\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1RsALParpm2YmjO9E3jc5L\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1RsALParpm2YmjO9E3jc5L\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1RsALParpm2YmjO9E3jc5L\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Celebrate The Reckless\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 50,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/73b145cb9687beb85266a899be7aeb29dbf38c40?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 11,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1RsALParpm2YmjO9E3jc5L\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-05-26T12:10:58Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4YXycRbyyAE0wozTk7QMEq\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4YXycRbyyAE0wozTk7QMEq\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4YXycRbyyAE0wozTk7QMEq\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Matoma\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4YXycRbyyAE0wozTk7QMEq\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5FAgkqm09atYktUn6owa2q\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5FAgkqm09atYktUn6owa2q\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5FAgkqm09atYktUn6owa2q\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27360004d2dc7d571e6c54ce7f1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0260004d2dc7d571e6c54ce7f1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485160004d2dc7d571e6c54ce7f1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"One in a Million\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-08-24\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 15,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5FAgkqm09atYktUn6owa2q\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4YXycRbyyAE0wozTk7QMEq\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4YXycRbyyAE0wozTk7QMEq\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4YXycRbyyAE0wozTk7QMEq\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Matoma\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4YXycRbyyAE0wozTk7QMEq\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2RQXRUsr4IW1f3mKyKsy4B\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2RQXRUsr4IW1f3mKyKsy4B\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2RQXRUsr4IW1f3mKyKsy4B\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Noah Kahan\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2RQXRUsr4IW1f3mKyKsy4B\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"US\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 170526,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBAYE1800708\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3nHHMV5YnocvTRiYqolTm9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3nHHMV5YnocvTRiYqolTm9\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3nHHMV5YnocvTRiYqolTm9\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Pieces (feat. Noah Kahan)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 40,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0797d6dd593c0ce30d7e9c4d03c2532cb2908722?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 12,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3nHHMV5YnocvTRiYqolTm9\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-05-24T22:15:12Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6EXF6M6k5tIrzOIs9ewxCP\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6EXF6M6k5tIrzOIs9ewxCP\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6EXF6M6k5tIrzOIs9ewxCP\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"LUTHI\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6EXF6M6k5tIrzOIs9ewxCP\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4sHAKtPcleu2hw7u3ci9oT\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4sHAKtPcleu2hw7u3ci9oT\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4sHAKtPcleu2hw7u3ci9oT\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732df458c81fb549220ab1f44b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022df458c81fb549220ab1f44b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512df458c81fb549220ab1f44b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Roll It Back\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-08-09\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4sHAKtPcleu2hw7u3ci9oT\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6EXF6M6k5tIrzOIs9ewxCP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6EXF6M6k5tIrzOIs9ewxCP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6EXF6M6k5tIrzOIs9ewxCP\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"LUTHI\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6EXF6M6k5tIrzOIs9ewxCP\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 252662,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEI1961945\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/37VlraHNV0dkzrudtmtYUA\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/37VlraHNV0dkzrudtmtYUA\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"37VlraHNV0dkzrudtmtYUA\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Roll It Back\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 42,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/723f3414ed3c41b86cb2fde3ad8d69d9f0705b88?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:37VlraHNV0dkzrudtmtYUA\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-05-24T20:09:27Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/42kxHIYLflWcEAGkeKNHSp\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/42kxHIYLflWcEAGkeKNHSp\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"42kxHIYLflWcEAGkeKNHSp\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Havelin\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:42kxHIYLflWcEAGkeKNHSp\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0tpFUrEVszrbqzi4tMAOaP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0tpFUrEVszrbqzi4tMAOaP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0tpFUrEVszrbqzi4tMAOaP\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273a9a3bdb4a7a8dfee07cae3fa\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02a9a3bdb4a7a8dfee07cae3fa\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851a9a3bdb4a7a8dfee07cae3fa\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Alright, Alright, Okay\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-09-23\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0tpFUrEVszrbqzi4tMAOaP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/42kxHIYLflWcEAGkeKNHSp\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/42kxHIYLflWcEAGkeKNHSp\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"42kxHIYLflWcEAGkeKNHSp\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Havelin\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:42kxHIYLflWcEAGkeKNHSp\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 244505,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"CA9951600001\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5xLFH8cnWv37ep9mWVTYFS\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5xLFH8cnWv37ep9mWVTYFS\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5xLFH8cnWv37ep9mWVTYFS\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Closing Time\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5xLFH8cnWv37ep9mWVTYFS\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-05-02T22:28:19Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6AbXJxYckXHpMDApmUyP8A\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6AbXJxYckXHpMDApmUyP8A\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6AbXJxYckXHpMDApmUyP8A\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Beauvois\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6AbXJxYckXHpMDApmUyP8A\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1JPtcryptncl7JpEPCG0Yl\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1JPtcryptncl7JpEPCG0Yl\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1JPtcryptncl7JpEPCG0Yl\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273303f727fa3a869d001658da0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02303f727fa3a869d001658da0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851303f727fa3a869d001658da0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Escape\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-11-06\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1JPtcryptncl7JpEPCG0Yl\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6AbXJxYckXHpMDApmUyP8A\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6AbXJxYckXHpMDApmUyP8A\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6AbXJxYckXHpMDApmUyP8A\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Beauvois\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6AbXJxYckXHpMDApmUyP8A\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 252874,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZES51896892\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6FbWHP86JHBjSwGqP7K6yf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6FbWHP86JHBjSwGqP7K6yf\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6FbWHP86JHBjSwGqP7K6yf\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Escape\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 21,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8cf8cf7d76bde2d062369cab10257ee93c6ca9fe?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6FbWHP86JHBjSwGqP7K6yf\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-04-22T18:19:49Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1M0dufGcezQSWNroSSQcK5\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1M0dufGcezQSWNroSSQcK5\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1M0dufGcezQSWNroSSQcK5\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"NOAH\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1M0dufGcezQSWNroSSQcK5\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/31jIQTUL9YzKcle9DxDD9d\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/31jIQTUL9YzKcle9DxDD9d\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"31jIQTUL9YzKcle9DxDD9d\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273a3daf222383f7a665f63135a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02a3daf222383f7a665f63135a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851a3daf222383f7a665f63135a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Alle Går I Stykker\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-10-11\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:31jIQTUL9YzKcle9DxDD9d\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1M0dufGcezQSWNroSSQcK5\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1M0dufGcezQSWNroSSQcK5\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1M0dufGcezQSWNroSSQcK5\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"NOAH\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1M0dufGcezQSWNroSSQcK5\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 179571,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"DKUM71900474\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5RlXejb918nA3CIVMa4DvR\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5RlXejb918nA3CIVMa4DvR\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5RlXejb918nA3CIVMa4DvR\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Alle Går I Stykker\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 34,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3fca1206360a94fbcf3ad45239d88d2ff22f8425?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5RlXejb918nA3CIVMa4DvR\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-04-08T07:56:51Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/71le7jtjw9hq389Fnvi6XM\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/71le7jtjw9hq389Fnvi6XM\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"71le7jtjw9hq389Fnvi6XM\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Soleima\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:71le7jtjw9hq389Fnvi6XM\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6x76p6bmRoXLpWybj5ePgM\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6x76p6bmRoXLpWybj5ePgM\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6x76p6bmRoXLpWybj5ePgM\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273a8d7a2e0a3acf36b0735e326\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02a8d7a2e0a3acf36b0735e326\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851a8d7a2e0a3acf36b0735e326\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Roses\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2020-01-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6x76p6bmRoXLpWybj5ePgM\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/71le7jtjw9hq389Fnvi6XM\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/71le7jtjw9hq389Fnvi6XM\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"71le7jtjw9hq389Fnvi6XM\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Soleima\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:71le7jtjw9hq389Fnvi6XM\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 187766,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21907410\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7FMKgRtkdPuQTsI06stj0y\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7FMKgRtkdPuQTsI06stj0y\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7FMKgRtkdPuQTsI06stj0y\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Roses\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 30,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/85a1940968c7b188d922371b583fca5687a984fa?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7FMKgRtkdPuQTsI06stj0y\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-04-06T02:26:38Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7EQ0qTo7fWT7DPxmxtSYEc\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7EQ0qTo7fWT7DPxmxtSYEc\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7EQ0qTo7fWT7DPxmxtSYEc\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bastille\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/70p5NvBOkvaxU1UeIxhE1Z\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/70p5NvBOkvaxU1UeIxhE1Z\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"70p5NvBOkvaxU1UeIxhE1Z\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273137d133f1c79c4965eace78c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02137d133f1c79c4965eace78c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851137d133f1c79c4965eace78c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Quarter Past Midnight\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-05-09\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:70p5NvBOkvaxU1UeIxhE1Z\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7EQ0qTo7fWT7DPxmxtSYEc\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7EQ0qTo7fWT7DPxmxtSYEc\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7EQ0qTo7fWT7DPxmxtSYEc\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bastille\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7EQ0qTo7fWT7DPxmxtSYEc\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 201799,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBUM71801713\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1etiUDkISHELzQGMY79ryt\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1etiUDkISHELzQGMY79ryt\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1etiUDkISHELzQGMY79ryt\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Quarter Past Midnight\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 55,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aa7b2684063ac9f015356c3fb5f08b2e1b88e8fd?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1etiUDkISHELzQGMY79ryt\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-04-05T00:23:21Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6PPQbW6B4qlgQbuvjbdQ4V\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6PPQbW6B4qlgQbuvjbdQ4V\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6PPQbW6B4qlgQbuvjbdQ4V\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Brother Moses\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6PPQbW6B4qlgQbuvjbdQ4V\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0k1Pj7stOK4wNQvVAMfM0T\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0k1Pj7stOK4wNQvVAMfM0T\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0k1Pj7stOK4wNQvVAMfM0T\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27346ce84cfa970186f0548310a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0246ce84cfa970186f0548310a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485146ce84cfa970186f0548310a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Legends\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-08-26\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0k1Pj7stOK4wNQvVAMfM0T\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6PPQbW6B4qlgQbuvjbdQ4V\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6PPQbW6B4qlgQbuvjbdQ4V\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6PPQbW6B4qlgQbuvjbdQ4V\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Brother Moses\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6PPQbW6B4qlgQbuvjbdQ4V\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 176200,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMVYL1600003\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0pNZbcaEUUUaU0rZVG1Tl2\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0pNZbcaEUUUaU0rZVG1Tl2\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0pNZbcaEUUUaU0rZVG1Tl2\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Older\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0pNZbcaEUUUaU0rZVG1Tl2\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-04-01T19:19:30Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0CoEgFZIjkvrpEdpJajCVv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0CoEgFZIjkvrpEdpJajCVv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0CoEgFZIjkvrpEdpJajCVv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Grady Strange\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0CoEgFZIjkvrpEdpJajCVv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1SVKtq9aIhx5JQtTYpPr93\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1SVKtq9aIhx5JQtTYpPr93\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1SVKtq9aIhx5JQtTYpPr93\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273125a9651ddb5a8122e4385fd\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02125a9651ddb5a8122e4385fd\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851125a9651ddb5a8122e4385fd\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lemon Sun\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-06-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1SVKtq9aIhx5JQtTYpPr93\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0CoEgFZIjkvrpEdpJajCVv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0CoEgFZIjkvrpEdpJajCVv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0CoEgFZIjkvrpEdpJajCVv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Grady Strange\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0CoEgFZIjkvrpEdpJajCVv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 173857,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEG1947280\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2IjLDPeaGgpUQV5OcWRDrs\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2IjLDPeaGgpUQV5OcWRDrs\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2IjLDPeaGgpUQV5OcWRDrs\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Lemon Sun\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 35,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/a32eddc3b052167798a5ed32d85294da9ae6b808?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2IjLDPeaGgpUQV5OcWRDrs\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-03-23T23:30:57Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/790UjtODOzqAYB4O4RLJxR\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/790UjtODOzqAYB4O4RLJxR\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"790UjtODOzqAYB4O4RLJxR\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"States & Capitals\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:790UjtODOzqAYB4O4RLJxR\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5wN5poCaKFZpB8ZsXrGVRt\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5wN5poCaKFZpB8ZsXrGVRt\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5wN5poCaKFZpB8ZsXrGVRt\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273fa9eb5993d52744bed5e05a1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02fa9eb5993d52744bed5e05a1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851fa9eb5993d52744bed5e05a1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"(It's Not Living) If It's Not With You\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-04-05\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5wN5poCaKFZpB8ZsXrGVRt\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/790UjtODOzqAYB4O4RLJxR\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/790UjtODOzqAYB4O4RLJxR\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"790UjtODOzqAYB4O4RLJxR\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"States & Capitals\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:790UjtODOzqAYB4O4RLJxR\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 230000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMGR32005158\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7KJArPtsgZLC5XxfSuN5hA\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7KJArPtsgZLC5XxfSuN5hA\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7KJArPtsgZLC5XxfSuN5hA\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"(It's Not Living) If It's Not With You\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 38,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/52c23bcc7e9a296a401235d669b89264df7dc11f?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7KJArPtsgZLC5XxfSuN5hA\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-03-14T17:15:21Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7DZSmYxbcqGOz4QxhxNAJw\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7DZSmYxbcqGOz4QxhxNAJw\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7DZSmYxbcqGOz4QxhxNAJw\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Pacific\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7DZSmYxbcqGOz4QxhxNAJw\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0Hc5e02gNHfj0KQ9JlR1nf\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0Hc5e02gNHfj0KQ9JlR1nf\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0Hc5e02gNHfj0KQ9JlR1nf\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733d44fe295acf771cbb4fa111\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023d44fe295acf771cbb4fa111\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513d44fe295acf771cbb4fa111\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"WYAF\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-01-11\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0Hc5e02gNHfj0KQ9JlR1nf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7DZSmYxbcqGOz4QxhxNAJw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7DZSmYxbcqGOz4QxhxNAJw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7DZSmYxbcqGOz4QxhxNAJw\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Pacific\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7DZSmYxbcqGOz4QxhxNAJw\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 278462,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZES81851666\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3NNIgD6HMJ0tqwiSCdH2br\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3NNIgD6HMJ0tqwiSCdH2br\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3NNIgD6HMJ0tqwiSCdH2br\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"WYAF\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 25,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/045a6b35730cdaf3c16703b856061d4dedfe87e1?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3NNIgD6HMJ0tqwiSCdH2br\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-03-03T17:59:41Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/747NFKmOFoZwmq4yc6gCmT\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/747NFKmOFoZwmq4yc6gCmT\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"747NFKmOFoZwmq4yc6gCmT\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Chris Jobe\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:747NFKmOFoZwmq4yc6gCmT\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4FeWFaymuIvHsu8zUbS28b\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4FeWFaymuIvHsu8zUbS28b\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4FeWFaymuIvHsu8zUbS28b\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273d3aa3d76a4aba958e94de8af\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02d3aa3d76a4aba958e94de8af\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851d3aa3d76a4aba958e94de8af\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Love in the Morning\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-23\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4FeWFaymuIvHsu8zUbS28b\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/747NFKmOFoZwmq4yc6gCmT\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/747NFKmOFoZwmq4yc6gCmT\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"747NFKmOFoZwmq4yc6gCmT\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Chris Jobe\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:747NFKmOFoZwmq4yc6gCmT\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 179666,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1801469\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/43ggyI9mVB7TT9m1d6ievl\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/43ggyI9mVB7TT9m1d6ievl\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"43ggyI9mVB7TT9m1d6ievl\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Love in the Morning\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 26,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:43ggyI9mVB7TT9m1d6ievl\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-02-07T19:16:53Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/58bPSgeKpyyFlJ9LatULIO\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/58bPSgeKpyyFlJ9LatULIO\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"58bPSgeKpyyFlJ9LatULIO\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"HARBOUR\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:58bPSgeKpyyFlJ9LatULIO\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6wv4Pu0wtELFxq1gkxmku6\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6wv4Pu0wtELFxq1gkxmku6\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6wv4Pu0wtELFxq1gkxmku6\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733c204435d165357c5c65adc1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023c204435d165357c5c65adc1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513c204435d165357c5c65adc1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Heatwave\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-08-04\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6wv4Pu0wtELFxq1gkxmku6\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/58bPSgeKpyyFlJ9LatULIO\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/58bPSgeKpyyFlJ9LatULIO\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"58bPSgeKpyyFlJ9LatULIO\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"HARBOUR\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:58bPSgeKpyyFlJ9LatULIO\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 210000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADE1723407\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2qdmM6JfK55YDUGMgRgJW2\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2qdmM6JfK55YDUGMgRgJW2\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2qdmM6JfK55YDUGMgRgJW2\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Judy You Hung the Moon\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 11,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2qdmM6JfK55YDUGMgRgJW2\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-02-02T21:07:16Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rqctFxBwSTjweKb3cBCCu\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rqctFxBwSTjweKb3cBCCu\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6rqctFxBwSTjweKb3cBCCu\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Nodaway\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rqctFxBwSTjweKb3cBCCu\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4tC9T2KHD3MYvaOmVB41vH\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4tC9T2KHD3MYvaOmVB41vH\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4tC9T2KHD3MYvaOmVB41vH\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273bb155d92cefe79c784c0f5a9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02bb155d92cefe79c784c0f5a9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851bb155d92cefe79c784c0f5a9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"500 Days of Whatever\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2015-04-28\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4tC9T2KHD3MYvaOmVB41vH\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6rqctFxBwSTjweKb3cBCCu\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6rqctFxBwSTjweKb3cBCCu\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6rqctFxBwSTjweKb3cBCCu\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Nodaway\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6rqctFxBwSTjweKb3cBCCu\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 177365,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMCKF1300011\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7occa9VeNFOe8AKLVLiRYW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7occa9VeNFOe8AKLVLiRYW\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7occa9VeNFOe8AKLVLiRYW\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"3's\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 35,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/6dfa760bebc5afee4cacc178a6722a6c19e98b3d?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7occa9VeNFOe8AKLVLiRYW\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-01-10T18:15:42Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6AGUQK1EWK6nvN4pLIDQDQ\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6AGUQK1EWK6nvN4pLIDQDQ\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6AGUQK1EWK6nvN4pLIDQDQ\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Mowgli's\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6AGUQK1EWK6nvN4pLIDQDQ\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4M2p2BIRHIeBu8Ew9IBQ0s\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4M2p2BIRHIeBu8Ew9IBQ0s\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4M2p2BIRHIeBu8Ew9IBQ0s\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c454c63312bec7fea9db95fe\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c454c63312bec7fea9db95fe\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c454c63312bec7fea9db95fe\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Kids In Love\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2015-04-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4M2p2BIRHIeBu8Ew9IBQ0s\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6AGUQK1EWK6nvN4pLIDQDQ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6AGUQK1EWK6nvN4pLIDQDQ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6AGUQK1EWK6nvN4pLIDQDQ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Mowgli's\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6AGUQK1EWK6nvN4pLIDQDQ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 166893,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUM71500700\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5KQDGl3vAkNGyfvSbaW89E\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5KQDGl3vAkNGyfvSbaW89E\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5KQDGl3vAkNGyfvSbaW89E\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"I'm Good\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 58,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2b2483521e4d197e11fc844c7cdd353a4d389d12?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5KQDGl3vAkNGyfvSbaW89E\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2020-01-06T07:26:58Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sleep State\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2RWhEtbSG4Fdekz1DMnLVp\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2RWhEtbSG4Fdekz1DMnLVp\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2RWhEtbSG4Fdekz1DMnLVp\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2730e90e02b17e9fb95cb7cb753\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e020e90e02b17e9fb95cb7cb753\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048510e90e02b17e9fb95cb7cb753\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Dyin' when I See Ya\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-10-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2RWhEtbSG4Fdekz1DMnLVp\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sleep State\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4YrER0Q2EfYJ3RqHfzlnSi\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 236356,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADW1890183\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3GrWhIcFxhfysFUOUQjfL4\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3GrWhIcFxhfysFUOUQjfL4\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3GrWhIcFxhfysFUOUQjfL4\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Dyin' when I See Ya\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 31,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2d816009dd1e0d35af5c23ec2e0014cec710fc36?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3GrWhIcFxhfysFUOUQjfL4\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-12-12T07:25:24Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0m34JtkojthW5WYugFm0e3\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0m34JtkojthW5WYugFm0e3\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0m34JtkojthW5WYugFm0e3\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Olen\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0m34JtkojthW5WYugFm0e3\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5qWHRSWE9dt35KN40pgKfl\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5qWHRSWE9dt35KN40pgKfl\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5qWHRSWE9dt35KN40pgKfl\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27307edc8d402ecdc2e92286324\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0207edc8d402ecdc2e92286324\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485107edc8d402ecdc2e92286324\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Genesis (Acoustic)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-10-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5qWHRSWE9dt35KN40pgKfl\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0m34JtkojthW5WYugFm0e3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0m34JtkojthW5WYugFm0e3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0m34JtkojthW5WYugFm0e3\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Olen\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0m34JtkojthW5WYugFm0e3\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 213169,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1672874\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5bFFJhiXofiXrgJWeaipN1\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5bFFJhiXofiXrgJWeaipN1\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5bFFJhiXofiXrgJWeaipN1\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Genesis - Acoustic\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 24,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5bFFJhiXofiXrgJWeaipN1\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-12-10T23:05:02Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4cqHx0neEP7BFbGlKkmIHQ\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4cqHx0neEP7BFbGlKkmIHQ\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4cqHx0neEP7BFbGlKkmIHQ\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Orphan The Poet\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4cqHx0neEP7BFbGlKkmIHQ\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5Sq3KbQRVpwfIIajnrJCJ5\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5Sq3KbQRVpwfIIajnrJCJ5\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5Sq3KbQRVpwfIIajnrJCJ5\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2736d4a5de16645549d46010b2a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e026d4a5de16645549d46010b2a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048516d4a5de16645549d46010b2a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Queen Cobra\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-05-24\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5Sq3KbQRVpwfIIajnrJCJ5\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4cqHx0neEP7BFbGlKkmIHQ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4cqHx0neEP7BFbGlKkmIHQ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4cqHx0neEP7BFbGlKkmIHQ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Orphan The Poet\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4cqHx0neEP7BFbGlKkmIHQ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 181360,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZGLS1960078\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5G6J212I10FquxqucKKSti\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5G6J212I10FquxqucKKSti\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5G6J212I10FquxqucKKSti\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Queen Cobra\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 42,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/20b709384eff0944299c6073ba8079a56887e110?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5G6J212I10FquxqucKKSti\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-12-10T22:51:19Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3JUsjiDq2ybY2zHQsMFTkb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3JUsjiDq2ybY2zHQsMFTkb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3JUsjiDq2ybY2zHQsMFTkb\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"High Dive Heart\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3JUsjiDq2ybY2zHQsMFTkb\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/445YotlXL8UmrshaXVfDjy\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/445YotlXL8UmrshaXVfDjy\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"445YotlXL8UmrshaXVfDjy\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273a4eab0f780ce680ee3dcfb01\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02a4eab0f780ce680ee3dcfb01\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851a4eab0f780ce680ee3dcfb01\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sunrise\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-12-15\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:445YotlXL8UmrshaXVfDjy\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3JUsjiDq2ybY2zHQsMFTkb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3JUsjiDq2ybY2zHQsMFTkb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3JUsjiDq2ybY2zHQsMFTkb\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"High Dive Heart\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3JUsjiDq2ybY2zHQsMFTkb\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 208421,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADJ1756117\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6N8iM0GRtGR1rIgUbcMXPp\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6N8iM0GRtGR1rIgUbcMXPp\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6N8iM0GRtGR1rIgUbcMXPp\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Sunrise\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 46,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/4593c81904049f0364955bb35105c7c36cf7aad9?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6N8iM0GRtGR1rIgUbcMXPp\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-12-05T05:30:48Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/05GeUxBiQ1aq6VYnODnPbD\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/05GeUxBiQ1aq6VYnODnPbD\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"05GeUxBiQ1aq6VYnODnPbD\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Jane Holiday\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:05GeUxBiQ1aq6VYnODnPbD\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1emj4dyrG8iciFVt058cuY\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1emj4dyrG8iciFVt058cuY\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1emj4dyrG8iciFVt058cuY\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27352f5891b4a3c56e960096b91\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0252f5891b4a3c56e960096b91\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485152f5891b4a3c56e960096b91\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"STiLL iLL\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-10-18\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 7,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1emj4dyrG8iciFVt058cuY\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/05GeUxBiQ1aq6VYnODnPbD\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/05GeUxBiQ1aq6VYnODnPbD\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"05GeUxBiQ1aq6VYnODnPbD\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Jane Holiday\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:05GeUxBiQ1aq6VYnODnPbD\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 183000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ85M1916376\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6YDqsBFVkNdrsgCkzBDItj\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6YDqsBFVkNdrsgCkzBDItj\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6YDqsBFVkNdrsgCkzBDItj\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Future Retro Super Soul\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ac78c2d1d3a304b6a3fa55309be72cca96798738?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6YDqsBFVkNdrsgCkzBDItj\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-11-26T01:58:02Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2lCUVconWp5YjxdYssfZ8J\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2lCUVconWp5YjxdYssfZ8J\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2lCUVconWp5YjxdYssfZ8J\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sub-Radio\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2lCUVconWp5YjxdYssfZ8J\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3MKiZ0UY8gvFk9pgugib2u\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3MKiZ0UY8gvFk9pgugib2u\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3MKiZ0UY8gvFk9pgugib2u\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273436bb2f88d19f0634d6dd02d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02436bb2f88d19f0634d6dd02d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851436bb2f88d19f0634d6dd02d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Room for You\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-05-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3MKiZ0UY8gvFk9pgugib2u\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2lCUVconWp5YjxdYssfZ8J\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2lCUVconWp5YjxdYssfZ8J\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2lCUVconWp5YjxdYssfZ8J\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sub-Radio\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2lCUVconWp5YjxdYssfZ8J\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 207720,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"usdy41995268\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/04G7lcD9kGNt5ou2p8tx3m\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/04G7lcD9kGNt5ou2p8tx3m\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"04G7lcD9kGNt5ou2p8tx3m\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Room for You\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:04G7lcD9kGNt5ou2p8tx3m\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-11-26T00:25:54Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4iiQabGKtS2RtTKpVkrVTw\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4iiQabGKtS2RtTKpVkrVTw\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4iiQabGKtS2RtTKpVkrVTw\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Smallpools\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4iiQabGKtS2RtTKpVkrVTw\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4oDIJii97ZftQRUOV0ZfME\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4oDIJii97ZftQRUOV0ZfME\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4oDIJii97ZftQRUOV0ZfME\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"8\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4oDIJii97ZftQRUOV0ZfME\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5ONFJeFGzr0SHWedxlUDrE\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5ONFJeFGzr0SHWedxlUDrE\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5ONFJeFGzr0SHWedxlUDrE\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273731fd272141b881530e02452\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02731fd272141b881530e02452\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851731fd272141b881530e02452\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Mother (8 Mix)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-11-17\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5ONFJeFGzr0SHWedxlUDrE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4iiQabGKtS2RtTKpVkrVTw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4iiQabGKtS2RtTKpVkrVTw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4iiQabGKtS2RtTKpVkrVTw\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Smallpools\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4iiQabGKtS2RtTKpVkrVTw\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4oDIJii97ZftQRUOV0ZfME\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4oDIJii97ZftQRUOV0ZfME\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4oDIJii97ZftQRUOV0ZfME\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"8\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4oDIJii97ZftQRUOV0ZfME\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 237473,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBWWP1703301\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0glI0Qi04BEuaNWNh5Wytr\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0glI0Qi04BEuaNWNh5Wytr\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0glI0Qi04BEuaNWNh5Wytr\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Mother - 8 Mix\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0glI0Qi04BEuaNWNh5Wytr\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-11-24T22:35:25Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4hW1C8nk7USDBBbFdeqi9g\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4hW1C8nk7USDBBbFdeqi9g\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4hW1C8nk7USDBBbFdeqi9g\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The Kelseys\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4hW1C8nk7USDBBbFdeqi9g\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2amlqRVlibDKh0dvZBxnWf\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2amlqRVlibDKh0dvZBxnWf\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2amlqRVlibDKh0dvZBxnWf\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2731b4b70c079288d0ea9b2eaca\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e021b4b70c079288d0ea9b2eaca\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048511b4b70c079288d0ea9b2eaca\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Everything Is Beautiful\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-08-23\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2amlqRVlibDKh0dvZBxnWf\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4hW1C8nk7USDBBbFdeqi9g\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4hW1C8nk7USDBBbFdeqi9g\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4hW1C8nk7USDBBbFdeqi9g\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Kelseys\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4hW1C8nk7USDBBbFdeqi9g\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 240875,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZFZ41948045\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2hfXpQmGdxAvjEatrOA5AZ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2hfXpQmGdxAvjEatrOA5AZ\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2hfXpQmGdxAvjEatrOA5AZ\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Everything Is Beautiful\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 10,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/31cf13f93abd3bd1a9b2657c0c578e8997c75220?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2hfXpQmGdxAvjEatrOA5AZ\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-10-23T05:55:07Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4iiQabGKtS2RtTKpVkrVTw\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4iiQabGKtS2RtTKpVkrVTw\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4iiQabGKtS2RtTKpVkrVTw\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Smallpools\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4iiQabGKtS2RtTKpVkrVTw\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0MyWPwfj5vMuKTyN45eZL7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0MyWPwfj5vMuKTyN45eZL7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0MyWPwfj5vMuKTyN45eZL7\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27382bb1fff21fb1509403427c6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0282bb1fff21fb1509403427c6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485182bb1fff21fb1509403427c6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"So Social\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-12-07\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 5,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0MyWPwfj5vMuKTyN45eZL7\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4iiQabGKtS2RtTKpVkrVTw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4iiQabGKtS2RtTKpVkrVTw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4iiQabGKtS2RtTKpVkrVTw\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Smallpools\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4iiQabGKtS2RtTKpVkrVTw\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 219354,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1829086\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6kNEaRYwAFOVWXNZKljej5\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6kNEaRYwAFOVWXNZKljej5\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6kNEaRYwAFOVWXNZKljej5\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"People Watching\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 22,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6kNEaRYwAFOVWXNZKljej5\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-10-21T06:54:19Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7xSEWLsywYbocdtt3xsQsU\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7xSEWLsywYbocdtt3xsQsU\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7xSEWLsywYbocdtt3xsQsU\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Vinyl Theatre\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7xSEWLsywYbocdtt3xsQsU\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1oDdMVhSZopcWLHQf0MZLB\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1oDdMVhSZopcWLHQf0MZLB\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1oDdMVhSZopcWLHQf0MZLB\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27336277a8982121af57b1a59c0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0236277a8982121af57b1a59c0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485136277a8982121af57b1a59c0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"STARCRUISER\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-08-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1oDdMVhSZopcWLHQf0MZLB\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7xSEWLsywYbocdtt3xsQsU\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7xSEWLsywYbocdtt3xsQsU\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7xSEWLsywYbocdtt3xsQsU\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Vinyl Theatre\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7xSEWLsywYbocdtt3xsQsU\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 276120,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ5AB2020126\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5BJTId4cWNPRlUp5tQQ3lq\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5BJTId4cWNPRlUp5tQQ3lq\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5BJTId4cWNPRlUp5tQQ3lq\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Our Song\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 32,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f20a0f0e2539e37edf6f61db6a3c161ff2982ada?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5BJTId4cWNPRlUp5tQQ3lq\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-10-09T12:02:06Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1yrDEqCcvp18b76yNPfoYX\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1yrDEqCcvp18b76yNPfoYX\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1yrDEqCcvp18b76yNPfoYX\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Box the Oxford\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1yrDEqCcvp18b76yNPfoYX\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6Eq7aaERhakMSVgGJ19WJL\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6Eq7aaERhakMSVgGJ19WJL\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6Eq7aaERhakMSVgGJ19WJL\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27399b77347f4e14cc35300d85d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0299b77347f4e14cc35300d85d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485199b77347f4e14cc35300d85d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"1922\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-06-08\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6Eq7aaERhakMSVgGJ19WJL\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1yrDEqCcvp18b76yNPfoYX\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1yrDEqCcvp18b76yNPfoYX\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1yrDEqCcvp18b76yNPfoYX\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Box the Oxford\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1yrDEqCcvp18b76yNPfoYX\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 214382,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"usdy41899204\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4U4hey6H02kTMjVqw6dNh8\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4U4hey6H02kTMjVqw6dNh8\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4U4hey6H02kTMjVqw6dNh8\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"1922\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 45,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/eab2aca12d37d6846f5eb58b8917b7229686e827?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4U4hey6H02kTMjVqw6dNh8\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-09-26T07:34:56Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6ARuwYokwsYwDJl24N3p9N\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6ARuwYokwsYwDJl24N3p9N\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6ARuwYokwsYwDJl24N3p9N\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"The 5:55\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6ARuwYokwsYwDJl24N3p9N\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/37T7wo9fu5hvEpjOlxtXMF\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/37T7wo9fu5hvEpjOlxtXMF\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"37T7wo9fu5hvEpjOlxtXMF\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2737020159dd69a831d473ce901\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e027020159dd69a831d473ce901\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048517020159dd69a831d473ce901\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Marquee\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-11-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:37T7wo9fu5hvEpjOlxtXMF\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6ARuwYokwsYwDJl24N3p9N\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6ARuwYokwsYwDJl24N3p9N\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6ARuwYokwsYwDJl24N3p9N\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The 5:55\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6ARuwYokwsYwDJl24N3p9N\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 231012,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"usl4q1844409\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4eTGXwNcDz0hqsGToYKFig\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4eTGXwNcDz0hqsGToYKFig\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4eTGXwNcDz0hqsGToYKFig\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Marquee\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 18,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f79be18df93ac89c2f06ad2f1fc0083e47c94126?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4eTGXwNcDz0hqsGToYKFig\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=200&limit=50\\\\\\\",\\\\n  \\\\\\\"offset\\\\\\\" : 150,\\\\n  \\\\\\\"previous\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=100&limit=50\\\\\\\",\\\\n  \\\\\\\"total\\\\\\\" : 286\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/tracks?offset=200&limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjE5OTU5ODg0OTRjY2JhMDFkNTY3NGQxZmIzZmVlODZkIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"220278\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:24 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=200&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-09-22T21:56:39Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1CME6xnSWrraWS3Q3M1dcX\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1CME6xnSWrraWS3Q3M1dcX\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1CME6xnSWrraWS3Q3M1dcX\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"No Alarms\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1CME6xnSWrraWS3Q3M1dcX\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lIFygQM766p7bKilE3MEh\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lIFygQM766p7bKilE3MEh\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lIFygQM766p7bKilE3MEh\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27334ac55178600ffd456f290d2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0234ac55178600ffd456f290d2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485134ac55178600ffd456f290d2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Landing\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-09-07\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lIFygQM766p7bKilE3MEh\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1CME6xnSWrraWS3Q3M1dcX\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1CME6xnSWrraWS3Q3M1dcX\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1CME6xnSWrraWS3Q3M1dcX\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"No Alarms\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1CME6xnSWrraWS3Q3M1dcX\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 229054,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USLZJ1830285\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5TNft3Bu8kcrj41s1fd05v\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5TNft3Bu8kcrj41s1fd05v\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5TNft3Bu8kcrj41s1fd05v\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"The Landing\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 4,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5TNft3Bu8kcrj41s1fd05v\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-09-16T03:56:51Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0PTsEjZ1edeFFV4AALzJ51\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0PTsEjZ1edeFFV4AALzJ51\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0PTsEjZ1edeFFV4AALzJ51\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Elijah Noll\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0PTsEjZ1edeFFV4AALzJ51\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1EnEDWpYu2RrPrm5dtjmF1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1EnEDWpYu2RrPrm5dtjmF1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1EnEDWpYu2RrPrm5dtjmF1\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273523c02709de6bbcf73119712\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02523c02709de6bbcf73119712\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851523c02709de6bbcf73119712\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Nova Scotia\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-11-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1EnEDWpYu2RrPrm5dtjmF1\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0PTsEjZ1edeFFV4AALzJ51\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0PTsEjZ1edeFFV4AALzJ51\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0PTsEjZ1edeFFV4AALzJ51\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Elijah Noll\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0PTsEjZ1edeFFV4AALzJ51\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 201333,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADY1816907\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4JGmdPx80cUxM7ywexsq6M\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4JGmdPx80cUxM7ywexsq6M\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4JGmdPx80cUxM7ywexsq6M\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Nova Scotia\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 33,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3f0d76fdf527e43601aa2694ff06b40e7d6d3bde?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4JGmdPx80cUxM7ywexsq6M\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-09-16T02:40:33Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2ic4xySjQ39N7DJ0HZemeG\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2ic4xySjQ39N7DJ0HZemeG\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2ic4xySjQ39N7DJ0HZemeG\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bronze Radio Return\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2ic4xySjQ39N7DJ0HZemeG\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4Pc4lw8lfsJWPNNqfCer8r\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4Pc4lw8lfsJWPNNqfCer8r\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4Pc4lw8lfsJWPNNqfCer8r\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2733aeab822f6e758b3d0cbe310\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e023aeab822f6e758b3d0cbe310\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048513aeab822f6e758b3d0cbe310\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Entertain You\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-02-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4Pc4lw8lfsJWPNNqfCer8r\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2ic4xySjQ39N7DJ0HZemeG\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2ic4xySjQ39N7DJ0HZemeG\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2ic4xySjQ39N7DJ0HZemeG\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bronze Radio Return\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2ic4xySjQ39N7DJ0HZemeG\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 217055,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ8GX1700331\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0oFL8bZw53pQbqsnx9Alx9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0oFL8bZw53pQbqsnx9Alx9\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0oFL8bZw53pQbqsnx9Alx9\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Here for Now\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 28,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/3dd5dbfb3c1b285ccce2da0a6a897a71e03f71b5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 10,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0oFL8bZw53pQbqsnx9Alx9\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-09-16T02:29:52Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3ELtHSzVp9HZAo9KknqWig\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3ELtHSzVp9HZAo9KknqWig\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3ELtHSzVp9HZAo9KknqWig\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Wave & Rome\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3ELtHSzVp9HZAo9KknqWig\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/5Q0k1eEG2K70X6z6ydPUB5\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/5Q0k1eEG2K70X6z6ydPUB5\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5Q0k1eEG2K70X6z6ydPUB5\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2736bfdc13108d59c5a1125cc20\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e026bfdc13108d59c5a1125cc20\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048516bfdc13108d59c5a1125cc20\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wave & Rome\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-08-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 7,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:5Q0k1eEG2K70X6z6ydPUB5\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3ELtHSzVp9HZAo9KknqWig\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3ELtHSzVp9HZAo9KknqWig\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3ELtHSzVp9HZAo9KknqWig\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wave & Rome\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3ELtHSzVp9HZAo9KknqWig\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 248296,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QM24S1922283\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1LOSbMJgPC91KT6Xjnd2Z0\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1LOSbMJgPC91KT6Xjnd2Z0\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1LOSbMJgPC91KT6Xjnd2Z0\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Velvet Sea\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 3,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f6f14995b35b38b6e1c23885434fa11bdf0f2c2b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 6,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1LOSbMJgPC91KT6Xjnd2Z0\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-08-28T00:58:53Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1vCWHaC5f2uS3yhpwWbIA6\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Avicii\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1vCWHaC5f2uS3yhpwWbIA6\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1s9tU91VJt4sU5owi29GD3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1s9tU91VJt4sU5owi29GD3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1s9tU91VJt4sU5owi29GD3\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2734cfcceb6f9b1aae8752810e7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e024cfcceb6f9b1aae8752810e7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048514cfcceb6f9b1aae8752810e7\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"True\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2013-09-13\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1s9tU91VJt4sU5owi29GD3\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1vCWHaC5f2uS3yhpwWbIA6\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1vCWHaC5f2uS3yhpwWbIA6\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Avicii\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1vCWHaC5f2uS3yhpwWbIA6\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 255093,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"CH3131340084\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4RXpgGM7A4Hg7cFBoH5KyF\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4RXpgGM7A4Hg7cFBoH5KyF\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4RXpgGM7A4Hg7cFBoH5KyF\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Hey Brother\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 1,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4RXpgGM7A4Hg7cFBoH5KyF\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-08-05T05:51:44Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/034u8Qcs47NHkRQXaWkLXW\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/034u8Qcs47NHkRQXaWkLXW\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"034u8Qcs47NHkRQXaWkLXW\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"morgxn\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:034u8Qcs47NHkRQXaWkLXW\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/45E35VKMcXbiuRYUR5MTxJ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/45E35VKMcXbiuRYUR5MTxJ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"45E35VKMcXbiuRYUR5MTxJ\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273921eb1f071455485da11f8db\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02921eb1f071455485da11f8db\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851921eb1f071455485da11f8db\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"A New Way\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-05-17\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:45E35VKMcXbiuRYUR5MTxJ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/034u8Qcs47NHkRQXaWkLXW\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/034u8Qcs47NHkRQXaWkLXW\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"034u8Qcs47NHkRQXaWkLXW\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"morgxn\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:034u8Qcs47NHkRQXaWkLXW\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 196754,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USHR11939182\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0qfFhl3d2x5ttzIxWggvNg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0qfFhl3d2x5ttzIxWggvNg\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0qfFhl3d2x5ttzIxWggvNg\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"A New Way\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 32,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/fa10e1a6f63f17cd795029460fb2aa07acb99f2a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0qfFhl3d2x5ttzIxWggvNg\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-08-01T13:26:36Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0KEfVBmICmpC27KeKeV08K\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0KEfVBmICmpC27KeKeV08K\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0KEfVBmICmpC27KeKeV08K\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Paper Jackets\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0KEfVBmICmpC27KeKeV08K\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/36ybMD8eRmejs0kpefro93\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/36ybMD8eRmejs0kpefro93\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"36ybMD8eRmejs0kpefro93\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27303df1aaad234c7d7aa202ce0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0203df1aaad234c7d7aa202ce0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485103df1aaad234c7d7aa202ce0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Don't Lose Your Head\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-08-03\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 8,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:36ybMD8eRmejs0kpefro93\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0KEfVBmICmpC27KeKeV08K\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0KEfVBmICmpC27KeKeV08K\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0KEfVBmICmpC27KeKeV08K\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Paper Jackets\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0KEfVBmICmpC27KeKeV08K\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 208567,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADS1840015\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2QY3d6r7PfluaDJYtbETkh\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2QY3d6r7PfluaDJYtbETkh\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2QY3d6r7PfluaDJYtbETkh\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Girl\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 36,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/89a0f973e31702c9da1b023a4eb3d319f41d506b?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2QY3d6r7PfluaDJYtbETkh\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-07-26T16:33:50Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2mgl6HmStFhjJciWKpStup\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2mgl6HmStFhjJciWKpStup\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2mgl6HmStFhjJciWKpStup\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Dutchkid\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2mgl6HmStFhjJciWKpStup\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/68a8K99rqAlubPePsBjHxm\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/68a8K99rqAlubPePsBjHxm\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"68a8K99rqAlubPePsBjHxm\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b2d7d95377a3380254e8c6c0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b2d7d95377a3380254e8c6c0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b2d7d95377a3380254e8c6c0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Empires\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-08-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 8,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:68a8K99rqAlubPePsBjHxm\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2mgl6HmStFhjJciWKpStup\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2mgl6HmStFhjJciWKpStup\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2mgl6HmStFhjJciWKpStup\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Dutchkid\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2mgl6HmStFhjJciWKpStup\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 189466,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"GBKPL1814686\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/7siEGnU61iBn4AioflKyBu\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/7siEGnU61iBn4AioflKyBu\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"7siEGnU61iBn4AioflKyBu\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Wildflower\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 17,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:7siEGnU61iBn4AioflKyBu\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-07-22T14:10:41Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0jPw7eDzfyS83287e4nrDf\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0jPw7eDzfyS83287e4nrDf\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0jPw7eDzfyS83287e4nrDf\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"All the Rest\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0jPw7eDzfyS83287e4nrDf\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/36X9dU6oWFWBPIfP97wP3v\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/36X9dU6oWFWBPIfP97wP3v\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"36X9dU6oWFWBPIfP97wP3v\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273e5a331c1bfb9fd6e5dc58567\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02e5a331c1bfb9fd6e5dc58567\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851e5a331c1bfb9fd6e5dc58567\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ghost Heart\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-10-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:36X9dU6oWFWBPIfP97wP3v\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0jPw7eDzfyS83287e4nrDf\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0jPw7eDzfyS83287e4nrDf\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0jPw7eDzfyS83287e4nrDf\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"All the Rest\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0jPw7eDzfyS83287e4nrDf\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 181754,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ9JZ1768736\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/19417ZwRbnmKOEniOebekx\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/19417ZwRbnmKOEniOebekx\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"19417ZwRbnmKOEniOebekx\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Ghost Heart\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 14,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/dd2101ab7afe331ce22a054a1cf73b86e5821b86?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:19417ZwRbnmKOEniOebekx\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-07-16T17:46:54Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7eeVgpwUPqZaaDUnRE0B6j\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7eeVgpwUPqZaaDUnRE0B6j\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7eeVgpwUPqZaaDUnRE0B6j\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Nicolas McCoppin\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7eeVgpwUPqZaaDUnRE0B6j\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/34nOEF9RDJAtBNQSujR5e4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/34nOEF9RDJAtBNQSujR5e4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"34nOEF9RDJAtBNQSujR5e4\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273e522ca27962b3c5b95bdc866\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02e522ca27962b3c5b95bdc866\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851e522ca27962b3c5b95bdc866\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Stuck\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-05-31\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:34nOEF9RDJAtBNQSujR5e4\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7eeVgpwUPqZaaDUnRE0B6j\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7eeVgpwUPqZaaDUnRE0B6j\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7eeVgpwUPqZaaDUnRE0B6j\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Nicolas McCoppin\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7eeVgpwUPqZaaDUnRE0B6j\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 235702,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCAEE1932069\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6D4uwc2QvUpy9oagNWzsFb\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6D4uwc2QvUpy9oagNWzsFb\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6D4uwc2QvUpy9oagNWzsFb\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Stuck\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 2,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2e6ce18bf0090ffa8ecd63c926433b300f3acba3?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6D4uwc2QvUpy9oagNWzsFb\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-07-16T14:57:01Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0Lwn2PjwIw7QaoN7gHyqCA\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0Lwn2PjwIw7QaoN7gHyqCA\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0Lwn2PjwIw7QaoN7gHyqCA\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Wolf Saga\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0Lwn2PjwIw7QaoN7gHyqCA\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/010ItbEAaAuvk5gK09RMXE\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/010ItbEAaAuvk5gK09RMXE\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"010ItbEAaAuvk5gK09RMXE\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273744c8366570a455b74b45197\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02744c8366570a455b74b45197\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851744c8366570a455b74b45197\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Get Back\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-01-08\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:010ItbEAaAuvk5gK09RMXE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0Lwn2PjwIw7QaoN7gHyqCA\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0Lwn2PjwIw7QaoN7gHyqCA\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0Lwn2PjwIw7QaoN7gHyqCA\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Wolf Saga\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0Lwn2PjwIw7QaoN7gHyqCA\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 208661,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZES91838124\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6ACf6HIUyYd2pfXEYEr1Hw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6ACf6HIUyYd2pfXEYEr1Hw\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6ACf6HIUyYd2pfXEYEr1Hw\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Get Back\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 20,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/b6e404022d06dd869a32f2f4d9790425475cd835?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6ACf6HIUyYd2pfXEYEr1Hw\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-07-16T14:44:45Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4dOtX7sKkyguhRj1Gkvvl7\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4dOtX7sKkyguhRj1Gkvvl7\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4dOtX7sKkyguhRj1Gkvvl7\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Keelan Donovan\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4dOtX7sKkyguhRj1Gkvvl7\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3Xz1AIH2K450Sqp8mYkkJX\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3Xz1AIH2K450Sqp8mYkkJX\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3Xz1AIH2K450Sqp8mYkkJX\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732eee0c7af444fa1100f88eb9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022eee0c7af444fa1100f88eb9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512eee0c7af444fa1100f88eb9\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Like A Radio\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-07-27\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3Xz1AIH2K450Sqp8mYkkJX\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4dOtX7sKkyguhRj1Gkvvl7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4dOtX7sKkyguhRj1Gkvvl7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4dOtX7sKkyguhRj1Gkvvl7\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Keelan Donovan\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4dOtX7sKkyguhRj1Gkvvl7\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 166924,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMRY41800499\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5I6DrPfdkcTilavWVTd2Zi\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5I6DrPfdkcTilavWVTd2Zi\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5I6DrPfdkcTilavWVTd2Zi\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Like a Radio\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 41,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f58267750d738351f360c4bfec4b06dd3cbaaf8e?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5I6DrPfdkcTilavWVTd2Zi\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-07-16T13:52:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3sKeaby6GMSJWgYueZaSjE\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3sKeaby6GMSJWgYueZaSjE\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3sKeaby6GMSJWgYueZaSjE\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Mokita\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3sKeaby6GMSJWgYueZaSjE\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/75FQknIE9CKLj66rYEqoaD\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/75FQknIE9CKLj66rYEqoaD\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"75FQknIE9CKLj66rYEqoaD\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2731777e322253991f51d0bc59a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e021777e322253991f51d0bc59a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048511777e322253991f51d0bc59a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"London\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-12-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:75FQknIE9CKLj66rYEqoaD\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3sKeaby6GMSJWgYueZaSjE\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3sKeaby6GMSJWgYueZaSjE\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3sKeaby6GMSJWgYueZaSjE\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Mokita\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3sKeaby6GMSJWgYueZaSjE\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 160225,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"NLF711812901\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/38o5lj4mbLK34vQkJUlMrg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/38o5lj4mbLK34vQkJUlMrg\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"38o5lj4mbLK34vQkJUlMrg\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"London\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 65,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/63d5616a2b127b3b72a575a997273c4fd1385c61?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:38o5lj4mbLK34vQkJUlMrg\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-07-15T17:29:56Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2cXipohIfNJeAPn8rszq3C\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2cXipohIfNJeAPn8rszq3C\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2cXipohIfNJeAPn8rszq3C\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Convent Bonfires\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2cXipohIfNJeAPn8rszq3C\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/4S4pAyzDyoN1utgUuK12tN\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/4S4pAyzDyoN1utgUuK12tN\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4S4pAyzDyoN1utgUuK12tN\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2736723dbaca83201ca2266fa63\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e026723dbaca83201ca2266fa63\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048516723dbaca83201ca2266fa63\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Road Trip\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-02-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:4S4pAyzDyoN1utgUuK12tN\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2cXipohIfNJeAPn8rszq3C\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2cXipohIfNJeAPn8rszq3C\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2cXipohIfNJeAPn8rszq3C\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Convent Bonfires\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2cXipohIfNJeAPn8rszq3C\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 208695,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ22B2060281\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2ebFW2BotmFRVSRNPU7hg5\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2ebFW2BotmFRVSRNPU7hg5\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2ebFW2BotmFRVSRNPU7hg5\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Road Trip\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2ebFW2BotmFRVSRNPU7hg5\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-05-26T17:56:09Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5hPR4Atp3QY2ztiAcz1inl\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5hPR4Atp3QY2ztiAcz1inl\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5hPR4Atp3QY2ztiAcz1inl\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Morningsiders\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5hPR4Atp3QY2ztiAcz1inl\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3BLbo3jjlWMrZ6xm7OvkUn\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3BLbo3jjlWMrZ6xm7OvkUn\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3BLbo3jjlWMrZ6xm7OvkUn\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27352b97a24ec5fc31540905cbc\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0252b97a24ec5fc31540905cbc\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485152b97a24ec5fc31540905cbc\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ashes\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-04-20\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3BLbo3jjlWMrZ6xm7OvkUn\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5hPR4Atp3QY2ztiAcz1inl\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5hPR4Atp3QY2ztiAcz1inl\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5hPR4Atp3QY2ztiAcz1inl\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Morningsiders\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5hPR4Atp3QY2ztiAcz1inl\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 220418,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"TCADO1892984\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0WzzkH9DLoEBqw0XXyscOJ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0WzzkH9DLoEBqw0XXyscOJ\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0WzzkH9DLoEBqw0XXyscOJ\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Ashes\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0WzzkH9DLoEBqw0XXyscOJ\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-05-16T15:38:33Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3P0Mwmd23Ey01IfDlRRFfI\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3P0Mwmd23Ey01IfDlRRFfI\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3P0Mwmd23Ey01IfDlRRFfI\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Lafrantz\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3P0Mwmd23Ey01IfDlRRFfI\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3kF0UkU90oXImKkrcx3H5w\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3kF0UkU90oXImKkrcx3H5w\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3kF0UkU90oXImKkrcx3H5w\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273888b96d52ef0f81ca464b74a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02888b96d52ef0f81ca464b74a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851888b96d52ef0f81ca464b74a\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Backseat\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-02-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3kF0UkU90oXImKkrcx3H5w\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3P0Mwmd23Ey01IfDlRRFfI\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3P0Mwmd23Ey01IfDlRRFfI\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3P0Mwmd23Ey01IfDlRRFfI\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lafrantz\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3P0Mwmd23Ey01IfDlRRFfI\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 159558,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QZ8LD1969254\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2V44oohInzH6JQrWZrlQMP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2V44oohInzH6JQrWZrlQMP\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2V44oohInzH6JQrWZrlQMP\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Backseat\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 37,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ccef69e22a5bb2237d49799b7b24335f7dc5b26?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2V44oohInzH6JQrWZrlQMP\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-05-11T23:18:15Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6USv9qhCn6zfxlBQIYJ9qs\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6USv9qhCn6zfxlBQIYJ9qs\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6USv9qhCn6zfxlBQIYJ9qs\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Dominic Fike\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6USv9qhCn6zfxlBQIYJ9qs\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1DNx0H5ZX1ax3yyRwtgT4S\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1DNx0H5ZX1ax3yyRwtgT4S\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1DNx0H5ZX1ax3yyRwtgT4S\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2734a42166d927b3acce345c5c0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e024a42166d927b3acce345c5c0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048514a42166d927b3acce345c5c0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Don't Forget About Me, Demos\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-10-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1DNx0H5ZX1ax3yyRwtgT4S\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6USv9qhCn6zfxlBQIYJ9qs\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6USv9qhCn6zfxlBQIYJ9qs\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6USv9qhCn6zfxlBQIYJ9qs\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Dominic Fike\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6USv9qhCn6zfxlBQIYJ9qs\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 177666,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQX91802455\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1tNJrcVe6gwLEiZCtprs1u\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1tNJrcVe6gwLEiZCtprs1u\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1tNJrcVe6gwLEiZCtprs1u\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"3 Nights\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 74,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/276fc7b476d9711c8361fd3c3ccfd2156438f8de?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1tNJrcVe6gwLEiZCtprs1u\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-05-08T04:15:38Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4jrjgg3OqsSLL6JuyBXR0F\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4jrjgg3OqsSLL6JuyBXR0F\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4jrjgg3OqsSLL6JuyBXR0F\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Siine\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4jrjgg3OqsSLL6JuyBXR0F\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1HqeuDwhUZwiYuZxkIlI20\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1HqeuDwhUZwiYuZxkIlI20\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1HqeuDwhUZwiYuZxkIlI20\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273bab1e0f5f8bf4e2a5ae3e48c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02bab1e0f5f8bf4e2a5ae3e48c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851bab1e0f5f8bf4e2a5ae3e48c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"C'est La Vie\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-03-01\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 2,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1HqeuDwhUZwiYuZxkIlI20\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4jrjgg3OqsSLL6JuyBXR0F\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4jrjgg3OqsSLL6JuyBXR0F\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4jrjgg3OqsSLL6JuyBXR0F\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Siine\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4jrjgg3OqsSLL6JuyBXR0F\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7Dgb2lOrie0vyov3oeP4H0\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7Dgb2lOrie0vyov3oeP4H0\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7Dgb2lOrie0vyov3oeP4H0\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Frank Moody\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7Dgb2lOrie0vyov3oeP4H0\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 171375,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"SE5Q51900003\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6wQYKyGePaqstYov2C1S5b\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6wQYKyGePaqstYov2C1S5b\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6wQYKyGePaqstYov2C1S5b\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"C'est La Vie (Explicit Version)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 51,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/745495eb8bfe6b52df7552392e1ce2e683df4469?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6wQYKyGePaqstYov2C1S5b\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-05-08T02:39:57Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/25yYVLnp61fiR8n5rTdHmm\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/25yYVLnp61fiR8n5rTdHmm\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"25yYVLnp61fiR8n5rTdHmm\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Final State\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:25yYVLnp61fiR8n5rTdHmm\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3Gb1csppfZYWq6j0JOueLr\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3Gb1csppfZYWq6j0JOueLr\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3Gb1csppfZYWq6j0JOueLr\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2736d5fa90bc98a4afd8199802d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e026d5fa90bc98a4afd8199802d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048516d5fa90bc98a4afd8199802d\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Final State\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-23\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 14,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3Gb1csppfZYWq6j0JOueLr\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/25yYVLnp61fiR8n5rTdHmm\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/25yYVLnp61fiR8n5rTdHmm\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"25yYVLnp61fiR8n5rTdHmm\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Final State\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:25yYVLnp61fiR8n5rTdHmm\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 188493,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"CAUM81700191\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3phrxvrB2H46HVe802apMV\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3phrxvrB2H46HVe802apMV\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3phrxvrB2H46HVe802apMV\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Voices\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 10,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3phrxvrB2H46HVe802apMV\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-05-07T21:59:02Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5H6xmHXjsq98NLbEjuE29f\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5H6xmHXjsq98NLbEjuE29f\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5H6xmHXjsq98NLbEjuE29f\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"NEIKED\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5H6xmHXjsq98NLbEjuE29f\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7fKv6tb6sTdh3pMkbvpXm2\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7fKv6tb6sTdh3pMkbvpXm2\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7fKv6tb6sTdh3pMkbvpXm2\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27394b7f641171055da959a2de1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0294b7f641171055da959a2de1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485194b7f641171055da959a2de1\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Best Of Hard Drive\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-03-29\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7fKv6tb6sTdh3pMkbvpXm2\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5H6xmHXjsq98NLbEjuE29f\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5H6xmHXjsq98NLbEjuE29f\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5H6xmHXjsq98NLbEjuE29f\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"NEIKED\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5H6xmHXjsq98NLbEjuE29f\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6sXDsB4h2hPUWIFk3XF5v3\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6sXDsB4h2hPUWIFk3XF5v3\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6sXDsB4h2hPUWIFk3XF5v3\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Nirob Islam\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6sXDsB4h2hPUWIFk3XF5v3\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 184427,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMUY41800092\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5Edva5pQylwpWB78BBxoLZ\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5Edva5pQylwpWB78BBxoLZ\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5Edva5pQylwpWB78BBxoLZ\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Old School Love\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 38,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/dec7e94a1cc47933651e86d82c29ddf251fee775?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5Edva5pQylwpWB78BBxoLZ\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-05-01T19:04:17Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0NQYbrCaGSmlf1u6Xs8Zix\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0NQYbrCaGSmlf1u6Xs8Zix\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0NQYbrCaGSmlf1u6Xs8Zix\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Animal Island\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0NQYbrCaGSmlf1u6Xs8Zix\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/635S8gZ7ArPCKFcT3TnNc1\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/635S8gZ7ArPCKFcT3TnNc1\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"635S8gZ7ArPCKFcT3TnNc1\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27384c540dda7420ed5dd4438d2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0284c540dda7420ed5dd4438d2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485184c540dda7420ed5dd4438d2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Animalistic\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-05-04\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 7,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:635S8gZ7ArPCKFcT3TnNc1\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0NQYbrCaGSmlf1u6Xs8Zix\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0NQYbrCaGSmlf1u6Xs8Zix\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0NQYbrCaGSmlf1u6Xs8Zix\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Animal Island\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0NQYbrCaGSmlf1u6Xs8Zix\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 200120,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US43C1608487\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3KVwffKh13tBhh1EuoaIxI\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3KVwffKh13tBhh1EuoaIxI\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3KVwffKh13tBhh1EuoaIxI\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Gimme That Sunshine\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3KVwffKh13tBhh1EuoaIxI\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-04-16T00:26:25Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/20JZFwl6HVl6yg8a4H3ZqK\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/20JZFwl6HVl6yg8a4H3ZqK\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"20JZFwl6HVl6yg8a4H3ZqK\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Panic! At The Disco\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:20JZFwl6HVl6yg8a4H3ZqK\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6ApYSpXF8GxZAgBTHDzYge\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6ApYSpXF8GxZAgBTHDzYge\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6ApYSpXF8GxZAgBTHDzYge\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c5148520a59be191eea16989\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c5148520a59be191eea16989\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c5148520a59be191eea16989\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Pray for the Wicked\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-06-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 11,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6ApYSpXF8GxZAgBTHDzYge\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/20JZFwl6HVl6yg8a4H3ZqK\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/20JZFwl6HVl6yg8a4H3ZqK\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"20JZFwl6HVl6yg8a4H3ZqK\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Panic! At The Disco\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:20JZFwl6HVl6yg8a4H3ZqK\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 169666,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21801173\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/22oEJW6r2rMb9z4IntfyEa\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/22oEJW6r2rMb9z4IntfyEa\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"22oEJW6r2rMb9z4IntfyEa\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Hey Look Ma, I Made It\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 68,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/21b47134de4e98a0373195320a306020eb6bbba5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:22oEJW6r2rMb9z4IntfyEa\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-04-13T21:01:08Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5WUlDfRSoLAfcVSX1WnrxN\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5WUlDfRSoLAfcVSX1WnrxN\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5WUlDfRSoLAfcVSX1WnrxN\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Sia\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5fMUXHkw8R8eOP2RNVYEZX\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5fMUXHkw8R8eOP2RNVYEZX\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5fMUXHkw8R8eOP2RNVYEZX\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Diplo\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5fMUXHkw8R8eOP2RNVYEZX\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2feDdbD5araYcm6JhFHHw7\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2feDdbD5araYcm6JhFHHw7\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"2feDdbD5araYcm6JhFHHw7\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Labrinth\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2feDdbD5araYcm6JhFHHw7\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/53xHggSRIfHec0bA1oyReb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/53xHggSRIfHec0bA1oyReb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"53xHggSRIfHec0bA1oyReb\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2738dc45578c53241f47be7dfb6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e028dc45578c53241f47be7dfb6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048518dc45578c53241f47be7dfb6\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"No New Friends\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-03-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 6,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:53xHggSRIfHec0bA1oyReb\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5WUlDfRSoLAfcVSX1WnrxN\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5WUlDfRSoLAfcVSX1WnrxN\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5WUlDfRSoLAfcVSX1WnrxN\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Sia\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5WUlDfRSoLAfcVSX1WnrxN\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5fMUXHkw8R8eOP2RNVYEZX\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5fMUXHkw8R8eOP2RNVYEZX\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5fMUXHkw8R8eOP2RNVYEZX\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Diplo\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5fMUXHkw8R8eOP2RNVYEZX\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/2feDdbD5araYcm6JhFHHw7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/2feDdbD5araYcm6JhFHHw7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2feDdbD5araYcm6JhFHHw7\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Labrinth\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:2feDdbD5araYcm6JhFHHw7\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6IZ4ctovY9dl7bgHClAvKJ\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6IZ4ctovY9dl7bgHClAvKJ\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6IZ4ctovY9dl7bgHClAvKJ\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"LSD\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6IZ4ctovY9dl7bgHClAvKJ\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 175823,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USQX91801534\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3Y7a0typ6ik1KscmebXd6D\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3Y7a0typ6ik1KscmebXd6D\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3Y7a0typ6ik1KscmebXd6D\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"No New Friends\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3Y7a0typ6ik1KscmebXd6D\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-03-14T17:08:09Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5TgQ66WuWkoQ2xYxaSTnVP\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Netsky\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7vpee3EK774748ieWc7E76\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7vpee3EK774748ieWc7E76\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7vpee3EK774748ieWc7E76\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27349f151e90965888b0d133a64\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0249f151e90965888b0d133a64\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485149f151e90965888b0d133a64\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"I Don’t Even Know You Anymore\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2019-02-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7vpee3EK774748ieWc7E76\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5TgQ66WuWkoQ2xYxaSTnVP\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5TgQ66WuWkoQ2xYxaSTnVP\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5TgQ66WuWkoQ2xYxaSTnVP\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Netsky\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4GvEc3ANtPPjt1ZJllr5Zl\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4GvEc3ANtPPjt1ZJllr5Zl\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4GvEc3ANtPPjt1ZJllr5Zl\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bazzi\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4GvEc3ANtPPjt1ZJllr5Zl\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/55Aa2cqylxrFIXC767Z865\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/55Aa2cqylxrFIXC767Z865\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"55Aa2cqylxrFIXC767Z865\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Lil Wayne\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:55Aa2cqylxrFIXC767Z865\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 167600,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USUG11900322\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5pzeevBDvU6GVXqUKoiYDX\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5pzeevBDvU6GVXqUKoiYDX\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5pzeevBDvU6GVXqUKoiYDX\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"I Don’t Even Know You Anymore (feat. Bazzi & Lil Wayne)\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 49,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/6c872fd400b8be0253901d9ed93d71de1030f9cc?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5pzeevBDvU6GVXqUKoiYDX\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-02-13T19:04:08Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Saint Motel\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/43URJ507cdoIRy3GJdfxjs\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/43URJ507cdoIRy3GJdfxjs\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"43URJ507cdoIRy3GJdfxjs\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27325dd1a3969c0912291b6fc7b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0225dd1a3969c0912291b6fc7b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485125dd1a3969c0912291b6fc7b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"saintmotelevision\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-10-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:43URJ507cdoIRy3GJdfxjs\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Saint Motel\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 192040,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21602338\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6kcHg7XL6SKyPNd78daRBL\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6kcHg7XL6SKyPNd78daRBL\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6kcHg7XL6SKyPNd78daRBL\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Sweet Talk\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 65,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/1cfca825fe6808acbbd255e652ad3466203d5f1f?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6kcHg7XL6SKyPNd78daRBL\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-02-13T19:04:04Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Saint Motel\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/43URJ507cdoIRy3GJdfxjs\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/43URJ507cdoIRy3GJdfxjs\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"43URJ507cdoIRy3GJdfxjs\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27325dd1a3969c0912291b6fc7b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0225dd1a3969c0912291b6fc7b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485125dd1a3969c0912291b6fc7b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"saintmotelevision\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-10-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:43URJ507cdoIRy3GJdfxjs\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Saint Motel\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 203333,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21602340\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6i40XRqEwHAnSxwZWasMRp\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6i40XRqEwHAnSxwZWasMRp\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6i40XRqEwHAnSxwZWasMRp\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"For Elise\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 58,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/56104659f0812fa8fde570bcdbe7b8f8ed43afa1?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 7,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6i40XRqEwHAnSxwZWasMRp\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-02-13T19:04:01Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Saint Motel\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/43URJ507cdoIRy3GJdfxjs\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/43URJ507cdoIRy3GJdfxjs\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"43URJ507cdoIRy3GJdfxjs\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27325dd1a3969c0912291b6fc7b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0225dd1a3969c0912291b6fc7b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485125dd1a3969c0912291b6fc7b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"saintmotelevision\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-10-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 10,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:43URJ507cdoIRy3GJdfxjs\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1dWEYMPtNmvSVaDNLgB6NV\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Saint Motel\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1dWEYMPtNmvSVaDNLgB6NV\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 187893,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21601952\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4vuJuTLFomqItDrn482nzV\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4vuJuTLFomqItDrn482nzV\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4vuJuTLFomqItDrn482nzV\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Move\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 54,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/e0e762d27a92ba1d3158833d5a943ae22d79dd60?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4vuJuTLFomqItDrn482nzV\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-02-06T05:04:55Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"flor\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3GIL4DPTpx8qXKmCVavrjD\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3GIL4DPTpx8qXKmCVavrjD\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3GIL4DPTpx8qXKmCVavrjD\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b7f72643bf8a029abeacc5dd\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b7f72643bf8a029abeacc5dd\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b7f72643bf8a029abeacc5dd\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"come out. you're hiding (deluxe)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-02-02\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 13,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3GIL4DPTpx8qXKmCVavrjD\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0szWPxzzE8DVEfXFRCLBUb\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"flor\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0szWPxzzE8DVEfXFRCLBUb\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 201398,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"USAT21705462\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1J5rHMEvQFpM07iLULi48A\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1J5rHMEvQFpM07iLULi48A\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1J5rHMEvQFpM07iLULi48A\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"back again\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 48,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/f4a366615b545d8d6d50bffa2475fbdaba1a8307?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1J5rHMEvQFpM07iLULi48A\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-02-06T04:50:20Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4KJ6jujcNPzOyhdNoiNftp\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4KJ6jujcNPzOyhdNoiNftp\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"4KJ6jujcNPzOyhdNoiNftp\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"lovelytheband\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4KJ6jujcNPzOyhdNoiNftp\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2AbPwLvpR0FwpqGt4ZY1q4\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2AbPwLvpR0FwpqGt4ZY1q4\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2AbPwLvpR0FwpqGt4ZY1q4\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b27385ea5f82c855acb4476b046c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e0285ea5f82c855acb4476b046c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000485185ea5f82c855acb4476b046c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"finding it hard to smile\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-08-03\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 16,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2AbPwLvpR0FwpqGt4ZY1q4\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4KJ6jujcNPzOyhdNoiNftp\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4KJ6jujcNPzOyhdNoiNftp\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4KJ6jujcNPzOyhdNoiNftp\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"lovelytheband\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4KJ6jujcNPzOyhdNoiNftp\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 230857,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"US4E41746603\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/4hTApLB99sWDeb1RPsrSye\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/4hTApLB99sWDeb1RPsrSye\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4hTApLB99sWDeb1RPsrSye\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"make you feel pretty\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 51,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/7b0a4e36530eef2ebcc5f75b693114df6e1bfb54?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:4hTApLB99sWDeb1RPsrSye\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-01-29T13:01:49Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/6hpiZXzsZxlkTXY8zavu3N\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/6hpiZXzsZxlkTXY8zavu3N\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6hpiZXzsZxlkTXY8zavu3N\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2731483b91370f7c40e74ea3f1c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e021483b91370f7c40e74ea3f1c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048511483b91370f7c40e74ea3f1c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Click\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-06-09\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 13,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:6hpiZXzsZxlkTXY8zavu3N\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/4LAz9VRX8Nat9kvIzgkg2v\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/4LAz9VRX8Nat9kvIzgkg2v\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"4LAz9VRX8Nat9kvIzgkg2v\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Rivers Cuomo\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:4LAz9VRX8Nat9kvIzgkg2v\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 218763,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMRSZ1701240\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2QCndYqRherBtKjBpyySC6\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2QCndYqRherBtKjBpyySC6\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2QCndYqRherBtKjBpyySC6\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Sober Up\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2QCndYqRherBtKjBpyySC6\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2019-01-21T22:58:40Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1NZBzIrSV5yca91Su4i1MC\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1NZBzIrSV5yca91Su4i1MC\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1NZBzIrSV5yca91Su4i1MC\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273e7c12faa0fad19dbf84c087f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02e7c12faa0fad19dbf84c087f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851e7c12faa0fad19dbf84c087f\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"The Click (Deluxe Edition)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-09-21\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 17,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1NZBzIrSV5yca91Su4i1MC\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6s22t5Y3prQHyaHWUN1R1C\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"AJR\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6s22t5Y3prQHyaHWUN1R1C\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 212689,\\\\n      \\\\\\\"explicit\\\\\\\" : true,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"QMRSZ1800412\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0j7pdNXDzEVQST5Zcoh5xo\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0j7pdNXDzEVQST5Zcoh5xo\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0j7pdNXDzEVQST5Zcoh5xo\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Burn the House Down\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 14,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0j7pdNXDzEVQST5Zcoh5xo\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-12-31T21:08:37Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6TIiYZ4vJLMdaekpybw759\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6TIiYZ4vJLMdaekpybw759\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6TIiYZ4vJLMdaekpybw759\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Nicolas Monier\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6TIiYZ4vJLMdaekpybw759\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7hfdp6Fj813F1OXzy979gr\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7hfdp6Fj813F1OXzy979gr\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"7hfdp6Fj813F1OXzy979gr\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Tyve\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7hfdp6Fj813F1OXzy979gr\\\\\\\"\\\\n        }, {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6t8VAB5OTHKxi4p1I5aqn0\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6t8VAB5OTHKxi4p1I5aqn0\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6t8VAB5OTHKxi4p1I5aqn0\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Duane Harden\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6t8VAB5OTHKxi4p1I5aqn0\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2keyQsiEXVDzUQmlPXadxs\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2keyQsiEXVDzUQmlPXadxs\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2keyQsiEXVDzUQmlPXadxs\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273b97d3023cbab85c140edd956\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02b97d3023cbab85c140edd956\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851b97d3023cbab85c140edd956\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Your Heart\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-11-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2keyQsiEXVDzUQmlPXadxs\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6TIiYZ4vJLMdaekpybw759\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6TIiYZ4vJLMdaekpybw759\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6TIiYZ4vJLMdaekpybw759\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Nicolas Monier\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6TIiYZ4vJLMdaekpybw759\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/7hfdp6Fj813F1OXzy979gr\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/7hfdp6Fj813F1OXzy979gr\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7hfdp6Fj813F1OXzy979gr\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Tyve\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:7hfdp6Fj813F1OXzy979gr\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6t8VAB5OTHKxi4p1I5aqn0\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6t8VAB5OTHKxi4p1I5aqn0\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6t8VAB5OTHKxi4p1I5aqn0\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Duane Harden\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6t8VAB5OTHKxi4p1I5aqn0\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 193844,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRX201801479\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1FUH1XmBoqogqrH3ik9mlk\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1FUH1XmBoqogqrH3ik9mlk\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1FUH1XmBoqogqrH3ik9mlk\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Your Heart\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 10,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/4f904fb4741814246d4b80d1b829b4083a9d34bc?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1FUH1XmBoqogqrH3ik9mlk\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-12-12T01:27:39Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1ZrBGJWLL8NiAjgNifCy90\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1ZrBGJWLL8NiAjgNifCy90\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"1ZrBGJWLL8NiAjgNifCy90\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Smith & Thell\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1ZrBGJWLL8NiAjgNifCy90\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0yQU93IUCUa1qUDV5JUQub\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0yQU93IUCUa1qUDV5JUQub\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0yQU93IUCUa1qUDV5JUQub\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273c24cbd6111fad8fcffe9da87\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02c24cbd6111fad8fcffe9da87\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851c24cbd6111fad8fcffe9da87\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Telephone Wires\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-11-16\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 4,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0yQU93IUCUa1qUDV5JUQub\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/1ZrBGJWLL8NiAjgNifCy90\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/1ZrBGJWLL8NiAjgNifCy90\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1ZrBGJWLL8NiAjgNifCy90\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Smith & Thell\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:1ZrBGJWLL8NiAjgNifCy90\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/599aGczoZFptUe5tbS43LT\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/599aGczoZFptUe5tbS43LT\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"599aGczoZFptUe5tbS43LT\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Swedish Jam Factory\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:599aGczoZFptUe5tbS43LT\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 216000,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"SEVJH1801401\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/73VW0CYIIx6xRuy4JdoXUV\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/73VW0CYIIx6xRuy4JdoXUV\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"73VW0CYIIx6xRuy4JdoXUV\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Forgive Me Friend\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 0,\\\\n      \\\\\\\"preview_url\\\\\\\" : null,\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:73VW0CYIIx6xRuy4JdoXUV\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 192320,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700674\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/5OT3k9lPxI2jkaryRK3Aop\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/5OT3k9lPxI2jkaryRK3Aop\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5OT3k9lPxI2jkaryRK3Aop\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 30,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/677aa797886ff024d0146caac105f07181c38e28?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:5OT3k9lPxI2jkaryRK3Aop\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 167133,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700677\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2lHt9MjX1PIngI9hRMWctV\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2lHt9MjX1PIngI9hRMWctV\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2lHt9MjX1PIngI9hRMWctV\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Marathonien\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 14,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/be4fbb695cf2f880cbd676b7663e398f79ed6142?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2lHt9MjX1PIngI9hRMWctV\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 201773,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700666\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2duiiwbjLDLgwb01h7PQZL\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2duiiwbjLDLgwb01h7PQZL\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2duiiwbjLDLgwb01h7PQZL\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Feu de joie\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 34,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/8f8c9d3711318c3c96693de8f4415e8fa0fa23b5?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 4,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2duiiwbjLDLgwb01h7PQZL\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 160640,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700675\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/74zQLTpjJunYc581p5ttvL\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/74zQLTpjJunYc581p5ttvL\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"74zQLTpjJunYc581p5ttvL\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Le destin\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 22,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/de34a28479e758e344ac3aebceb200419fe4f8e2?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:74zQLTpjJunYc581p5ttvL\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 223346,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700673\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Le complexe du sédentaire\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 13,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/275c5d813a7bd33b591b42eedc60b0ee8d94769a?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 6,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:0xGq3AxXQ37kNyPWs1ZaaC\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      }, {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Alexandre Tharaud\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5HG9Eg7Ik8ZuNtMyGYTxLG\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 212613,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700669\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2f8liGstQEoGBYt3WVYjai\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2f8liGstQEoGBYt3WVYjai\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2f8liGstQEoGBYt3WVYjai\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Chevaliers sans armure\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 10,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/481411d87c780b9d816cd4e058089528ff43eb24?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 7,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2f8liGstQEoGBYt3WVYjai\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 181733,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700670\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6lPA3QqB01CLcnqV42DD4Q\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6lPA3QqB01CLcnqV42DD4Q\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6lPA3QqB01CLcnqV42DD4Q\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Brève et approximative histoire de France\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 11,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/ca375aebe26df1c0546fe93358c2e95d85fa8331?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 8,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6lPA3QqB01CLcnqV42DD4Q\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 164013,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700668\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/1JQumD4c7FDb3vSTFo0oOP\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/1JQumD4c7FDb3vSTFo0oOP\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"1JQumD4c7FDb3vSTFo0oOP\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Chauffard\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 15,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0e32131489afa39e7bc51bd006b1053563fe31bb?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 9,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:1JQumD4c7FDb3vSTFo0oOP\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 232973,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700678\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3IDuQtOCwdjoXbc5NHpKWO\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3IDuQtOCwdjoXbc5NHpKWO\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3IDuQtOCwdjoXbc5NHpKWO\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"On jouait fort\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 13,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/aae01ad0b077efd4755f1bf63c3b43f25e6be3ea?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 10,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3IDuQtOCwdjoXbc5NHpKWO\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 156560,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700676\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Le jeune vigile\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 21,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/0b17c2e30faaa317a346083055c77e6e04f37095?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 11,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:2DqoNJ2S7ouf1vMIhBeiw6\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-10-01T21:34:11Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 191106,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700667\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3vJMKb6aBbeznmOTONNonv\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3vJMKb6aBbeznmOTONNonv\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3vJMKb6aBbeznmOTONNonv\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Ça ne sert à rien une chanson\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 13,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/010712eb44e3412e4dc42623dc87bc602ef398ae?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 12,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3vJMKb6aBbeznmOTONNonv\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-09-04T01:21:34Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6AsX53NZ0rVrVnlKLy1KvR\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6AsX53NZ0rVrVnlKLy1KvR\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6AsX53NZ0rVrVnlKLy1KvR\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Arcadian\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6AsX53NZ0rVrVnlKLy1KvR\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/1jgiUPEo18utFWFYYQMgqE\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/1jgiUPEo18utFWFYYQMgqE\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"1jgiUPEo18utFWFYYQMgqE\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2731f6ccbcaa36cf2e45641aa9c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e021f6ccbcaa36cf2e45641aa9c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048511f6ccbcaa36cf2e45641aa9c\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Arcadian (Deluxe)\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-11-03\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 15,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:1jgiUPEo18utFWFYYQMgqE\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6AsX53NZ0rVrVnlKLy1KvR\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6AsX53NZ0rVrVnlKLy1KvR\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6AsX53NZ0rVrVnlKLy1KvR\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Arcadian\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6AsX53NZ0rVrVnlKLy1KvR\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 181906,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRUM71701784\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6N8KWeoZKhUzM0vq7P6ilu\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6N8KWeoZKhUzM0vq7P6ilu\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6N8KWeoZKhUzM0vq7P6ilu\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Où je serai demain\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 32,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/dd3bc2f032e7ca8f8ff2bfb2bc3c9b11ac9680e7?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 13,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6N8KWeoZKhUzM0vq7P6ilu\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-09-03T03:51:48Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3VI6nyKdPVIBxorjS5rYNd\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3VI6nyKdPVIBxorjS5rYNd\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"3VI6nyKdPVIBxorjS5rYNd\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Rose\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3VI6nyKdPVIBxorjS5rYNd\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3ACdkFZ2IR9cXqeqWMz2V7\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3ACdkFZ2IR9cXqeqWMz2V7\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3ACdkFZ2IR9cXqeqWMz2V7\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273856c9f18b3d81b30a1ba0ab0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02856c9f18b3d81b30a1ba0ab0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851856c9f18b3d81b30a1ba0ab0\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Rose\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2006-09-22\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3ACdkFZ2IR9cXqeqWMz2V7\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/3VI6nyKdPVIBxorjS5rYNd\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/3VI6nyKdPVIBxorjS5rYNd\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3VI6nyKdPVIBxorjS5rYNd\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Rose\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:3VI6nyKdPVIBxorjS5rYNd\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 214693,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ110600729\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/3jPCKU1tGMcKtAn7a9k9GW\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/3jPCKU1tGMcKtAn7a9k9GW\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"3jPCKU1tGMcKtAn7a9k9GW\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Sombre con\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 39,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/bc657a144b9ec0f7c15cc8c304f72a901b44e33c?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 3,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:3jPCKU1tGMcKtAn7a9k9GW\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-09-03T03:49:52Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0Ntl0oWMPWfBOoi9Qcr9ht\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0Ntl0oWMPWfBOoi9Qcr9ht\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"0Ntl0oWMPWfBOoi9Qcr9ht\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Vitaa\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0Ntl0oWMPWfBOoi9Qcr9ht\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/0ip3KdPCOLscbVc5nxd59d\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/0ip3KdPCOLscbVc5nxd59d\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0ip3KdPCOLscbVc5nxd59d\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273024fc22764f302db65727549\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02024fc22764f302db65727549\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851024fc22764f302db65727549\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"J4m\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-05-12\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 14,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:0ip3KdPCOLscbVc5nxd59d\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/0Ntl0oWMPWfBOoi9Qcr9ht\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/0Ntl0oWMPWfBOoi9Qcr9ht\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"0Ntl0oWMPWfBOoi9Qcr9ht\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Vitaa\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:0Ntl0oWMPWfBOoi9Qcr9ht\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 198906,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FR8FB1800120\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/16JxWw8e5L3XbS2ZcC7yE9\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/16JxWw8e5L3XbS2ZcC7yE9\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"16JxWw8e5L3XbS2ZcC7yE9\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Tu me laisseras\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 30,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/7e9e8f91ef08559c5af147fbda5f91248b557dbe?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 5,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:16JxWw8e5L3XbS2ZcC7yE9\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-08-31T14:16:51Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"3lS0CjrHiEV6MGOO6UHWyw\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512ae38c722e85ef7c93794b04\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Le Début de la suite\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2018-03-30\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 12,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:3lS0CjrHiEV6MGOO6UHWyw\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Bénabar\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6xoAWsIOZxJVPpo7Qvqaqv\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 156760,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700672\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/6u97T4uPZPLKVStNy5qg8u\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/6u97T4uPZPLKVStNy5qg8u\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6u97T4uPZPLKVStNy5qg8u\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"La petite vendeuse\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 37,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/2ae3fe10dd5eb470d118d6d5c73374e28eb4e049?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 2,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:6u97T4uPZPLKVStNy5qg8u\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-08-12T20:03:56Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6jStlKLflTMUN6BajxrNlj\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6jStlKLflTMUN6BajxrNlj\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"6jStlKLflTMUN6BajxrNlj\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Julien Doré\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6jStlKLflTMUN6BajxrNlj\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/2JIk3csX6RdYMCmpyStgVj\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/2JIk3csX6RdYMCmpyStgVj\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"2JIk3csX6RdYMCmpyStgVj\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b273a2f937008fdbc041a5cbbc9b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e02a2f937008fdbc041a5cbbc9b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00004851a2f937008fdbc041a5cbbc9b\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"&\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2016-10-14\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 13,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:2JIk3csX6RdYMCmpyStgVj\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/6jStlKLflTMUN6BajxrNlj\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/6jStlKLflTMUN6BajxrNlj\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"6jStlKLflTMUN6BajxrNlj\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Julien Doré\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:6jStlKLflTMUN6BajxrNlj\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 220266,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ081600162\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/46PIncJ42Zirjj01wSru2y\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/46PIncJ42Zirjj01wSru2y\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"46PIncJ42Zirjj01wSru2y\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Porto-Vecchio\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 46,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/434c4ea5dae065fb14b8f6a6919d8ac09adee9f2?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:46PIncJ42Zirjj01wSru2y\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2018-07-14T16:50:52Z\\\\\\\",\\\\n    \\\\\\\"track\\\\\\\" : {\\\\n      \\\\\\\"album\\\\\\\" : {\\\\n        \\\\\\\"album_type\\\\\\\" : \\\\\\\"single\\\\\\\",\\\\n        \\\\\\\"artists\\\\\\\" : [ {\\\\n          \\\\\\\"external_urls\\\\\\\" : {\\\\n            \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5ylOD196qui8JgXBrQUzok\\\\\\\"\\\\n          },\\\\n          \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5ylOD196qui8JgXBrQUzok\\\\\\\",\\\\n          \\\\\\\"id\\\\\\\" : \\\\\\\"5ylOD196qui8JgXBrQUzok\\\\\\\",\\\\n          \\\\\\\"name\\\\\\\" : \\\\\\\"Kyo\\\\\\\",\\\\n          \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n          \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5ylOD196qui8JgXBrQUzok\\\\\\\"\\\\n        } ],\\\\n        \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/album/7iZOxh5dkYbsuelZPSpqig\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/albums/7iZOxh5dkYbsuelZPSpqig\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"7iZOxh5dkYbsuelZPSpqig\\\\\\\",\\\\n        \\\\\\\"images\\\\\\\" : [ {\\\\n          \\\\\\\"height\\\\\\\" : 640,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d0000b2732e8ecce8bebe95789bcd3de2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 640\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 300,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d00001e022e8ecce8bebe95789bcd3de2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 300\\\\n        }, {\\\\n          \\\\\\\"height\\\\\\\" : 64,\\\\n          \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67616d000048512e8ecce8bebe95789bcd3de2\\\\\\\",\\\\n          \\\\\\\"width\\\\\\\" : 64\\\\n        } ],\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Ton mec\\\\\\\",\\\\n        \\\\\\\"release_date\\\\\\\" : \\\\\\\"2017-09-15\\\\\\\",\\\\n        \\\\\\\"release_date_precision\\\\\\\" : \\\\\\\"day\\\\\\\",\\\\n        \\\\\\\"total_tracks\\\\\\\" : 1,\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"album\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:album:7iZOxh5dkYbsuelZPSpqig\\\\\\\"\\\\n      },\\\\n      \\\\\\\"artists\\\\\\\" : [ {\\\\n        \\\\\\\"external_urls\\\\\\\" : {\\\\n          \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/artist/5ylOD196qui8JgXBrQUzok\\\\\\\"\\\\n        },\\\\n        \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/artists/5ylOD196qui8JgXBrQUzok\\\\\\\",\\\\n        \\\\\\\"id\\\\\\\" : \\\\\\\"5ylOD196qui8JgXBrQUzok\\\\\\\",\\\\n        \\\\\\\"name\\\\\\\" : \\\\\\\"Kyo\\\\\\\",\\\\n        \\\\\\\"type\\\\\\\" : \\\\\\\"artist\\\\\\\",\\\\n        \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:artist:5ylOD196qui8JgXBrQUzok\\\\\\\"\\\\n      } ],\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BD\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BY\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CD\\\\\\\", \\\\\\\"CG\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IQ\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KG\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"KZ\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LK\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"LY\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MD\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PK\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TJ\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"UG\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VE\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"disc_number\\\\\\\" : 1,\\\\n      \\\\\\\"duration_ms\\\\\\\" : 183613,\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_ids\\\\\\\" : {\\\\n        \\\\\\\"isrc\\\\\\\" : \\\\\\\"FRZ051700606\\\\\\\"\\\\n      },\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/track/67SiiKWtMJYkM0UsToXLs8\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/tracks/67SiiKWtMJYkM0UsToXLs8\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"67SiiKWtMJYkM0UsToXLs8\\\\\\\",\\\\n      \\\\\\\"is_local\\\\\\\" : false,\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Ton mec\\\\\\\",\\\\n      \\\\\\\"popularity\\\\\\\" : 22,\\\\n      \\\\\\\"preview_url\\\\\\\" : \\\\\\\"https://p.scdn.co/mp3-preview/902bfb87d82b1d911a08eeefdba7fd80a2d6da21?cid=4341dad364794fbaa97a37fd4739b088\\\\\\\",\\\\n      \\\\\\\"track_number\\\\\\\" : 1,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"track\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:track:67SiiKWtMJYkM0UsToXLs8\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=250&limit=50\\\\\\\",\\\\n  \\\\\\\"offset\\\\\\\" : 200,\\\\n  \\\\\\\"previous\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/tracks?offset=150&limit=50\\\\\\\",\\\\n  \\\\\\\"total\\\\\\\" : 286\\\\n}\\\"\\n    }\\n}\"],\"ClientLibraryApiTest.testLibraryShows\":[\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/shows/contains?ids=6z4NLXyHPga1UmSJsPK7G1\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjdhNjFiZDc1MmIwOGVkYzg3YjMwNDg2N2QxYzFhMTAwIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"9\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:18 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"[ false ]\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/shows/contains?ids=6z4NLXyHPga1UmSJsPK7G1\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjdhNjFiZDc1MmIwOGVkYzg3YjMwNDg2N2QxYzFhMTAwIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"9\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:18 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"[ false ]\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/shows?limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-ImNiNGY5Y2Y2ODJlNjBhMGEzZTM2ODgwNDBkNTU2ZTQzIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"5470\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:19 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/shows?offset=0&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-11-26T05:02:55Z\\\\\\\",\\\\n    \\\\\\\"show\\\\\\\" : {\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"ZA\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ ],\\\\n      \\\\\\\"description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don't just understand the economy – understand the world.Wanna go deeper? Subscribe to Planet Money+ and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It's a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/show/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/shows/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n      \\\\\\\"html_description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don&#39;t just understand the economy – understand the world.<br /><br />Wanna go deeper? Subscribe to Planet Money&#43; and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It&#39;s a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n      \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n      \\\\\\\"media_type\\\\\\\" : \\\\\\\"audio\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Planet Money\\\\\\\",\\\\n      \\\\\\\"publisher\\\\\\\" : \\\\\\\"NPR\\\\\\\",\\\\n      \\\\\\\"total_episodes\\\\\\\" : 355,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"show\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:show:4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-03T01:00:59Z\\\\\\\",\\\\n    \\\\\\\"show\\\\\\\" : {\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ ],\\\\n      \\\\\\\"description\\\\\\\" : \\\\\\\"They’re natural-born leaders with a never-ending thirst for power. Through force and deceit, they rise through the ranks toward radicalism — eliminating anyone who stands in their way. Delve into the minds and motives behind the world’s most infamous leaders. Dictators is a Spotify Original from Parcast.\\\\\\\",\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/show/5JwUl9pJUndHkbiiJTKRqg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/shows/5JwUl9pJUndHkbiiJTKRqg\\\\\\\",\\\\n      \\\\\\\"html_description\\\\\\\" : \\\\\\\"<p>They’re natural-born leaders with a never-ending thirst for power. Through force and deceit, they rise through the ranks toward radicalism — eliminating anyone who stands in their way. Delve into the minds and motives behind the world’s most infamous leaders. Dictators is a Spotify Original from Parcast.</p>\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5JwUl9pJUndHkbiiJTKRqg\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a6b54f7a5f9afb77921d7ca0d\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f6b54f7a5f9afb77921d7ca0d\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d6b54f7a5f9afb77921d7ca0d\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n      \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n      \\\\\\\"media_type\\\\\\\" : \\\\\\\"audio\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Dictators \\\\\\\",\\\\n      \\\\\\\"publisher\\\\\\\" : \\\\\\\"Parcast\\\\\\\",\\\\n      \\\\\\\"total_episodes\\\\\\\" : 163,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"show\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:show:5JwUl9pJUndHkbiiJTKRqg\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : null,\\\\n  \\\\\\\"offset\\\\\\\" : 0,\\\\n  \\\\\\\"previous\\\\\\\" : null,\\\\n  \\\\\\\"total\\\\\\\" : 3\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/shows?ids=6z4NLXyHPga1UmSJsPK7G1\\\",\\n        \\\"method\\\": \\\"PUT\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"0\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:19 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/shows/contains?ids=6z4NLXyHPga1UmSJsPK7G1\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-ImJiMDMxMTUwYjU4MDJhZjc0YjEzOWQ3N2MwN2YzZDNlIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"8\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:19 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"[ true ]\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/shows?limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-ImRkYWNhNjA1YjlmNWY0OTUyNGEyNTMxMTA0MzJmMTQxIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"8536\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:19 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/shows?offset=0&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-11-27T03:25:19Z\\\\\\\",\\\\n    \\\\\\\"show\\\\\\\" : {\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ ],\\\\n      \\\\\\\"description\\\\\\\" : \\\\\\\"Discover the hidden side of everything with Stephen J. Dubner, co-author of the Freakonomics books. Each week, Freakonomics Radio tells you things you always thought you knew (but didn’t) and things you never thought you wanted to know (but do) — from the economics of sleep to how to become great at just about anything. Dubner speaks with Nobel laureates and provocateurs, intellectuals and entrepreneurs, and various other underachievers.\\\\\\\",\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/show/6z4NLXyHPga1UmSJsPK7G1\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/shows/6z4NLXyHPga1UmSJsPK7G1\\\\\\\",\\\\n      \\\\\\\"html_description\\\\\\\" : \\\\\\\"Discover the hidden side of everything with Stephen J. Dubner, co-author of the Freakonomics books. Each week, Freakonomics Radio tells you things you always thought you knew (but didn’t) and things you never thought you wanted to know (but do) — from the economics of sleep to how to become great at just about anything. Dubner speaks with Nobel laureates and provocateurs, intellectuals and entrepreneurs, and various other underachievers.\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"6z4NLXyHPga1UmSJsPK7G1\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8ad8cbc1b0e35fb151ae472695\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1fd8cbc1b0e35fb151ae472695\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68dd8cbc1b0e35fb151ae472695\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n      \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n      \\\\\\\"media_type\\\\\\\" : \\\\\\\"audio\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Freakonomics Radio\\\\\\\",\\\\n      \\\\\\\"publisher\\\\\\\" : \\\\\\\"Freakonomics Radio + Stitcher\\\\\\\",\\\\n      \\\\\\\"total_episodes\\\\\\\" : 665,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"show\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:show:6z4NLXyHPga1UmSJsPK7G1\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-11-26T05:02:55Z\\\\\\\",\\\\n    \\\\\\\"show\\\\\\\" : {\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"ZA\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ ],\\\\n      \\\\\\\"description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don't just understand the economy – understand the world.Wanna go deeper? Subscribe to Planet Money+ and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It's a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/show/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/shows/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n      \\\\\\\"html_description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don&#39;t just understand the economy – understand the world.<br /><br />Wanna go deeper? Subscribe to Planet Money&#43; and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It&#39;s a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n      \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n      \\\\\\\"media_type\\\\\\\" : \\\\\\\"audio\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Planet Money\\\\\\\",\\\\n      \\\\\\\"publisher\\\\\\\" : \\\\\\\"NPR\\\\\\\",\\\\n      \\\\\\\"total_episodes\\\\\\\" : 355,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"show\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:show:4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-03T01:00:59Z\\\\\\\",\\\\n    \\\\\\\"show\\\\\\\" : {\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ ],\\\\n      \\\\\\\"description\\\\\\\" : \\\\\\\"They’re natural-born leaders with a never-ending thirst for power. Through force and deceit, they rise through the ranks toward radicalism — eliminating anyone who stands in their way. Delve into the minds and motives behind the world’s most infamous leaders. Dictators is a Spotify Original from Parcast.\\\\\\\",\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/show/5JwUl9pJUndHkbiiJTKRqg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/shows/5JwUl9pJUndHkbiiJTKRqg\\\\\\\",\\\\n      \\\\\\\"html_description\\\\\\\" : \\\\\\\"<p>They’re natural-born leaders with a never-ending thirst for power. Through force and deceit, they rise through the ranks toward radicalism — eliminating anyone who stands in their way. Delve into the minds and motives behind the world’s most infamous leaders. Dictators is a Spotify Original from Parcast.</p>\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5JwUl9pJUndHkbiiJTKRqg\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a6b54f7a5f9afb77921d7ca0d\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f6b54f7a5f9afb77921d7ca0d\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d6b54f7a5f9afb77921d7ca0d\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n      \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n      \\\\\\\"media_type\\\\\\\" : \\\\\\\"audio\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Dictators \\\\\\\",\\\\n      \\\\\\\"publisher\\\\\\\" : \\\\\\\"Parcast\\\\\\\",\\\\n      \\\\\\\"total_episodes\\\\\\\" : 163,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"show\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:show:5JwUl9pJUndHkbiiJTKRqg\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : null,\\\\n  \\\\\\\"offset\\\\\\\" : 0,\\\\n  \\\\\\\"previous\\\\\\\" : null,\\\\n  \\\\\\\"total\\\\\\\" : 4\\\\n}\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/shows?ids=6z4NLXyHPga1UmSJsPK7G1\\\",\\n        \\\"method\\\": \\\"DELETE\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"0\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:20 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/shows/contains?ids=6z4NLXyHPga1UmSJsPK7G1\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-IjdhNjFiZDc1MmIwOGVkYzg3YjMwNDg2N2QxYzFhMTAwIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"9\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:20 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"[ false ]\\\"\\n    }\\n}\",\"{\\n    \\\"request\\\": {\\n        \\\"url\\\": \\\"https://api.spotify.com/v1/me/shows?limit=50\\\",\\n        \\\"method\\\": \\\"GET\\\"\\n    },\\n    \\\"response\\\": {\\n        \\\"responseCode\\\": 200,\\n        \\\"headers\\\": {\\n            \\\"content-type\\\": \\\"application/json; charset=utf-8\\\",\\n            \\\"cache-control\\\": \\\"private, max-age=0\\\",\\n            \\\"etag\\\": \\\"\\\\\\\"MC-ImNiNGY5Y2Y2ODJlNjBhMGEzZTM2ODgwNDBkNTU2ZTQzIg==\\\\\\\"\\\",\\n            \\\"vary\\\": \\\"Authorization, Accept-Encoding\\\",\\n            \\\"x-robots-tag\\\": \\\"noindex, nofollow\\\",\\n            \\\"access-control-allow-origin\\\": \\\"*\\\",\\n            \\\"access-control-allow-headers\\\": \\\"Accept, App-Platform, Authorization, Content-Type, Origin, Retry-After, Spotify-App-Version, X-Cloud-Trace-Context, client-token, content-access-token\\\",\\n            \\\"access-control-allow-methods\\\": \\\"GET, POST, OPTIONS, PUT, DELETE, PATCH\\\",\\n            \\\"access-control-allow-credentials\\\": \\\"true\\\",\\n            \\\"access-control-max-age\\\": \\\"604800\\\",\\n            \\\"Content-Length\\\": \\\"5470\\\",\\n            \\\"strict-transport-security\\\": \\\"max-age=31536000\\\",\\n            \\\"x-content-type-options\\\": \\\"nosniff\\\",\\n            \\\"date\\\": \\\"Sun, 27 Nov 2022 03:25:20 GMT\\\",\\n            \\\"server\\\": \\\"envoy\\\",\\n            \\\"Via\\\": \\\"HTTP/2 edgeproxy, 1.1 google\\\",\\n            \\\"Alt-Svc\\\": \\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000\\\"\\n        },\\n        \\\"body\\\": \\\"{\\\\n  \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/me/shows?offset=0&limit=50\\\\\\\",\\\\n  \\\\\\\"items\\\\\\\" : [ {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2022-11-26T05:02:55Z\\\\\\\",\\\\n    \\\\\\\"show\\\\\\\" : {\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"ZA\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ ],\\\\n      \\\\\\\"description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don't just understand the economy – understand the world.Wanna go deeper? Subscribe to Planet Money+ and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It's a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/show/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/shows/4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n      \\\\\\\"html_description\\\\\\\" : \\\\\\\"Wanna see a trick? Give us any topic and we can tie it back to the economy. At Planet Money, we explore the forces that shape our lives and bring you along for the ride. Don&#39;t just understand the economy – understand the world.<br /><br />Wanna go deeper? Subscribe to Planet Money&#43; and get sponsor-free episodes of Planet Money, The Indicator, and Planet Money Summer School. Plus access to bonus content. It&#39;s a new way to support the show you love. Learn more at plus.npr.org/planetmoney.\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"4FYpq3lSeQMAhqNI81O0Cn\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d0e9f6765835300923f3e2c87\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n      \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n      \\\\\\\"media_type\\\\\\\" : \\\\\\\"audio\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Planet Money\\\\\\\",\\\\n      \\\\\\\"publisher\\\\\\\" : \\\\\\\"NPR\\\\\\\",\\\\n      \\\\\\\"total_episodes\\\\\\\" : 355,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"show\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:show:4FYpq3lSeQMAhqNI81O0Cn\\\\\\\"\\\\n    }\\\\n  }, {\\\\n    \\\\\\\"added_at\\\\\\\" : \\\\\\\"2021-08-03T01:00:59Z\\\\\\\",\\\\n    \\\\\\\"show\\\\\\\" : {\\\\n      \\\\\\\"available_markets\\\\\\\" : [ \\\\\\\"AD\\\\\\\", \\\\\\\"AE\\\\\\\", \\\\\\\"AG\\\\\\\", \\\\\\\"AL\\\\\\\", \\\\\\\"AM\\\\\\\", \\\\\\\"AO\\\\\\\", \\\\\\\"AR\\\\\\\", \\\\\\\"AT\\\\\\\", \\\\\\\"AU\\\\\\\", \\\\\\\"AZ\\\\\\\", \\\\\\\"BA\\\\\\\", \\\\\\\"BB\\\\\\\", \\\\\\\"BE\\\\\\\", \\\\\\\"BF\\\\\\\", \\\\\\\"BG\\\\\\\", \\\\\\\"BH\\\\\\\", \\\\\\\"BI\\\\\\\", \\\\\\\"BJ\\\\\\\", \\\\\\\"BN\\\\\\\", \\\\\\\"BO\\\\\\\", \\\\\\\"BR\\\\\\\", \\\\\\\"BS\\\\\\\", \\\\\\\"BT\\\\\\\", \\\\\\\"BW\\\\\\\", \\\\\\\"BZ\\\\\\\", \\\\\\\"CA\\\\\\\", \\\\\\\"CH\\\\\\\", \\\\\\\"CI\\\\\\\", \\\\\\\"CL\\\\\\\", \\\\\\\"CM\\\\\\\", \\\\\\\"CO\\\\\\\", \\\\\\\"CR\\\\\\\", \\\\\\\"CV\\\\\\\", \\\\\\\"CW\\\\\\\", \\\\\\\"CY\\\\\\\", \\\\\\\"CZ\\\\\\\", \\\\\\\"DE\\\\\\\", \\\\\\\"DJ\\\\\\\", \\\\\\\"DK\\\\\\\", \\\\\\\"DM\\\\\\\", \\\\\\\"DO\\\\\\\", \\\\\\\"DZ\\\\\\\", \\\\\\\"EC\\\\\\\", \\\\\\\"EE\\\\\\\", \\\\\\\"EG\\\\\\\", \\\\\\\"ES\\\\\\\", \\\\\\\"FI\\\\\\\", \\\\\\\"FJ\\\\\\\", \\\\\\\"FM\\\\\\\", \\\\\\\"FR\\\\\\\", \\\\\\\"GA\\\\\\\", \\\\\\\"GB\\\\\\\", \\\\\\\"GD\\\\\\\", \\\\\\\"GE\\\\\\\", \\\\\\\"GH\\\\\\\", \\\\\\\"GM\\\\\\\", \\\\\\\"GN\\\\\\\", \\\\\\\"GQ\\\\\\\", \\\\\\\"GR\\\\\\\", \\\\\\\"GT\\\\\\\", \\\\\\\"GW\\\\\\\", \\\\\\\"GY\\\\\\\", \\\\\\\"HK\\\\\\\", \\\\\\\"HN\\\\\\\", \\\\\\\"HR\\\\\\\", \\\\\\\"HT\\\\\\\", \\\\\\\"HU\\\\\\\", \\\\\\\"ID\\\\\\\", \\\\\\\"IE\\\\\\\", \\\\\\\"IL\\\\\\\", \\\\\\\"IN\\\\\\\", \\\\\\\"IS\\\\\\\", \\\\\\\"IT\\\\\\\", \\\\\\\"JM\\\\\\\", \\\\\\\"JO\\\\\\\", \\\\\\\"JP\\\\\\\", \\\\\\\"KE\\\\\\\", \\\\\\\"KH\\\\\\\", \\\\\\\"KI\\\\\\\", \\\\\\\"KM\\\\\\\", \\\\\\\"KN\\\\\\\", \\\\\\\"KR\\\\\\\", \\\\\\\"KW\\\\\\\", \\\\\\\"LA\\\\\\\", \\\\\\\"LB\\\\\\\", \\\\\\\"LC\\\\\\\", \\\\\\\"LI\\\\\\\", \\\\\\\"LR\\\\\\\", \\\\\\\"LS\\\\\\\", \\\\\\\"LT\\\\\\\", \\\\\\\"LU\\\\\\\", \\\\\\\"LV\\\\\\\", \\\\\\\"MA\\\\\\\", \\\\\\\"MC\\\\\\\", \\\\\\\"ME\\\\\\\", \\\\\\\"MG\\\\\\\", \\\\\\\"MH\\\\\\\", \\\\\\\"MK\\\\\\\", \\\\\\\"ML\\\\\\\", \\\\\\\"MN\\\\\\\", \\\\\\\"MO\\\\\\\", \\\\\\\"MR\\\\\\\", \\\\\\\"MT\\\\\\\", \\\\\\\"MU\\\\\\\", \\\\\\\"MV\\\\\\\", \\\\\\\"MW\\\\\\\", \\\\\\\"MX\\\\\\\", \\\\\\\"MY\\\\\\\", \\\\\\\"MZ\\\\\\\", \\\\\\\"NA\\\\\\\", \\\\\\\"NE\\\\\\\", \\\\\\\"NG\\\\\\\", \\\\\\\"NI\\\\\\\", \\\\\\\"NL\\\\\\\", \\\\\\\"NO\\\\\\\", \\\\\\\"NP\\\\\\\", \\\\\\\"NR\\\\\\\", \\\\\\\"NZ\\\\\\\", \\\\\\\"OM\\\\\\\", \\\\\\\"PA\\\\\\\", \\\\\\\"PE\\\\\\\", \\\\\\\"PG\\\\\\\", \\\\\\\"PH\\\\\\\", \\\\\\\"PL\\\\\\\", \\\\\\\"PS\\\\\\\", \\\\\\\"PT\\\\\\\", \\\\\\\"PW\\\\\\\", \\\\\\\"PY\\\\\\\", \\\\\\\"QA\\\\\\\", \\\\\\\"RO\\\\\\\", \\\\\\\"RS\\\\\\\", \\\\\\\"RW\\\\\\\", \\\\\\\"SA\\\\\\\", \\\\\\\"SB\\\\\\\", \\\\\\\"SC\\\\\\\", \\\\\\\"SE\\\\\\\", \\\\\\\"SG\\\\\\\", \\\\\\\"SI\\\\\\\", \\\\\\\"SK\\\\\\\", \\\\\\\"SL\\\\\\\", \\\\\\\"SM\\\\\\\", \\\\\\\"SN\\\\\\\", \\\\\\\"SR\\\\\\\", \\\\\\\"ST\\\\\\\", \\\\\\\"SV\\\\\\\", \\\\\\\"SZ\\\\\\\", \\\\\\\"TD\\\\\\\", \\\\\\\"TG\\\\\\\", \\\\\\\"TH\\\\\\\", \\\\\\\"TL\\\\\\\", \\\\\\\"TN\\\\\\\", \\\\\\\"TO\\\\\\\", \\\\\\\"TR\\\\\\\", \\\\\\\"TT\\\\\\\", \\\\\\\"TV\\\\\\\", \\\\\\\"TW\\\\\\\", \\\\\\\"TZ\\\\\\\", \\\\\\\"UA\\\\\\\", \\\\\\\"US\\\\\\\", \\\\\\\"UY\\\\\\\", \\\\\\\"UZ\\\\\\\", \\\\\\\"VC\\\\\\\", \\\\\\\"VN\\\\\\\", \\\\\\\"VU\\\\\\\", \\\\\\\"WS\\\\\\\", \\\\\\\"XK\\\\\\\", \\\\\\\"ZA\\\\\\\", \\\\\\\"ZM\\\\\\\", \\\\\\\"ZW\\\\\\\" ],\\\\n      \\\\\\\"copyrights\\\\\\\" : [ ],\\\\n      \\\\\\\"description\\\\\\\" : \\\\\\\"They’re natural-born leaders with a never-ending thirst for power. Through force and deceit, they rise through the ranks toward radicalism — eliminating anyone who stands in their way. Delve into the minds and motives behind the world’s most infamous leaders. Dictators is a Spotify Original from Parcast.\\\\\\\",\\\\n      \\\\\\\"explicit\\\\\\\" : false,\\\\n      \\\\\\\"external_urls\\\\\\\" : {\\\\n        \\\\\\\"spotify\\\\\\\" : \\\\\\\"https://open.spotify.com/show/5JwUl9pJUndHkbiiJTKRqg\\\\\\\"\\\\n      },\\\\n      \\\\\\\"href\\\\\\\" : \\\\\\\"https://api.spotify.com/v1/shows/5JwUl9pJUndHkbiiJTKRqg\\\\\\\",\\\\n      \\\\\\\"html_description\\\\\\\" : \\\\\\\"<p>They’re natural-born leaders with a never-ending thirst for power. Through force and deceit, they rise through the ranks toward radicalism — eliminating anyone who stands in their way. Delve into the minds and motives behind the world’s most infamous leaders. Dictators is a Spotify Original from Parcast.</p>\\\\\\\",\\\\n      \\\\\\\"id\\\\\\\" : \\\\\\\"5JwUl9pJUndHkbiiJTKRqg\\\\\\\",\\\\n      \\\\\\\"images\\\\\\\" : [ {\\\\n        \\\\\\\"height\\\\\\\" : 640,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000ba8a6b54f7a5f9afb77921d7ca0d\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 640\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 300,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab67656300005f1f6b54f7a5f9afb77921d7ca0d\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 300\\\\n      }, {\\\\n        \\\\\\\"height\\\\\\\" : 64,\\\\n        \\\\\\\"url\\\\\\\" : \\\\\\\"https://i.scdn.co/image/ab6765630000f68d6b54f7a5f9afb77921d7ca0d\\\\\\\",\\\\n        \\\\\\\"width\\\\\\\" : 64\\\\n      } ],\\\\n      \\\\\\\"is_externally_hosted\\\\\\\" : false,\\\\n      \\\\\\\"languages\\\\\\\" : [ \\\\\\\"en\\\\\\\" ],\\\\n      \\\\\\\"media_type\\\\\\\" : \\\\\\\"audio\\\\\\\",\\\\n      \\\\\\\"name\\\\\\\" : \\\\\\\"Dictators \\\\\\\",\\\\n      \\\\\\\"publisher\\\\\\\" : \\\\\\\"Parcast\\\\\\\",\\\\n      \\\\\\\"total_episodes\\\\\\\" : 163,\\\\n      \\\\\\\"type\\\\\\\" : \\\\\\\"show\\\\\\\",\\\\n      \\\\\\\"uri\\\\\\\" : \\\\\\\"spotify:show:5JwUl9pJUndHkbiiJTKRqg\\\\\\\"\\\\n    }\\\\n  } ],\\\\n  \\\\\\\"limit\\\\\\\" : 50,\\\\n  \\\\\\\"next\\\\\\\" : null,\\\\n  \\\\\\\"offset\\\\\\\" : 0,\\\\n  \\\\\\\"previous\\\\\\\" : null,\\\\n  \\\\\\\"total\\\\\\\" : 3\\\\n}\\\"\\n    }\\n}\"]}"
  },
  {
    "path": "src/desktopMain/kotlin/com/adamratzman/spotify/utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport io.ktor.http.encodeURLQueryComponent\nimport kotlinx.datetime.Clock\nimport kotlinx.datetime.Instant\n\ninternal actual fun String.encodeUrl() = encodeURLQueryComponent()\n\n/**\n * Actual platform that this program is run on.\n */\npublic actual val currentApiPlatform: Platform = Platform.Native\n\npublic actual typealias ConcurrentHashMap<K, V> = HashMap<K, V>\n\npublic actual fun <K, V> ConcurrentHashMap<K, V>.asList(): List<Pair<K, V>> = toList()\n\n/**\n * The current time in milliseconds since UNIX epoch.\n */\npublic actual fun getCurrentTimeMs(): Long = Clock.System.now().toEpochMilliseconds()\n\n/**\n * Format date to ISO 8601 format\n */\ninternal actual fun formatDate(date: Long): String {\n    return Instant.fromEpochMilliseconds(date).toString()\n}\n"
  },
  {
    "path": "src/iosMain/kotlin/com.adamratzman.spotify.utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport kotlinx.coroutines.runBlocking\n\npublic actual fun <T> runBlockingOnJvmAndNative(block: suspend () -> T): T {\n    return runBlocking { block() }\n}\n"
  },
  {
    "path": "src/jsMain/kotlin/co.scdn.sdk/SpotifyPlayerJs.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage co.scdn.sdk\n\nimport com.adamratzman.spotify.webplayer.Error\nimport com.adamratzman.spotify.webplayer.PlaybackState\nimport com.adamratzman.spotify.webplayer.WebPlaybackInstance\nimport kotlinx.browser.window\n\npublic fun setOnSpotifyWebPlaybackSDKReady(callback: suspend () -> Unit) {\n    val dynamicWindow: dynamic = window\n    dynamicWindow[\"onSpotifyWebPlaybackSDKReady\"] = callback\n}\n\npublic enum class SpotifyWebPlaybackEvent(public val spotifyId: String) {\n    /**\n     * Emitted when the Web Playback SDK has successfully connected and is ready to stream content in the browser from Spotify. Type [PlaybackPlayerListener]\n     */\n    Ready(\"ready\"),\n\n    /**\n     * Emitted when the Web Playback SDK is not ready to play content, typically due to no internet connection. Type [PlaybackPlayerListener]\n     */\n    NotReady(\"not_ready\"),\n\n    /**\n     * Emitted when the state of the local playback has changed. It may be also executed in random intervals. Type [PlaybackStateListener]\n     */\n    PlayerStateChanged(\"player_state_changed\"),\n\n    /**\n     * Emitted when the Spotify.Player fails to instantiate a player capable of playing content in the current environment.\n     * Most likely due to the browser not supporting EME protection. Type [ErrorListener]\n     */\n    InitializationError(\"initialization_error\"),\n\n    /**\n     * Emitted when the Spotify.Player fails to instantiate a valid Spotify connection from the access token provided to getOAuthToken. Type [ErrorListener]\n     */\n    AuthenticationError(\"authentication_error\"),\n\n    /**\n     * Emitted when the user authenticated does not have a valid Spotify Premium subscription. Type [ErrorListener]\n     */\n    AccountError(\"account_error\"),\n\n    /**\n     * Emitted when loading and/or playing back a track failed. Type [ErrorListener]\n     */\n    PlaybackError(\"playback_error\")\n}\n\npublic typealias ErrorListener = (err: Error) -> Unit\npublic typealias PlaybackPlayerListener = (inst: WebPlaybackInstance) -> Unit\npublic typealias PlaybackStateListener = (s: PlaybackState) -> Unit\n"
  },
  {
    "path": "src/jsMain/kotlin/com/adamratzman/spotify/utils/ImplicitGrant.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:Suppress(\"unused\")\n\npackage com.adamratzman.spotify.utils\n\nimport com.adamratzman.spotify.SpotifyImplicitGrantApi\nimport com.adamratzman.spotify.models.Token\nimport kotlinx.browser.window\nimport org.w3c.dom.url.URLSearchParams\n\n/**\n * Parse the current url into a valid [Token] to be used when instantiating a new [SpotifyImplicitGrantApi]\n */\npublic fun parseSpotifyCallbackHashToToken(): Token = parseSpotifyCallbackHashToToken(window.location.hash.substring(1))\n\n/**\n * Parse the hash string into a valid [Token] to be used when instantiating a new [SpotifyImplicitGrantApi]\n *\n * @param hashString The Spotify hash string containing access_token, token_type, and expires_in.\n */\npublic fun parseSpotifyCallbackHashToToken(hashString: String): Token {\n    val hash = URLSearchParams(hashString)\n\n    return Token(\n        hash.get(\"access_token\") ?: throw IllegalStateException(\"access_token is not part of the hash!\"),\n        hash.get(\"token_type\") ?: throw IllegalStateException(\"token_type is not part of the hash!\"),\n        hash.get(\"expires_in\")?.toIntOrNull() ?: throw IllegalStateException(\"expires_in is not part of the hash!\")\n    )\n}\n"
  },
  {
    "path": "src/jsMain/kotlin/com/adamratzman/spotify/utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport com.adamratzman.spotify.SpotifyRestAction\nimport io.ktor.http.encodeURLQueryComponent\nimport kotlinx.coroutines.GlobalScope\nimport kotlinx.coroutines.promise\nimport kotlin.js.Date\nimport kotlin.js.Promise\n\ninternal actual fun String.encodeUrl() = encodeURLQueryComponent()\n\n/**\n * Actual platform that this program is run on.\n */\npublic actual val currentApiPlatform: Platform = Platform.Js\n\npublic actual typealias ConcurrentHashMap<K, V> = HashMap<K, V>\n\npublic actual fun <K, V> ConcurrentHashMap<K, V>.asList(): List<Pair<K, V>> = toList()\n\npublic actual fun <T> runBlockingOnJvmAndNative(block: suspend () -> T): T {\n    throw IllegalStateException(\"JS does not have runBlocking\")\n}\n\npublic fun <T> SpotifyRestAction<T>.asPromise(): Promise<T> = GlobalScope.promise {\n    supplier()\n}\n\n/**\n * The current time in milliseconds since UNIX epoch.\n */\npublic actual fun getCurrentTimeMs(): Long = Date.now().toLong()\n\n/**\n * Format date to ISO 8601 format\n */\ninternal actual fun formatDate(date: Long): String {\n    return Date(date).toISOString()\n}\n"
  },
  {
    "path": "src/jsMain/kotlin/com/adamratzman/spotify/webplayer/WebPlaybackSdk.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:JsQualifier(\"window.Spotify\")\n@file:Suppress(\"PropertyName\", \"unused\")\n\npackage com.adamratzman.spotify.webplayer\n\nimport co.scdn.sdk.ErrorListener\nimport co.scdn.sdk.PlaybackPlayerListener\nimport co.scdn.sdk.PlaybackStateListener\nimport co.scdn.sdk.SpotifyWebPlaybackEvent\nimport kotlin.js.Promise\n\npublic external interface Album {\n    public var uri: String\n    public var name: String\n    public var images: Array<Image>?\n}\n\npublic external interface Artist {\n    public var name: String\n    public var uri: String\n}\n\npublic external interface Error {\n    public var message: String\n}\n\npublic external interface Image {\n    public val height: Number?\n    public val url: String\n    public val width: Number?\n}\n\n/**\n * Playback context for the player\n *\n * @property metadata Additional metadata for the context (can be null)\n * @property uri The URI of the context (can be null)\n */\npublic external interface PlaybackContext {\n    public var metadata: Any\n    public var uri: String?\n}\n\n/**\n * A simplified set of restriction controls for the track. By default, these fields will either be set to false or undefined, which indicates that the particular operation is allowed. When the field is set to `true`, this means that the operation is not permitted. For example, `skipping_next`, `skipping_prev` and `seeking` will be set to `true` when playing an ad track.\n */\npublic external interface PlaybackDisallows {\n    public var pausing: Boolean\n    public var peeking_next: Boolean\n    public var peeking_prev: Boolean\n    public var resuming: Boolean\n    public var seeking: Boolean\n    public var skipping_next: Boolean\n    public var skipping_prev: Boolean\n}\n\npublic external interface PlaybackRestrictions {\n    public var disallow_pausing_reasons: Array<String>\n    public var disallow_peeking_next_reasons: Array<String>\n    public var disallow_peeking_prev_reasons: Array<String>\n    public var disallow_resuming_reasons: Array<String>\n    public var disallow_seeking_reasons: Array<String>\n    public var disallow_skipping_next_reasons: Array<String>\n    public var disallow_skipping_prev_reasons: Array<String>\n}\n\n/**\n * This is an object that is provided every time Spotify.Player#getCurrentState is called. It contains information on context, permissions, playback state, the user’s session, and more.\n * @property context Playback context\n * @property disallows A simplified set of restriction controls for the track. By default, these fields will either be set to false or undefined, which indicates that the particular operation is allowed. When the field is set to `true`, this means that the operation is not permitted. For example, `skipping_next`, `skipping_prev` and `seeking` will be set to `true` when playing an ad track.\n * @property paused Whether the current track is paused\n * @property position The position_ms of the current track.\n * @property repeat_mode The repeat mode. No repeat mode is 0, once-repeat is 1 and full repeat is 2.\n * @property shuffle True if shuffled, false otherwise.\n * @property track_window Playback information\n */\npublic external interface PlaybackState {\n    public var context: PlaybackContext\n    public var disallows: PlaybackDisallows\n    public var paused: Boolean\n    public var duration: Number\n    public var position: Number\n    public var repeat_mode: Number\n    public var shuffle: Boolean\n    public var restrictions: PlaybackRestrictions\n    public var track_window: PlaybackTrackWindow\n}\n\npublic external interface PlaybackTrackWindow {\n    public var current_track: Track\n    public var previous_tracks: Array<Track>\n    public var next_tracks: Array<Track>\n}\n\n/**\n * Options for instantiating the [Player]\n *\n * @property name The name of the Spotify Connect player. It will be visible in other Spotify apps.\n * @property getOAuthToken This will be called every time you run Spotify.Player#connect or when a user's access token has expired (maximum of 60 minutes).\n * You need to invoke cb (the callback) with the access token within this method. Ex: cb(\"STATIC_ACCESS\"TOKEN\")\n * @property volume The default volume of the player. Represented as a decimal between 0 and 1. Default value is 1.\n */\npublic external interface PlayerInit {\n    public var name: String\n    public var getOAuthToken: (cb: (token: String) -> Unit) -> Unit\n    public var volume: Number?\n        get() = definedExternally\n        set(value) = definedExternally\n}\n\n/**\n * The main constructor for initializing the Web Playback SDK. It should contain an object with the player name, volume and access token.\n *\n * @param options The options to instantiate this Player\n */\npublic open external class Player(options: PlayerInit) {\n    /**\n     * Connect our Web Playback SDK instance to Spotify with the credentials provided during initialization.\n     * @return Returns a Promise containing a Boolean (either true or false) with the success of the connection.\n     */\n    public open fun connect(): Promise<Boolean>\n\n    /**\n     * Closes the current session our Web Playback SDK has with Spotify.\n     */\n    public open fun disconnect()\n\n    /**\n     * Collect metadata on local playback.\n     * @return Returns a Promise. It will return either a WebPlaybackState object or null depending on if the user is successfully connected.\n     */\n    public open fun getCurrentState(): Promise<PlaybackState?>\n\n    /**\n     * Some browsers prevent autoplay of media by ensuring that all playback is triggered by\n     * synchronous event-paths originating from user interaction such as a click.\n     * This event allows you to manually activate the element if action is deferred or done\n     * in a separate execution context than the user action.\n     */\n    public fun activateElement(): Promise<Any>\n\n    /**\n     * Get the local volume currently set in the Web Playback SDK.\n     * @return Returns a Promise containing the local volume (as a Float between 0 and 1).\n     */\n    public open fun getVolume(): Promise<Number>\n\n    /**\n     * Skip to the next track in local playback.\n     */\n    public open fun nextTrack(): Promise<Unit>\n\n    /**\n     * Pause the local playback.\n     */\n    public open fun pause(): Promise<Unit>\n\n    /**\n     * Switch to the previous track in local playback.\n     */\n    public open fun previousTrack(): Promise<Unit>\n\n    /**\n     * Resume the local playback.\n     */\n    public open fun resume(): Promise<Unit>\n\n    /**\n     * Seek to a position in the current track in local playback.\n     * @param pos_ms The position in milliseconds to seek to.\n     */\n    public open fun seek(pos_ms: Number): Promise<Unit>\n\n    /**\n     * Rename the Spotify Player device. This is visible across all Spotify Connect devices.\n     * @param name The new desired player name.\n     */\n    public open fun setName(name: String): Promise<Unit>\n\n    /**\n     * Set the local volume for the Web Playback SDK.\n     *\n     * @param volume The new desired volume for local playback. Between 0 and 1.\n     */\n    public open fun setVolume(volume: Float): Promise<Unit>\n\n    /**\n     * Resume/pause the local playback.\n     */\n    public open fun togglePlay(): Promise<Unit>\n\n    /**\n     * Create a new event listener under event [event] of type [PlaybackPlayerListener] in the Web Playback SDK. Alias for Spotify.Player#on.\n     *\n     * @param event A valid event name. See Web Playback SDK Events.\n     * @param cb A callback function to be fired when the event has been executed.\n     */\n    public open fun addListener(event: String, cb: PlaybackPlayerListener)\n\n    /**\n     * Create a new event listener under event [event] of type [PlaybackStateListener] in the Web Playback SDK. Alias for Spotify.Player#on.\n     *\n     * @param event A valid event name. See Web Playback SDK Events.\n     * @param cb A callback function to be fired when the event has been executed.\n     */\n    public open fun addListener(event: String, cb: PlaybackStateListener)\n\n    /**\n     * Create a new event listener under event [event] of type [ErrorListener] in the Web Playback SDK. Alias for Spotify.Player#on.\n     *\n     * @param event A valid event name. See Web Playback SDK Events.\n     * @param cb A callback function to be fired when the event has been executed.\n     */\n    public open fun addListener(event: String, cb: ErrorListener)\n\n    /**\n     * Create a new event listener under event [event] of type [PlaybackPlayerListener] in the Web Playback SDK.\n     *\n     * @param event A valid event name. See Web Playback SDK Events.\n     * @param cb A callback function to be fired when the event has been executed.\n     */\n    public open fun on(event: String, cb: PlaybackPlayerListener)\n\n    /**\n     * Create a new event listener under event [event] of type [PlaybackStateListener] in the Web Playback SDK.\n     *\n     * @param event A valid event name. See Web Playback SDK Events.\n     * @param cb A callback function to be fired when the event has been executed.\n     */\n    public open fun on(event: String, cb: PlaybackStateListener)\n\n    /**\n     * Create a new event listener under event [event] of type [ErrorListener] in the Web Playback SDK.\n     *\n     * @param event A valid event name. See Web Playback SDK Events.\n     * @param cb A callback function to be fired when the event has been executed.\n     */\n    public open fun on(event: String, cb: ErrorListener)\n\n    /**\n     * Remove all event listeners registered under a specific [event] type in the Web Playback SDK.\n     * **Please use [SpotifyWebPlaybackEvent.spotifyId] to get web playback events' spotify ids**\n     *\n     * @return Returns a Boolean. Returns true if the event name is valid with registered callbacks from #addListener.\n     */\n    public open fun removeListener(event: String)\n\n    /**\n     * Remove a specific [ErrorListener] registered under event type [event] in the Web Playback SDK.\n     */\n    public open fun removeListener(\n        event: String,\n        cb: ErrorListener = definedExternally\n    )\n\n    /**\n     * Remove a specific [PlaybackPlayerListener] registered under event type [event] in the Web Playback SDK.\n     * **Please use [SpotifyWebPlaybackEvent.spotifyId] to get web playback events' spotify ids**\n     */\n    public open fun removeListener(\n        event: String,\n        cb: PlaybackPlayerListener = definedExternally\n    )\n\n    /**\n     * Remove a specific [PlaybackStateListener] registered under event type [event] in the Web Playback SDK.\n     * **Please use [SpotifyWebPlaybackEvent.spotifyId] to get web playback events' spotify ids**\n     */\n    public open fun removeListener(\n        event: String,\n        cb: PlaybackStateListener = definedExternally\n    )\n}\n\n/**\n * @property type track, episode, ad\n * @property media_type audio, video\n */\npublic external interface Track {\n    public var uri: String\n    public var id: String?\n    public var type: String\n    public var media_type: String\n    public var name: String\n    public var is_playable: Boolean\n    public var album: Album\n    public var artists: Array<Artist>\n}\n\n/**\n * This is an object that is provided in the ready event as an argument. WebPlaybackPlayer objects contain information related to the current player instance of the Web Playback SDK.\n */\npublic external interface WebPlaybackInstance {\n    public var device_id: String\n}\n"
  },
  {
    "path": "src/jvmMain/kotlin/com/adamratzman/spotify/utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport kotlinx.coroutines.runBlocking\nimport java.net.URLEncoder\n\ninternal actual fun String.encodeUrl() = URLEncoder.encode(this, \"UTF-8\")!!\n\n/**\n * The actual platform that this program is running on.\n */\npublic actual val currentApiPlatform: Platform = Platform.Jvm\n\npublic actual typealias ConcurrentHashMap<K, V> = java.util.concurrent.ConcurrentHashMap<K, V>\n\npublic actual fun <K, V> ConcurrentHashMap<K, V>.asList(): List<Pair<K, V>> = toList()\n\npublic actual fun <T> runBlockingOnJvmAndNative(block: suspend () -> T): T {\n    return runBlocking { block() }\n}\n"
  },
  {
    "path": "src/jvmTest/kotlin/com/adamratzman/spotify/PkceTest.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\n@file:OptIn(ExperimentalCoroutinesApi::class)\n\npackage com.adamratzman.spotify\n\nimport com.adamratzman.spotify.SpotifyException.AuthenticationException\nimport kotlinx.coroutines.ExperimentalCoroutinesApi\nimport kotlinx.coroutines.runBlocking\nimport spark.Spark.exception\nimport spark.Spark.get\nimport spark.Spark.port\nimport kotlin.random.Random\nimport kotlin.test.Test\nimport kotlin.test.assertFailsWith\n\nclass PkceTest {\n\n    @Test\n    fun testPkce() = runTestOnDefaultDispatcher {\n        val clientId = getTestClientId()\n\n        if (areLivePkceTestsEnabled() && clientId != null) {\n            val serverRedirectUri = \"http://localhost:1337\"\n\n            val pkceCodeVerifier = (1..100).joinToString(\"\") { \"1\" }\n            val state = Random.nextLong().toString()\n\n            println(\n                getSpotifyPkceAuthorizationUrl(\n                    *SpotifyScope.entries.toTypedArray(),\n                    clientId = clientId,\n                    redirectUri = serverRedirectUri,\n                    codeChallenge = getSpotifyPkceCodeChallenge(pkceCodeVerifier),\n                    state = state\n                )\n            )\n\n            var stop = false\n\n            port(1337)\n\n            exception(Exception::class.java) { exception, _, _ -> exception.printStackTrace() }\n\n            get(\"/\") { request, _ ->\n                runBlocking {\n                    val code = request.queryParams(\"code\")\n                    val actualState = request.queryParams(\"state\")\n                    if (code != null && actualState == state) {\n                        val api = spotifyClientPkceApi(\n                            clientId,\n                            serverRedirectUri,\n                            SpotifyUserAuthorization(\n                                authorizationCode = code,\n                                pkceCodeVerifier = pkceCodeVerifier\n                            )\n                        ) {\n                            onTokenRefresh = { println(\"refreshed token\") }\n                            testTokenValidity = true\n                        }.build()\n                        val token = api.token.copy(expiresIn = -1)\n                        api.refreshToken()\n                        // test that using same token will fail with auth exception\n\n                        assertFailsWith<AuthenticationException> {\n                            spotifyClientPkceApi(\n                                clientId,\n                                serverRedirectUri,\n                                SpotifyUserAuthorization(\n                                    token = token,\n                                    pkceCodeVerifier = pkceCodeVerifier\n                                )\n                            ).build().library.getSavedTracks()\n                        }\n\n                        val username = api.users.getClientProfile().displayName\n\n                        stop = true\n                        \"Successfully authenticated $username with PKCE and refreshed the token.\"\n                    } else {\n                        \"err.\"\n                    }\n                }\n            }\n\n            println(\"Waiting...\")\n\n            while (!stop) {\n                Thread.sleep(2000)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/linuxX64Main/kotlin/com.adamratzman.spotify.utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport kotlinx.coroutines.runBlocking\n\npublic actual fun <T> runBlockingOnJvmAndNative(block: suspend () -> T): T {\n    return runBlocking { block() }\n}\n"
  },
  {
    "path": "src/macosX64Main/kotlin/com.adamratzman.spotify.utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport kotlinx.coroutines.runBlocking\n\npublic actual fun <T> runBlockingOnJvmAndNative(block: suspend () -> T): T {\n    return runBlocking { block() }\n}\n"
  },
  {
    "path": "src/mingwX64Main/kotlin/com.adamratzman.spotify.utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport kotlinx.coroutines.runBlocking\n\npublic actual fun <T> runBlockingOnJvmAndNative(block: suspend () -> T): T {\n    return runBlocking { block() }\n}\n"
  },
  {
    "path": "src/nativeDarwinMain/kotlin/com/adamratzman/spotify/utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport io.ktor.http.encodeURLQueryComponent\nimport kotlinx.datetime.Clock\nimport kotlinx.datetime.Instant\n\ninternal actual fun String.encodeUrl() = encodeURLQueryComponent()\n\n/**\n * Actual platform that this program is run on.\n */\npublic actual val currentApiPlatform: Platform = Platform.Native\n\npublic actual typealias ConcurrentHashMap<K, V> = HashMap<K, V>\n\npublic actual fun <K, V> ConcurrentHashMap<K, V>.asList(): List<Pair<K, V>> = toList()\n\n/**\n * The current time in milliseconds since UNIX epoch.\n */\npublic actual fun getCurrentTimeMs(): Long = Clock.System.now().toEpochMilliseconds()\n\n/**\n * Format date to ISO 8601 format\n */\ninternal actual fun formatDate(date: Long): String {\n    return Instant.fromEpochMilliseconds(date).toString()\n}\n"
  },
  {
    "path": "src/tvosMain/kotlin/com.adamratzman.spotify.utils/PlatformUtils.kt",
    "content": "/* Spotify Web API, Kotlin Wrapper; MIT License, 2017-2022; Original author: Adam Ratzman */\npackage com.adamratzman.spotify.utils\n\nimport kotlinx.coroutines.runBlocking\n\npublic actual fun <T> runBlockingOnJvmAndNative(block: suspend () -> T): T {\n    return runBlocking { block() }\n}\n"
  },
  {
    "path": "webpack.config.d/patch.js",
    "content": "config.resolve.alias = {\n    \"crypto\": false,\n}\n\noutput: {\n    globalObject: 'this'\n}"
  },
  {
    "path": "webpack.config.js",
    "content": "module.exports = {\n    output: {\n        globalObject: 'this'\n    }\n}"
  }
]