Add Spotify integration, Next button navigation, and UI improvements
- Added Spotify links to all album cards with official green styling - Implemented Next Album button for sequential navigation (albums 1-499) - Fixed jump-to-rank to scroll to album card top instead of centering - Moved share button to same row as album status for better layout - Improved mobile UI: fixed theme selector overlap, full-width filter controls - Grouped sort dropdown with reverse button for logical organization - Updated README with new features and Spotify integration details - Enhanced vertical alignment of status badges and share buttons - Refined button sizing and spacing for consistent appearance 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
2720eb1f4b
commit
75bbf157e7
7 changed files with 1118 additions and 77 deletions
11
README.md
11
README.md
|
|
@ -7,6 +7,7 @@ A beautiful, interactive web application showcasing Rolling Stone's greatest alb
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|

|
||||||
|
|
||||||
## ✨ Features
|
## ✨ Features
|
||||||
|
|
||||||
|
|
@ -15,6 +16,8 @@ A beautiful, interactive web application showcasing Rolling Stone's greatest alb
|
||||||
- **Ranking Comparisons**: See how albums moved between 2020 and 2023 rankings
|
- **Ranking Comparisons**: See how albums moved between 2020 and 2023 rankings
|
||||||
- **Complete Metadata**: Full album information including artist, year, label, and descriptions
|
- **Complete Metadata**: Full album information including artist, year, label, and descriptions
|
||||||
- **Wikipedia Integration**: Direct links to Wikipedia pages for each album
|
- **Wikipedia Integration**: Direct links to Wikipedia pages for each album
|
||||||
|
- **Spotify Integration**: Listen to albums directly on Spotify with one click
|
||||||
|
- **Sequential Navigation**: Next button on each album for easy browsing
|
||||||
- **Search & Filter**: Easy navigation with search, status filters, and sorting options
|
- **Search & Filter**: Easy navigation with search, status filters, and sorting options
|
||||||
|
|
||||||
### Modern UI/UX
|
### Modern UI/UX
|
||||||
|
|
@ -54,6 +57,7 @@ python -m http.server 8000
|
||||||
- `rolling_stone_top_500_albums_2020.csv` - Original 2020 rankings
|
- `rolling_stone_top_500_albums_2020.csv` - Original 2020 rankings
|
||||||
- `wikipedia_top_500_albums.csv` - Wikipedia sourced data for comparison
|
- `wikipedia_top_500_albums.csv` - Wikipedia sourced data for comparison
|
||||||
- `wikipedia_urls_mapping.json` - Accurate Wikipedia URL mappings for all albums
|
- `wikipedia_urls_mapping.json` - Accurate Wikipedia URL mappings for all albums
|
||||||
|
- `spotify_urls_mapping.json` - Spotify album URL mappings for streaming integration
|
||||||
|
|
||||||
### Assets
|
### Assets
|
||||||
- `covers/` - 500 high-quality album cover images (rank_XXX_Artist_Album.jpg)
|
- `covers/` - 500 high-quality album cover images (rank_XXX_Artist_Album.jpg)
|
||||||
|
|
@ -73,6 +77,7 @@ The repository includes various Python utilities for data management:
|
||||||
| `add_missing_info.py` | Add metadata for albums missing information |
|
| `add_missing_info.py` | Add metadata for albums missing information |
|
||||||
| `fill_missing_from_wikipedia.py` | Research and add Wikipedia-sourced descriptions |
|
| `fill_missing_from_wikipedia.py` | Research and add Wikipedia-sourced descriptions |
|
||||||
| `extract_wikipedia_urls.py` | Extract accurate Wikipedia URLs for album pages |
|
| `extract_wikipedia_urls.py` | Extract accurate Wikipedia URLs for album pages |
|
||||||
|
| `extract_spotify_urls.py` | Extract Spotify URLs using the Spotify Web API |
|
||||||
|
|
||||||
## 📈 Data Quality
|
## 📈 Data Quality
|
||||||
|
|
||||||
|
|
@ -81,6 +86,7 @@ The repository includes various Python utilities for data management:
|
||||||
- **500/500 albums** with metadata (artist, album, year, label)
|
- **500/500 albums** with metadata (artist, album, year, label)
|
||||||
- **500/500 albums** with descriptions (mix of original Rolling Stone content and researched additions)
|
- **500/500 albums** with descriptions (mix of original Rolling Stone content and researched additions)
|
||||||
- **496/500 albums** with accurate Wikipedia page links (99.2% coverage)
|
- **496/500 albums** with accurate Wikipedia page links (99.2% coverage)
|
||||||
|
- **500+ albums** with Spotify streaming links (100% coverage with search fallback)
|
||||||
|
|
||||||
## 🎯 Key Insights
|
## 🎯 Key Insights
|
||||||
|
|
||||||
|
|
@ -111,6 +117,7 @@ The repository includes various Python utilities for data management:
|
||||||
- **Python 3** scripts for data manipulation
|
- **Python 3** scripts for data manipulation
|
||||||
- **CSV format** for easy data management
|
- **CSV format** for easy data management
|
||||||
- **iTunes API** integration for cover art (100% success rate)
|
- **iTunes API** integration for cover art (100% success rate)
|
||||||
|
- **Spotify Web API** integration for streaming links
|
||||||
- **Wikipedia scraping** for accurate page URLs
|
- **Wikipedia scraping** for accurate page URLs
|
||||||
- **Fuzzy string matching** for data correlation
|
- **Fuzzy string matching** for data correlation
|
||||||
- **JSON mapping files** for efficient lookups
|
- **JSON mapping files** for efficient lookups
|
||||||
|
|
@ -137,6 +144,7 @@ The application uses CSS custom properties for theming:
|
||||||
2. Run appropriate scripts from the `scripts/` folder
|
2. Run appropriate scripts from the `scripts/` folder
|
||||||
3. Regenerate cover art if needed using `download_all_covers.py`
|
3. Regenerate cover art if needed using `download_all_covers.py`
|
||||||
4. Update Wikipedia mappings with `extract_wikipedia_urls.py`
|
4. Update Wikipedia mappings with `extract_wikipedia_urls.py`
|
||||||
|
5. Update Spotify mappings with `extract_spotify_urls.py`
|
||||||
|
|
||||||
### Contributing
|
### Contributing
|
||||||
- All album descriptions marked "(by Claude)" were AI-generated based on historical research
|
- All album descriptions marked "(by Claude)" were AI-generated based on historical research
|
||||||
|
|
@ -156,11 +164,12 @@ This project is for educational and research purposes. Album artwork and descrip
|
||||||
|
|
||||||
- **Rolling Stone Magazine** for the original rankings and descriptions
|
- **Rolling Stone Magazine** for the original rankings and descriptions
|
||||||
- **iTunes API** for high-quality album artwork
|
- **iTunes API** for high-quality album artwork
|
||||||
|
- **Spotify** for streaming integration and album availability
|
||||||
- **Wikipedia contributors** for additional album research and accurate page URLs
|
- **Wikipedia contributors** for additional album research and accurate page URLs
|
||||||
- **Claude AI** for data processing assistance and missing descriptions
|
- **Claude AI** for data processing assistance and missing descriptions
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
*Explore the greatest albums of all time with beautiful themes, comprehensive data, and seamless Wikipedia integration. Discover how musical tastes and recognition have evolved between 2020 and 2023.*
|
*Explore the greatest albums of all time with beautiful themes, comprehensive data, seamless Wikipedia integration, and instant Spotify streaming. Discover how musical tastes and recognition have evolved between 2020 and 2023.*
|
||||||
|
|
||||||
🎧 **[Start Exploring →](index.html)** | 🎨 **Try Different Themes** | 🔗 **Share Your Favorites**
|
🎧 **[Start Exploring →](index.html)** | 🎨 **Try Different Themes** | 🔗 **Share Your Favorites**
|
||||||
|
|
@ -18,8 +18,8 @@ import base64
|
||||||
from typing import Dict, Optional
|
from typing import Dict, Optional
|
||||||
|
|
||||||
# Spotify API credentials (you'll need to get these from Spotify Developer Dashboard)
|
# Spotify API credentials (you'll need to get these from Spotify Developer Dashboard)
|
||||||
CLIENT_ID = "your_client_id_here"
|
CLIENT_ID = "7b82a80e9292465e8e778f0e5fc6f017"
|
||||||
CLIENT_SECRET = "your_client_secret_here"
|
CLIENT_SECRET = "dacbe619d3c849c48e1b01dffaf89b53"
|
||||||
|
|
||||||
def get_spotify_access_token() -> Optional[str]:
|
def get_spotify_access_token() -> Optional[str]:
|
||||||
"""Get access token from Spotify API"""
|
"""Get access token from Spotify API"""
|
||||||
|
|
@ -190,4 +190,4 @@ def main():
|
||||||
print(f" - failed_spotify_searches.txt")
|
print(f" - failed_spotify_searches.txt")
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|
|
||||||
34
index.html
34
index.html
|
|
@ -52,22 +52,24 @@
|
||||||
<option value="No change">No Change</option>
|
<option value="No change">No Change</option>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="sortBy" class="filter-select">
|
<div class="sort-controls">
|
||||||
<option value="rank">Sort by Rank</option>
|
<select id="sortBy" class="filter-select">
|
||||||
<option value="artist">Sort by Artist</option>
|
<option value="rank">Sort by Rank</option>
|
||||||
<option value="album">Sort by Album</option>
|
<option value="artist">Sort by Artist</option>
|
||||||
<option value="year">Sort by Year</option>
|
<option value="album">Sort by Album</option>
|
||||||
</select>
|
<option value="year">Sort by Year</option>
|
||||||
|
</select>
|
||||||
<button id="reverseButton" class="reverse-button" title="Reverse order">
|
|
||||||
<span id="reverseIcon">
|
<button id="reverseButton" class="reverse-button" title="Reverse order">
|
||||||
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
<span id="reverseIcon">
|
||||||
<path d="M3 6h18M3 12h18M3 18h18"></path>
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
<path d="M21 6l-2-2-2 2M21 18l-2 2-2 2"></path>
|
<path d="M3 6h18M3 12h18M3 18h18"></path>
|
||||||
</svg>
|
<path d="M21 6l-2-2-2 2M21 18l-2 2-2 2"></path>
|
||||||
</span>
|
</svg>
|
||||||
<span id="reverseText">Reverse</span>
|
</span>
|
||||||
</button>
|
<span id="reverseText">Reverse</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bookmark-controls">
|
<div class="bookmark-controls">
|
||||||
|
|
|
||||||
47
script.js
47
script.js
|
|
@ -283,34 +283,35 @@ function createAlbumCard(album) {
|
||||||
`<div class="album-cover-icon">🎵</div>`
|
`<div class="album-cover-icon">🎵</div>`
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
<div class="album-status ${statusClass}">${statusText}</div>
|
<div class="album-status-row">
|
||||||
|
<div class="album-status ${statusClass}">${statusText}</div>
|
||||||
|
<button class="album-share" title="Share this album" data-rank="${album.Rank}">
|
||||||
|
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"></path>
|
||||||
|
<polyline points="16,6 12,2 8,6"></polyline>
|
||||||
|
<line x1="12" y1="2" x2="12" y2="15"></line>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
${album.Description ? `<div class="album-description">${formatDescription(album.Description)}</div>` : ''}
|
${album.Description ? `<div class="album-description">${formatDescription(album.Description)}</div>` : ''}
|
||||||
<div class="album-links">
|
<div class="album-links">
|
||||||
<a href="${generateWikipediaUrl(album.Album, album.Artist)}" target="_blank" rel="noopener noreferrer" class="wikipedia-link">
|
<div class="album-links-row">
|
||||||
View on Wikipedia →
|
<a href="${generateWikipediaUrl(album.Album, album.Artist)}" target="_blank" rel="noopener noreferrer" class="wikipedia-link">
|
||||||
</a>
|
View on Wikipedia →
|
||||||
<a href="${generateSpotifyUrl(album.Album, album.Artist)}" target="_blank" rel="noopener noreferrer" class="spotify-link">
|
</a>
|
||||||
<svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor" style="margin-right: 0.5rem;">
|
<a href="${generateSpotifyUrl(album.Album, album.Artist)}" target="_blank" rel="noopener noreferrer" class="spotify-link">
|
||||||
<path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.84-.179-.959-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.361 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.42 1.56-.299.421-1.02.599-1.559.3z"/>
|
<svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor" style="margin-right: 0.5rem;">
|
||||||
</svg>
|
<path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.84-.179-.959-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.361 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.42 1.56-.299.421-1.02.599-1.559.3z"/>
|
||||||
Listen on Spotify
|
</svg>
|
||||||
</a>
|
Listen on Spotify
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
${album.Rank < 500 ? `
|
${album.Rank < 500 ? `
|
||||||
<button class="next-album-link" data-rank="${album.Rank}" title="Go to next album (#${album.Rank + 1})">
|
<button class="next-album-link next-album-link-wide" data-rank="${album.Rank}" title="Go to next album (#${album.Rank + 1})">
|
||||||
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-right: 0.5rem;">
|
Next Album →
|
||||||
<polyline points="9,18 15,12 9,6"></polyline>
|
|
||||||
</svg>
|
|
||||||
Next (#${album.Rank + 1})
|
|
||||||
</button>
|
</button>
|
||||||
` : ''}
|
` : ''}
|
||||||
</div>
|
</div>
|
||||||
<button class="album-share" title="Share this album" data-rank="${album.Rank}">
|
|
||||||
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
||||||
<path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"></path>
|
|
||||||
<polyline points="16,6 12,2 8,6"></polyline>
|
|
||||||
<line x1="12" y1="2" x2="12" y2="15"></line>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
// Description is now always fully visible
|
// Description is now always fully visible
|
||||||
|
|
@ -711,7 +712,7 @@ function scrollToRank(rank) {
|
||||||
if (albumCard) {
|
if (albumCard) {
|
||||||
albumCard.scrollIntoView({
|
albumCard.scrollIntoView({
|
||||||
behavior: 'smooth',
|
behavior: 'smooth',
|
||||||
block: 'center'
|
block: 'start'
|
||||||
});
|
});
|
||||||
|
|
||||||
// Highlight the album briefly
|
// Highlight the album briefly
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,507 @@
|
||||||
{
|
{
|
||||||
"What's Going On": "https://open.spotify.com/album/2v6ANhWhZBUKkg6pJJBs3B",
|
"What's Going On": "https://open.spotify.com/album/7qD9oSiS3xFJsw2oSV2akp",
|
||||||
"Pet Sounds": "https://open.spotify.com/album/6GphKx2QAPRoVGWE9D7ou8",
|
"Pet Sounds": "https://open.spotify.com/album/2CNEkSE8TADXRT2AzcEt1b",
|
||||||
"Blue": "https://open.spotify.com/album/1vz94WpXDVDEF245b3JakL",
|
"Blue": "https://open.spotify.com/album/1vz94WpXDVYIEGja8cjFNa",
|
||||||
"Songs in the Key of Life": "https://open.spotify.com/album/6YUCc2RiXcEKS9ibuZxjt0",
|
"Songs in the Key of Life": "https://open.spotify.com/album/6YUCc2RiXcEKS9ibuZxjt0",
|
||||||
"Abbey Road": "https://open.spotify.com/album/0ETFjACtuP2ADo6LFhL6HN",
|
"Abbey Road": "https://open.spotify.com/album/0ETFjACtuP2ADo6LFhL6HN",
|
||||||
"Nevermind": "https://open.spotify.com/album/2UJcKiJxNryhL050F5Z1Fk",
|
"Nevermind": "https://open.spotify.com/album/2UJcKiJxNryhL050F5Z1Fk",
|
||||||
"Rumours": "https://open.spotify.com/album/07w9BmFsXyDmnc0dEskJwq",
|
"Rumours": "https://open.spotify.com/album/0BwWUstDMUbgq2NYONRqlu",
|
||||||
"Purple Rain": "https://open.spotify.com/album/7nXJ5k4XgRj5OLg9m8V3zc",
|
"Purple Rain": "https://open.spotify.com/album/2umoqwMrmjBBPeaqgYu6J9",
|
||||||
"Blood on the Tracks": "https://open.spotify.com/album/4WD4pslu83FF6oMa1e19mF",
|
"Blood on the Tracks": "https://open.spotify.com/album/4WD4pslu83FF6oMa1e19mF",
|
||||||
"The Miseducation of Lauryn Hill": "https://open.spotify.com/album/1BZoqf8Zje5nGdwZhOjAtD",
|
"The Miseducation of Lauryn Hill": "https://open.spotify.com/album/1BZoqf8Zje5nGdwZhOjAtD",
|
||||||
"Revolver": "https://open.spotify.com/album/3PRoXYsngSwjEQWR5PsHWR",
|
"Revolver": "https://open.spotify.com/album/3PRoXYsngSwjEQWR5PsHWR",
|
||||||
"Thriller": "https://open.spotify.com/album/2ANVost0y2y52ema1E9xAZ",
|
"Thriller": "https://open.spotify.com/album/2ANVost0y2y52ema1E9xAZ",
|
||||||
"I Never Loved a Man the Way I Love You": "https://open.spotify.com/album/7nq5c4WBLbfkJC7ynPWGGN",
|
"I Never Loved a Man the Way I Love You": "https://open.spotify.com/album/5WndWfzGwCkHzAbQXVkg2V",
|
||||||
"Exile on Main St.": "https://open.spotify.com/album/1mNdRhXeEsWyOjJw2UNK6V",
|
"Exile on Main St.": "https://open.spotify.com/album/5U4dnRZsfW8NmwBBkELFPh",
|
||||||
"It Takes a Nation of Millions to Hold Us Back": "https://open.spotify.com/album/1ji14JjsqKMjU5zNZ2kMgY",
|
"It Takes a Nation of Millions to Hold Us Back": "https://open.spotify.com/album/3PxXiYU3PjymOEE22PewGZ",
|
||||||
"London Calling": "https://open.spotify.com/album/6FCzvFN3gsQ3dOF6VIlHKW",
|
"London Calling": "https://open.spotify.com/album/6FCzvataOZh68j8OKzOt9a",
|
||||||
"My Beautiful Dark Twisted Fantasy": "https://open.spotify.com/album/20r762YmB5HeofjMCiPMLv",
|
"My Beautiful Dark Twisted Fantasy": "https://open.spotify.com/album/20r762YmB5HeofjMCiPMLv",
|
||||||
"Highway 61 Revisited": "https://open.spotify.com/album/6YabPKtZAjxwyWbuO9p0gO",
|
"Highway 61 Revisited": "https://open.spotify.com/album/6YabPKtZAjxwyWbuO9p4ZD",
|
||||||
"To Pimp a Butterfly": "https://open.spotify.com/album/7ycBtnsMtyVbbwTfJwRjSP",
|
"To Pimp a Butterfly": "https://open.spotify.com/album/7ycBtnsMtyVbbwTfJwRjSP",
|
||||||
"Kid A": "https://open.spotify.com/album/6GjwtEZcIDsjCjLHvyyULs"
|
"Kid A": "https://open.spotify.com/album/6GjwtEZcfenmOf6l18N7T7",
|
||||||
|
"Born to Run": "https://open.spotify.com/album/43YIoHKSrEw2GJsWmhZIpu",
|
||||||
|
"Ready to Die": "https://open.spotify.com/album/2HTbQ0RHwukKVXAlTmCZP2",
|
||||||
|
"The Velvet Underground & Nico": "https://open.spotify.com/album/4xwx0x7k6c5VuThz5qVqmV",
|
||||||
|
"Sgt. Pepper's Lonely Hearts Club Band": "https://open.spotify.com/album/6QaVfG1pHYl1z15ZxkvVDW",
|
||||||
|
"Tapestry": "https://open.spotify.com/album/12n11cgnpjXKLeqrnIERoS",
|
||||||
|
"Horses": "https://open.spotify.com/album/7xg7u99lilTCPbaRfnYuy6",
|
||||||
|
"Enter the Wu-Tang (36 Chambers)": "https://open.spotify.com/album/3tQd5mwBtVyxCoEo4htGAV",
|
||||||
|
"Voodoo": "https://open.spotify.com/album/2lO9yuuIDgBpSJzxTh3ai8",
|
||||||
|
"The Beatles": "https://open.spotify.com/album/1klALx0u4AavZNEvC4LrTL",
|
||||||
|
"Are You Experienced": "https://open.spotify.com/album/7rSZXXHHvIhF4yUFdaOCy9",
|
||||||
|
"Kind of Blue": "https://open.spotify.com/album/4sb0eMpDn3upAFfyi4q2rw",
|
||||||
|
"Lemonade": "https://open.spotify.com/album/7dK54iZuOxXFarGhXwEXfF",
|
||||||
|
"Back to Black": "https://open.spotify.com/album/0E4xv5gPjykrwBgBZzI8XG",
|
||||||
|
"Innervisions": "https://open.spotify.com/album/5jgI8Eminx9MmLBontDWq8",
|
||||||
|
"Rubber Soul": "https://open.spotify.com/album/50o7kf2wLwVmOTVYJOTplm",
|
||||||
|
"Off the Wall": "https://open.spotify.com/album/2ZytN2cY4Zjrr9ukb2rqTP",
|
||||||
|
"The Chronic": "https://open.spotify.com/album/2V5rhszUpCudPcb01zevOt",
|
||||||
|
"Blonde on Blonde": "https://open.spotify.com/album/4NP1rhnsPdYpnyJP0p0k0L",
|
||||||
|
"Remain in Light": "https://open.spotify.com/album/3AQgdwMNCiN7awXch5fAaG",
|
||||||
|
"The Rise and Fall of Ziggy Stardust and the Spiders from Mars": "https://open.spotify.com/album/48D1hRORqJq52qsnUYZX56",
|
||||||
|
"Let It Bleed": "https://open.spotify.com/album/4l4u9e9jSbotSXNjYfOugy",
|
||||||
|
"OK Computer": "https://open.spotify.com/album/6dVIqQ8qmQ5GBnJ9shOYGE",
|
||||||
|
"The Low End Theory": "https://open.spotify.com/album/1p12OAWwudgMqfMzjMvl2a",
|
||||||
|
"Illmatic": "https://open.spotify.com/album/3kEtdS2pH6hKcMU9Wioob1",
|
||||||
|
"Sign o' the Times": "https://open.spotify.com/album/2Uv3zad993qvBkrOcIqdgq",
|
||||||
|
"Graceland": "https://open.spotify.com/album/6WgGWYw6XXQyLTsWt7tXky",
|
||||||
|
"Ramones": "https://open.spotify.com/album/5uYDAwW0SZgcfOFkxrST64",
|
||||||
|
"Exodus": "https://open.spotify.com/album/655KljKIXl42fiNDMKivbY",
|
||||||
|
"Aquemini": "https://open.spotify.com/album/5ceB3rxgXqIRpsOvVzTG28",
|
||||||
|
"The Blueprint": "https://open.spotify.com/album/2CUT0104gySOIvqwtXeFsX",
|
||||||
|
"The Great Twenty-Eight": "https://open.spotify.com/album/7pY0hwPU10gaH4qDsDFA6d",
|
||||||
|
"Station to Station": "https://open.spotify.com/album/0MWrKayUshRuT8maG4ZAOU",
|
||||||
|
"Electric Ladyland": "https://open.spotify.com/album/5z090LQztiqh13wYspQvKQ",
|
||||||
|
"Star Time": "https://open.spotify.com/album/7IHXfSBOq8B5prbtzzDUsx",
|
||||||
|
"The Dark Side of the Moon": "https://open.spotify.com/album/4LH4d3cOWNNsVw41Gqt2kv",
|
||||||
|
"Exile in Guyville": "https://open.spotify.com/album/7sCpW2cLGcRk1zf9zi0Yqd",
|
||||||
|
"The Band": "https://open.spotify.com/album/6T0TXzF0VSIc8QbUqJrB2w",
|
||||||
|
"Led Zeppelin IV": "https://open.spotify.com/album/44Ig8dzqOkvkGDzaUof9lK",
|
||||||
|
"Talking Book": "https://open.spotify.com/album/3PResMqFgQYBfzTnqTKwQw",
|
||||||
|
"Astral Weeks": "https://open.spotify.com/album/4pG3bKkbmReDt5QTDn3JDz",
|
||||||
|
"Paid in Full": "https://open.spotify.com/album/3miZDfDnP7SmOXAJXWdFmz",
|
||||||
|
"Appetite for Destruction": "https://open.spotify.com/album/28yHV3Gdg30AiB8h8em1eW",
|
||||||
|
"Aja": "https://open.spotify.com/album/1hOK2ey9W76x9GnftSRgrw",
|
||||||
|
"Stankonia": "https://open.spotify.com/album/2tm3Ht61kqqRZtIYsBjxEj",
|
||||||
|
"Live at the Apollo": "https://open.spotify.com/album/0B6BbyElOe4bwziJrunOTe",
|
||||||
|
"A Love Supreme": "https://open.spotify.com/album/7Eoz7hJvaX1eFkbpQxC5PA",
|
||||||
|
"Reasonable Doubt": "https://open.spotify.com/album/3gHvsTdiiZWGxEg32lyLwk",
|
||||||
|
"Hounds of Love": "https://open.spotify.com/album/5G5UwqPsxDKpxJLX4xsyuh",
|
||||||
|
"Jagged Little Pill": "https://open.spotify.com/album/5Ap3F8CxjjsQKZGASDcHNA",
|
||||||
|
"Straight Outta Compton": "https://open.spotify.com/album/0Y7qkJVZ06tS2GUCDptzyW",
|
||||||
|
"Renaissance": "https://open.spotify.com/album/6FJxoadUE4JNVwWHghBwnb",
|
||||||
|
"Harvest": "https://open.spotify.com/album/2LOpi63tYGh0Suy8eLJDVQ",
|
||||||
|
"Loveless": "https://open.spotify.com/album/3USQKOw0se5pBNEndu82Rb",
|
||||||
|
"The College Dropout": "https://open.spotify.com/album/4Uv86qWpGTxf7fU7lG5X6F",
|
||||||
|
"Lady Soul": "https://open.spotify.com/album/7lEOKZaOpqP70UYqdLPejG",
|
||||||
|
"Super Fly": "https://open.spotify.com/album/5ljIGCRRvS48V4ADzPGav2",
|
||||||
|
"Who's Next": "https://open.spotify.com/album/4uehIELOvaBf8ZbhQGrhkd",
|
||||||
|
"The Sun Sessions": "https://open.spotify.com/album/3gpHiNAmT5oXVxe6ewTGuN",
|
||||||
|
"Blonde": "https://open.spotify.com/album/3mH6qwIy9crq0I9YQbOuDf",
|
||||||
|
"Never Mind the Bollocks, Here's the Sex Pistols": "https://open.spotify.com/album/17lv1Ruxq46ZK5xAINAX8J",
|
||||||
|
"Beyoncé": "https://open.spotify.com/album/2UJwKSBUz6rtW4QLK74kQu",
|
||||||
|
"There's a Riot Goin' On": "https://open.spotify.com/album/29f2cOueckYE8Nc1pkJjrU",
|
||||||
|
"Dusty in Memphis": "https://open.spotify.com/album/5FRB5oQaHxlDNe6gMGuzu2",
|
||||||
|
"Back in Black": "https://open.spotify.com/album/6mUdeDZCsExyJLMdAfDuwh",
|
||||||
|
"John Lennon/Plastic Ono Band": "https://open.spotify.com/album/0DFYbYCcHCEJPcN1hODG6K",
|
||||||
|
"The Doors": "https://open.spotify.com/album/1jWmEhn3ggaL6isoyLfwBn",
|
||||||
|
"Bitches Brew": "https://open.spotify.com/album/3Q0zkOZEOC855ErOOJ1AdO",
|
||||||
|
"Hunky Dory": "https://open.spotify.com/album/6fQElzBNTiEMGdIeY0hy5l",
|
||||||
|
"Baduizm": "https://open.spotify.com/album/3qr4pTBWEU1SVf01j6RAx3",
|
||||||
|
"After the Gold Rush": "https://open.spotify.com/album/5EVlXlHbRQI8ybuNt4ArXI",
|
||||||
|
"Darkness on the Edge of Town": "https://open.spotify.com/album/4KT6G8fj8EEIfsyr75hbgc",
|
||||||
|
"Axis: Bold as Love": "https://open.spotify.com/album/3uFZf8rykoHo7XMIQVYW6r",
|
||||||
|
"Supa Dupa Fly": "https://open.spotify.com/album/6UkdyvPElK6JDkyeRClbI2",
|
||||||
|
"Fun House": "https://open.spotify.com/album/3FTcomSFg2zWSqWLRgBYpv",
|
||||||
|
"Take Care": "https://open.spotify.com/album/6X1x82kppWZmDzlXXK3y3q",
|
||||||
|
"Automatic for the People": "https://open.spotify.com/album/0BiNb8HYR4JvuxUa31Z58Q",
|
||||||
|
"Master of Puppets": "https://open.spotify.com/album/2Lq2qX3hYhiuPckC8Flj21",
|
||||||
|
"Car Wheels on a Gravel Road": "https://open.spotify.com/album/3iC6dJobZulVXp0F4Bojig",
|
||||||
|
"Red": "https://open.spotify.com/album/2OCqRoV6adWSAJXivSnFWs",
|
||||||
|
"Music from Big Pink": "https://open.spotify.com/album/0ky5kdvfPxSmSpj03hpSAE",
|
||||||
|
"Led Zeppelin": "https://open.spotify.com/album/44Ig8dzqOkvkGDzaUof9lK",
|
||||||
|
"The Clash": "https://open.spotify.com/album/49kzgMsxHU5CTeb2XmFHjo",
|
||||||
|
"3 Feet High and Rising": "https://open.spotify.com/album/34LxHI9x14qXUOS8AWRrYD",
|
||||||
|
"Sticky Fingers": "https://open.spotify.com/album/29m6DinzdaD0OPqWKGyMdz",
|
||||||
|
"At Fillmore East": "https://open.spotify.com/album/0Y5Wlv2OJKaW0uDJ5HnUfy",
|
||||||
|
"Live Through This": "https://open.spotify.com/album/2Rwf2nPYZQ9aIe4QXACTC7",
|
||||||
|
"Marquee Moon": "https://open.spotify.com/album/630o1rKTDsLeIPreOY1jqP",
|
||||||
|
"When the Pawn...": "https://open.spotify.com/album/3o5EnVZNJXtfPV8tCoagjI",
|
||||||
|
"Transformer": "https://open.spotify.com/album/5SqbMEyAt8332ISGiLX0St",
|
||||||
|
"Court and Spark": "https://open.spotify.com/album/2akjxkzFolkeV72Yyv5KrM",
|
||||||
|
"Control": "https://open.spotify.com/album/7GWkceE5McMVfffd1RGL6Y",
|
||||||
|
"Goodbye Yellow Brick Road": "https://open.spotify.com/album/5WupqgR68HfuHt3BMJtgun",
|
||||||
|
"The Queen Is Dead": "https://open.spotify.com/album/5Y0p2XCgRRIjna91aQE8q7",
|
||||||
|
"Is This It": "https://open.spotify.com/album/2yNaksHgeMQM9Quse463b5",
|
||||||
|
"Good Kid, M.A.A.D City": "https://open.spotify.com/album/0Oq3mWfexhsjUh0aNNBB5u",
|
||||||
|
"Disintegration": "https://open.spotify.com/album/0H6TddUF2M63ZSHGvhk5yy",
|
||||||
|
"Late Registration": "https://open.spotify.com/album/5ll74bqtkcXlKE7wwkMq4g",
|
||||||
|
"Hotel California": "https://open.spotify.com/album/2widuo17g5CEC66IbzveRu",
|
||||||
|
"Stand!": "https://open.spotify.com/album/7iwS1r6JHYJe9xpPjzmWqD",
|
||||||
|
"Moondance": "https://open.spotify.com/album/5PfnCqRbdfIDMb1x3MPQam",
|
||||||
|
"This Year's Model": "https://open.spotify.com/album/4RLIesiAVONV4fOUlOSmr4",
|
||||||
|
"The Downward Spiral": "https://open.spotify.com/album/5I7lLu8xXJfGRdFUqHaLQU",
|
||||||
|
"Led Zeppelin II": "https://open.spotify.com/album/6P5QHz4XtxOmS5EuiGIPut",
|
||||||
|
"Achtung Baby": "https://open.spotify.com/album/0ta5VdkJcpdVnNrn7g4cZe",
|
||||||
|
"Paul's Boutique": "https://open.spotify.com/album/1kmyirVya5fRxdjsPFDM05",
|
||||||
|
"My Life": "https://open.spotify.com/album/1OQ5l5rHKqUumPpn559zJC",
|
||||||
|
"Modern Sounds in Country and Western Music": "https://open.spotify.com/album/0UvA1bMY9dqS6LQ4ktBl4y",
|
||||||
|
"A Night at the Opera": "https://open.spotify.com/album/1GbtB4zTqAsyfZEsm1RZfx",
|
||||||
|
"The Wall": "https://open.spotify.com/album/5Dbax7G8SWrP9xyzkOvy2F",
|
||||||
|
"1999": "https://open.spotify.com/album/3U1ht9EdWEI9nMvaqdQI67",
|
||||||
|
"Dummy": "https://open.spotify.com/album/3539EbNgIdEDGBKkUf4wno",
|
||||||
|
"40 Greatest Hits": "https://open.spotify.com/album/6zIYEv6soMoaZiypsHB5dd",
|
||||||
|
"Hejira": "https://open.spotify.com/album/3Z0qQc09rmk4JYtIaxEx2J",
|
||||||
|
"The Score": "https://open.spotify.com/album/18XFe4CPBgVezXkxZP6rTb",
|
||||||
|
"The Joshua Tree": "https://open.spotify.com/album/5y6wlw1LnqFnQFruMeiwGU",
|
||||||
|
"Maggot Brain": "https://open.spotify.com/album/3ywVzrwMQ3Kq43N9zBdBQm",
|
||||||
|
"21": "https://open.spotify.com/album/5duyQokC4FMcWPYTV9Gpf9",
|
||||||
|
"The Immaculate Collection": "https://open.spotify.com/album/5MzwGwnO9gkh0z6Nl4FF8h",
|
||||||
|
"Paranoid": "https://open.spotify.com/album/4kA2o0L3tz9vFKJetiFUJI",
|
||||||
|
"Catch a Fire": "https://open.spotify.com/album/39kLAVdcgW7jbMcTEaY2qy",
|
||||||
|
"Doolittle": "https://open.spotify.com/album/0DQyTVcDhK9wm0f6RaErWO",
|
||||||
|
"Born in the U.S.A.": "https://open.spotify.com/album/0PMasrHdpaoIRuHuhHp72O",
|
||||||
|
"The Velvet Underground": "https://open.spotify.com/album/4xwx0x7k6c5VuThz5qVqmV",
|
||||||
|
"Physical Graffiti": "https://open.spotify.com/album/26tH0kjUhkxBEd3ipGkx3Y",
|
||||||
|
"The Marshall Mathers LP": "https://open.spotify.com/album/6t7956yu5zYf5A829XRiHC",
|
||||||
|
"Parallel Lines": "https://open.spotify.com/album/5wc12ZsmXNIlppTmNFZFLU",
|
||||||
|
"Grace": "https://open.spotify.com/album/7yQtjAjhtNi76KRu05XWFS",
|
||||||
|
"Channel Orange": "https://open.spotify.com/album/392p3shh2jkxUxY2VHvlH8",
|
||||||
|
"John Prine": "https://open.spotify.com/album/5t4FHrIAHI8nolSAOBRgPp",
|
||||||
|
"Nebraska": "https://open.spotify.com/album/6yskFQZNlLYhkchAxELHi6",
|
||||||
|
"Faith": "https://open.spotify.com/album/34K1Kvskt9arWy8E1Gz3Lw",
|
||||||
|
"Pretenders": "https://open.spotify.com/album/3OkWTwwHgFEYsVKujJcXWu",
|
||||||
|
"Rid of Me": "https://open.spotify.com/album/2fDJpBJhtloxzUENHlU9JB",
|
||||||
|
"Amazing Grace": "https://open.spotify.com/album/5pIUimaQ6XePPXbMUi3te0",
|
||||||
|
"The Black Album": "https://open.spotify.com/album/4FWvo9oS4gRgHtAwDwUjiO",
|
||||||
|
"Let It Be": "https://open.spotify.com/album/0jTGHV5xqHPvEcwL8f6YU5",
|
||||||
|
"(What's the Story) Morning Glory?": "https://open.spotify.com/album/6tOe4eAF8xNhEkl9WyvsE4",
|
||||||
|
"Mama's Gun": "https://open.spotify.com/album/3cADvHRdKniF9ELCn1zbGH",
|
||||||
|
"Synchronicity": "https://open.spotify.com/album/5W9OT0a5iZlBr83a9WMKFY",
|
||||||
|
"Ten": "https://open.spotify.com/album/5B4PYA7wNN4WdEXdIJu58a",
|
||||||
|
"Crosby, Stills & Nash": "https://open.spotify.com/album/6vUWpE8qciYHOhf7mgaGny",
|
||||||
|
"Different Class": "https://open.spotify.com/album/3ly9T2L4pqTZijFgQssd3x",
|
||||||
|
"Saturday Night Fever": "https://open.spotify.com/album/3xaCKtqadm4KnviPFKEjs7",
|
||||||
|
"At Folsom Prison": "https://open.spotify.com/album/4TJIdlY9hGSSTO1kUs1neh",
|
||||||
|
"Murmur": "https://open.spotify.com/album/33XZTGUv8p3Cl3KYwZQ2VH",
|
||||||
|
"20 Golden Greats": "https://open.spotify.com/album/2MwhKwYfaGXfCMNKJQr6VA",
|
||||||
|
"Violator": "https://open.spotify.com/album/0Tg76MY2wNK4j37iCb6qyH",
|
||||||
|
"Can't Buy a Thrill": "https://open.spotify.com/album/6DlSUW5gmq6Byc3osKDJ2p",
|
||||||
|
"The Stranger": "https://open.spotify.com/album/1Mhn9VosyjtWn4dMPFlna6",
|
||||||
|
"Folklore": "https://open.spotify.com/album/2fenSS68JI1h4Fo296JfGr",
|
||||||
|
"Daydream Nation": "https://open.spotify.com/album/23O4F21GDWiGd33tFN3ZgI",
|
||||||
|
"Bridge over Troubled Water": "https://open.spotify.com/album/0JwHz5SSvpYWuuCNbtYZoV",
|
||||||
|
"In Utero": "https://open.spotify.com/album/6ohX7moZZnF1FwYrli1OJ6",
|
||||||
|
"The Harder They Come": "https://open.spotify.com/album/1tqMU6OQ9DlXAIWeK29UzU",
|
||||||
|
"Damn": "https://open.spotify.com/album/4eLPsYPBmXABThSJ821sqY",
|
||||||
|
"Fear of a Black Planet": "https://open.spotify.com/album/0aFNb4RDk2hmKKLa0bzXNz",
|
||||||
|
"Every Picture Tells a Story": "https://open.spotify.com/album/4VykjLwkyfKMZVLrJJVrYh",
|
||||||
|
"Otis Blue/Otis Redding Sings Soul": "https://open.spotify.com/album/68BCjMsHX4Gf11BJSkjwGz",
|
||||||
|
"Life After Death": "https://open.spotify.com/album/7dRdaGSxgcBdJnrOviQRuB",
|
||||||
|
"Forever Changes": "https://open.spotify.com/album/2amHBpP8C0EUy6yBNy6nN6",
|
||||||
|
"Bringing It All Back Home": "https://open.spotify.com/album/1lPoRKSgZHQAYXxzBsOQ7v",
|
||||||
|
"Sweet Baby James": "https://open.spotify.com/album/1HiG0ukRmFPN13EVcf98Jx",
|
||||||
|
"Brown Sugar": "https://open.spotify.com/album/4HTVABUq8amDUxBv3zJbX4",
|
||||||
|
"She's So Unusual": "https://open.spotify.com/album/1FvdZ1oizXwF9bxogujoF0",
|
||||||
|
"Beggars Banquet": "https://open.spotify.com/album/6OHri5qNxwCdVSdyCslspd",
|
||||||
|
"Blood Sugar Sex Magik": "https://open.spotify.com/album/30Perjew8HyGkdSmqguYyg",
|
||||||
|
"AmeriKKKa's Most Wanted": "https://open.spotify.com/album/3AI5kAUjgNtZBwFRi6opDc",
|
||||||
|
"Electric Warrior": "https://open.spotify.com/album/2wnq5e000z2hT7qS2F8jZ5",
|
||||||
|
"Dig Me Out": "https://open.spotify.com/album/3tshnNFNhHrO6NUQ0BHw42",
|
||||||
|
"Tommy": "https://open.spotify.com/album/5cT7ee1sy2oEbFalP4asS4",
|
||||||
|
"At Last!": "https://open.spotify.com/album/7rd4PorIOPjPTy7qdUeeCt",
|
||||||
|
"Licensed to Ill": "https://open.spotify.com/album/11oR0ZuqB3ucZwb5TGbZxb",
|
||||||
|
"Willy and the Poor Boys": "https://open.spotify.com/album/31q47gQszFt0CddSyMksgO",
|
||||||
|
"Bad": "https://open.spotify.com/album/3Us57CjssWnHjTUIXBuIeH",
|
||||||
|
"Songs of Leonard Cohen": "https://open.spotify.com/album/2Aiv0ThDpFa7lqHphR6MN5",
|
||||||
|
"Body Talk": "https://open.spotify.com/album/0uQvFZsNoC7MZpcZZLtlYs",
|
||||||
|
"Meet the Beatles!": "https://open.spotify.com/album/6IKycpEVcUtUpUKUa2DeOf",
|
||||||
|
"The B-52's": "https://open.spotify.com/album/5WfJAzA1B1skksrnV6yLFH",
|
||||||
|
"Slanted and Enchanted": "https://open.spotify.com/album/7o14zVcXSRk7clV6QCEdOD",
|
||||||
|
"Diamond Life": "https://open.spotify.com/album/3JcNnjMVSKiNpqhErZarW0",
|
||||||
|
"Midnight Marauders": "https://open.spotify.com/album/4v5x3Oo3UjQ9YmF3hRAip5",
|
||||||
|
"Homogenic": "https://open.spotify.com/album/0h19Ty9F2Ma8pKkRdx17UT",
|
||||||
|
"Pink Moon": "https://open.spotify.com/album/5mwOo1zikswhmfHvtqVSXg",
|
||||||
|
"Graduation": "https://open.spotify.com/album/4SZko61aMnmgvNhfhgTuD3",
|
||||||
|
"Tea for the Tillerman": "https://open.spotify.com/album/44VxbAytHpVi3Rq8hRhild",
|
||||||
|
"Low": "https://open.spotify.com/album/2de6LD7eOW8zrlorbS28na",
|
||||||
|
"Eagles": "https://open.spotify.com/album/51B7LbLWgYLKBVSpkan8Z7",
|
||||||
|
"Tha Carter III": "https://open.spotify.com/album/1Do3y8IAcbYOToYQJnGwSO",
|
||||||
|
"Raising Hell": "https://open.spotify.com/album/7AFsTiojVaB2I58oZ1tMRg",
|
||||||
|
"The Birth of Soul": "https://open.spotify.com/album/3RPMCDSd1yj37hlqbizmeT",
|
||||||
|
"Unknown Pleasures": "https://open.spotify.com/album/33qkK1brpt6t8unIpeM2Oy",
|
||||||
|
"Wild Is the Wind": "https://open.spotify.com/album/2EYVXfypcucR62WMKJl6Mr",
|
||||||
|
"The Idler Wheel...": "https://open.spotify.com/album/6B5favhKTShFTjRLsKIUfa",
|
||||||
|
"Wildflowers": "https://open.spotify.com/album/3ZGUBwDiY5HPOcWv4SBPQg",
|
||||||
|
"American Beauty": "https://open.spotify.com/album/2UDDZVesmQwA4aYfa55diS",
|
||||||
|
"Either/Or": "https://open.spotify.com/album/5hryhrT7wEdLnZCbJX9F6L",
|
||||||
|
"Definitely Maybe": "https://open.spotify.com/album/3AMHMM2aNG6k3d7ybcQ5bY",
|
||||||
|
"CrazySexyCool": "https://open.spotify.com/album/5eg56dCpFn32neJak2vk0f",
|
||||||
|
"Only Built 4 Cuban Linx...": "https://open.spotify.com/album/7btiyhWzUfzxN3ijSiBpC8",
|
||||||
|
"Déjà Vu": "https://open.spotify.com/album/3W2YH6i1ioXaS46nUkS7lB",
|
||||||
|
"Rage Against the Machine": "https://open.spotify.com/album/4Io5vWtmV1rFj4yirKb4y4",
|
||||||
|
"Ray of Light": "https://open.spotify.com/album/6cuNyrSmRjBeekioLdLkvI",
|
||||||
|
"Imagine": "https://open.spotify.com/album/0xzaemKucrJpYhyl7TltAk",
|
||||||
|
"Fly": "https://open.spotify.com/album/3y6G5El2I6QrJA9BdfAbqA",
|
||||||
|
"Yankee Hotel Foxtrot": "https://open.spotify.com/album/4jVVAenBaHRF8w0MV6qKw7",
|
||||||
|
"Layla and Other Assorted Love Songs": "https://open.spotify.com/album/5iIWnMgvSM8uEBwXKsPcXM",
|
||||||
|
"Here's Little Richard": "https://open.spotify.com/album/18tV6PLXYvVjsdOVk0S7M8",
|
||||||
|
"De La Soul Is Dead": "https://open.spotify.com/album/5F3GEttPPR58Gg15BKUsTd",
|
||||||
|
"The Ultimate Collection": "https://open.spotify.com/album/54Ykk8Gg8TuHjLbYvErsKh",
|
||||||
|
"Anti": "https://open.spotify.com/album/4UlGauD7ROb3YbVOFMgW5u",
|
||||||
|
"Damn the Torpedoes": "https://open.spotify.com/album/708Whrc4abJEtqBINv9S2b",
|
||||||
|
"Giant Steps": "https://open.spotify.com/album/7MBQWjukLxXZYvQ8vzEH7t",
|
||||||
|
"Little Earthquakes": "https://open.spotify.com/album/5bxqwBKvCyB67zOEVCrFZE",
|
||||||
|
"Master of Reality": "https://open.spotify.com/album/24fNwoIq4NLDf4ARJYAFN9",
|
||||||
|
"Metallica": "https://open.spotify.com/album/7h5xn0Olvx2p0eQcSt1Osy",
|
||||||
|
"Discovery": "https://open.spotify.com/album/2noRn2Aes5aoNVsU6iWThc",
|
||||||
|
"Red Headed Stranger": "https://open.spotify.com/album/5aEtg4dxdBk4pj6SJ3hNsM",
|
||||||
|
"Trans-Europe Express": "https://open.spotify.com/album/0HHRIVjvBcnTepfeRVgS2f",
|
||||||
|
"Criminal Minded": "https://open.spotify.com/album/3PkWTXolCR9RkJrKiAsf55",
|
||||||
|
"Live at the Harlem Square Club, 1963": "https://open.spotify.com/album/3nTXqOEHr6AfTb1WSaB4Pm",
|
||||||
|
"Blue Lines": "https://open.spotify.com/album/5mAPk4qeNqVLtNydaWbWlf",
|
||||||
|
"Loaded": "https://open.spotify.com/album/2ny1rPsLOoKNFZhMLubMrs",
|
||||||
|
"Odessey and Oracle": "https://open.spotify.com/album/6ToVzL6h7HnatpBcOF0fH5",
|
||||||
|
"808s & Heartbreak": "https://open.spotify.com/album/3WFTGIO6E3Xh4paEOBY9OU",
|
||||||
|
"Heaven or Las Vegas": "https://open.spotify.com/album/5lEphbceIgaK1XxWeSrC9E",
|
||||||
|
"Mama Said Knock You Out": "https://open.spotify.com/album/7p7kcsrdoJ8DKQIMouujcb",
|
||||||
|
"Love Deluxe": "https://open.spotify.com/album/2PfGKHtqEX58bHtkQxJnWG",
|
||||||
|
"American Idiot": "https://open.spotify.com/album/5dN7F9DV0Qg1XRdIgW8rke",
|
||||||
|
"Whitney Houston": "https://open.spotify.com/album/2MH37enG6IPvNK5QFLyKes",
|
||||||
|
"Singles Going Steady": "https://open.spotify.com/album/6TxgQwGrbG3XZLNPOEhg7E",
|
||||||
|
"Honky Château": "https://open.spotify.com/album/30ey65p5ZWsi82MsferipB",
|
||||||
|
"Q: Are We Not Men? A: We Are Devo!": "https://open.spotify.com/album/1KkMseKFaUHN3TXrXF3jHT",
|
||||||
|
"The Piper at the Gates of Dawn": "https://open.spotify.com/album/2Se4ZylF9NkFGD92yv1aZC",
|
||||||
|
"Head Hunters": "https://open.spotify.com/album/5fmIolILp5NAtNYiRPjhzA",
|
||||||
|
"The Freewheelin' Bob Dylan": "https://open.spotify.com/album/0o1uFxZ1VTviqvNaYkTJek",
|
||||||
|
"Tracy Chapman": "https://open.spotify.com/album/6hmmX5UP4rIvOpGSaPerV8",
|
||||||
|
"Coat of Many Colors": "https://open.spotify.com/album/17CT6ru3CyDXAi6xVaSUzg",
|
||||||
|
"The Hissing of Summer Lawns": "https://open.spotify.com/album/3gUlFM3azK6ZIkKz1zK7Nj",
|
||||||
|
"Pearl": "https://open.spotify.com/album/3j7nicLAWXM0Fb08q9XGyf",
|
||||||
|
"Cut": "https://open.spotify.com/album/6ppPT0aXOtsAlG1QQVB9E0",
|
||||||
|
"Check Your Head": "https://open.spotify.com/album/7CSP7J60QKIBCqOV64qILq",
|
||||||
|
"Power, Corruption & Lies": "https://open.spotify.com/album/6NTrwu1XJ56jBPx7HMksbZ",
|
||||||
|
"A Hard Day's Night": "https://open.spotify.com/album/28wyXPCrgKrXZxnKywfLaU",
|
||||||
|
"Wish You Were Here": "https://open.spotify.com/album/0bCAjiUamIFqKJsekOYuRw",
|
||||||
|
"Wowee Zowee": "https://open.spotify.com/album/0OHDiDMyxzWJfwtoeHNCf4",
|
||||||
|
"Help!": "https://open.spotify.com/album/0PT5m6hwPRrpBwIHVnvbFX",
|
||||||
|
"Double Nickels on the Dime": "https://open.spotify.com/album/5viZ5HyYtV0wafK7DoXmgF",
|
||||||
|
"Sail Away": "https://open.spotify.com/album/7ojNQckNp7Tj2BkLJCiiUL",
|
||||||
|
"Yeezus": "https://open.spotify.com/album/7D2NdGvBHIavgLhmcwhluK",
|
||||||
|
"Golden Hour": "https://open.spotify.com/album/7f6xPqyaolTiziKf5R5Z0c",
|
||||||
|
"What's the 411?": "https://open.spotify.com/album/5Q3xLiKnY4ShDuQda7qfg2",
|
||||||
|
"White Light/White Heat": "https://open.spotify.com/album/0HHmJpwOXXRJu9HI9iQiEO",
|
||||||
|
"Entertainment!": "https://open.spotify.com/album/1UMvR1rwj9EzLnbj4L6Zoy",
|
||||||
|
"Sweetheart of the Rodeo": "https://open.spotify.com/album/02XyFDfvHfIwtqOC3o0PcK",
|
||||||
|
"Curtis": "https://open.spotify.com/album/3tgJmEz0R0ZsRSrpwafp4R",
|
||||||
|
"The Bends": "https://open.spotify.com/album/35UJLpClj5EDrhpNIi4DFg",
|
||||||
|
"The Diary of Alicia Keys": "https://open.spotify.com/album/6TqRKHLjDu5QZuC8u5Woij",
|
||||||
|
"Houses of the Holy": "https://open.spotify.com/album/0GqpoHJREPp0iuXK3HzrHk",
|
||||||
|
"MTV Unplugged in New York": "https://open.spotify.com/album/1To7kv722A8SpZF789MZy7",
|
||||||
|
"Get Rich or Die Tryin'": "https://open.spotify.com/album/5G5rgQHzdQnw32SI0WjIo5",
|
||||||
|
"Nilsson Schmilsson": "https://open.spotify.com/album/3EfpOFKjotrMQTFTnxrXaB",
|
||||||
|
"In the Wee Small Hours": "https://open.spotify.com/album/3GmwKB1tgPZgXeRJZSm9WX",
|
||||||
|
"Bad Girls": "https://open.spotify.com/album/58GjBhQvLHwfQFJtdP9Oxg",
|
||||||
|
"Down Every Road 1962–1994": "https://open.spotify.com/album/40Wi0Ej08sw9B4URIOabOI",
|
||||||
|
"Third/Sister Lovers": "https://open.spotify.com/album/2P7iTgviFTwJH69Zaoo6oU",
|
||||||
|
"Californication": "https://open.spotify.com/album/2Y9IRtehByVkegoD7TcLfi",
|
||||||
|
"Mr. Tambourine Man": "https://open.spotify.com/album/0pkrqPjeq9K5KD0hFqAKNa",
|
||||||
|
"The Modern Lovers": "https://open.spotify.com/album/7ro1W6lc4tuTaRyA8rnVm1",
|
||||||
|
"Post": "https://open.spotify.com/album/2lYwBB5l7GqgyHFTHz0Itd",
|
||||||
|
"Speakerboxxx/The Love Below": "https://open.spotify.com/album/1UsmQ3bpJTyK6ygoOOjG1r",
|
||||||
|
"The Writing's on the Wall": "https://open.spotify.com/album/283NWqNsCA9GwVHrJk59CG",
|
||||||
|
"Van Halen": "https://open.spotify.com/album/7DdEbYFPKTZ8KB4z6L4UnQ",
|
||||||
|
"Last Splash": "https://open.spotify.com/album/57F44c0MTziVzHPEuJtH9A",
|
||||||
|
"Weezer": "https://open.spotify.com/album/1xpGyKyV26uPstk1Elgp9Q",
|
||||||
|
"Random Access Memories": "https://open.spotify.com/album/4m2880jivSbbyEGAKfITCa",
|
||||||
|
"Rust Never Sleeps": "https://open.spotify.com/album/2LOpi63tYGh0Suy8eLJDVQ",
|
||||||
|
"So": "https://open.spotify.com/album/0hQb1KT6L3iEYRkS5u8cjm",
|
||||||
|
"Full Moon Fever": "https://open.spotify.com/album/5d71Imt5CIb7LpQwDMQ093",
|
||||||
|
"Live at the Regal": "https://open.spotify.com/album/7njGz7ZeDXL6cH3VnflcQ2",
|
||||||
|
"Come On Over": "https://open.spotify.com/album/2aU5BWirMOaV1OpsakTIbV",
|
||||||
|
"New York Dolls": "https://open.spotify.com/album/2xbTV0Awe4Qm5caUVuPbMr",
|
||||||
|
"Tonight's the Night": "https://open.spotify.com/album/2wjrhhAibIUwC40oFMALtr",
|
||||||
|
"The Definitive Collection": "https://open.spotify.com/album/1V6a99EbTTIegOhWoPxYI9",
|
||||||
|
"Just as I Am": "https://open.spotify.com/album/6N8uPmDqbgXD3ztkCCfxoo",
|
||||||
|
"Alive!": "https://open.spotify.com/album/6TRmLIsPKSPS71Cnq8FiMc",
|
||||||
|
"I'm Still in Love with You": "https://open.spotify.com/album/7hI0QCwcx9GB8MZK24IfTT",
|
||||||
|
"Portrait of a Legend: 1951–1964": "https://open.spotify.com/album/6QGm9AGR7l5YYQPb66FGdc",
|
||||||
|
"Here Come the Warm Jets": "https://open.spotify.com/album/74jn28Kr29iyh8eZXSvnwi",
|
||||||
|
"Closer": "https://open.spotify.com/album/1HnxC8MLDciii5LebJ09Ko",
|
||||||
|
"Pink Flag": "https://open.spotify.com/album/4WXqZZ28geJSPtqLcCF56L",
|
||||||
|
"On the Beach": "https://open.spotify.com/album/3w5Hok05AFjCLy269xXM7e",
|
||||||
|
"A Seat at the Table": "https://open.spotify.com/album/3Yko2SxDk4hc6fncIBQlcM",
|
||||||
|
"Stories from the City, Stories from the Sea": "https://open.spotify.com/album/0hBWhJEmVyNPG2Jq71CJXz",
|
||||||
|
"One in a Million": "https://open.spotify.com/album/5VT7ND2Rq0MhfqxkAzBNz3",
|
||||||
|
"El Mal Querer": "https://open.spotify.com/album/355bjCHzRJztCzaG5Za4gq",
|
||||||
|
"The Who Sell Out": "https://open.spotify.com/album/2JyNDhGhp0hiizSPuUs0i9",
|
||||||
|
"Lady in Satin": "https://open.spotify.com/album/4LrLP7DM1KBj8r2Sc098JA",
|
||||||
|
"The Velvet Rope": "https://open.spotify.com/album/1uFp52Q9EXLNA6DTRYnpTj",
|
||||||
|
"The Stone Roses": "https://open.spotify.com/album/0um9FI6BLBldL5POP4D4Cw",
|
||||||
|
"Los Angeles": "https://open.spotify.com/album/4lgW2v8MOtBxyuQ7erHLgj",
|
||||||
|
"Norman Fucking Rockwell!": "https://open.spotify.com/album/5XpEKORZ4y6OrCZSKsi46A",
|
||||||
|
"From Elvis in Memphis": "https://open.spotify.com/album/3ekkFrfotMsEAKc5g71GHk",
|
||||||
|
"Sandinista!": "https://open.spotify.com/album/2UxN3UKyS3Z5r0Sra8A5RF",
|
||||||
|
"A Rush of Blood to the Head": "https://open.spotify.com/album/0RHX9XECH8IVI3LNgWDpmQ",
|
||||||
|
"All Killer, No Filler: The Anthology": "https://open.spotify.com/album/6iM9BYIXaVE2ixLxVdDYIB",
|
||||||
|
"Dirty Mind": "https://open.spotify.com/album/3Cijd5OjHeWBm97DsPHpgs",
|
||||||
|
"Live at Leeds": "https://open.spotify.com/album/6W3aTLI4B5UsPpWMvhT2W4",
|
||||||
|
"Modern Vampires of the City": "https://open.spotify.com/album/1GXMNFfoHF4sN7lG8gZq1j",
|
||||||
|
"Endtroducing.....": "https://open.spotify.com/album/4tUVkNYSFrrEqqrxBQW9PN",
|
||||||
|
"Aftermath": "https://open.spotify.com/album/72qrnM4yUNMDDlWiqKc8iY",
|
||||||
|
"Like a Prayer": "https://open.spotify.com/album/48AGkmM7iO4jrELRnNZGPV",
|
||||||
|
"Elvis Presley": "https://open.spotify.com/album/3X3rFfVKCW58sKMO0UXkwO",
|
||||||
|
"Still Bill": "https://open.spotify.com/album/0sFuW4rH5mFZUjNKnckO3v",
|
||||||
|
"Abraxas": "https://open.spotify.com/album/1CHUXwuge9A7L2KiA3vnR6",
|
||||||
|
"The Basement Tapes": "https://open.spotify.com/album/6BOlD6UGUg45IsUXPSplkY",
|
||||||
|
"Avalon": "https://open.spotify.com/album/3JXODSjT9mUz2lIb4YIErw",
|
||||||
|
"John Wesley Harding": "https://open.spotify.com/album/2KzCDxKpgLqBffHu1IZ7Kn",
|
||||||
|
"Another Green World": "https://open.spotify.com/album/6uoeezh45SYEb8lcT8gDTY",
|
||||||
|
"Janet Jackson's Rhythm Nation 1814": "https://open.spotify.com/album/7jtBAkD6DL5yn7komrFTxE",
|
||||||
|
"Doggystyle": "https://open.spotify.com/album/5IFOummNcGXY3qCBWRchqP",
|
||||||
|
"Siamese Dream": "https://open.spotify.com/album/0bQglEvsHphrS19FGODEGo",
|
||||||
|
"Greatest Hits": "https://open.spotify.com/album/0UM9SydcBtsklCTFgGLvcT",
|
||||||
|
"Funky Kingston": "https://open.spotify.com/album/7a341nZsSfwyBsq1tMPETz",
|
||||||
|
"The Wild, the Innocent & the E Street Shuffle": "https://open.spotify.com/album/1rmhti8uHw21LnaWMQy608",
|
||||||
|
"AM": "https://open.spotify.com/album/78bpIziExqiI9qztvNFlQu",
|
||||||
|
"Liquid Swords": "https://open.spotify.com/album/3k8xoyOXkGgZxUKgpmxz4P",
|
||||||
|
"Time (The Revelator)": "https://open.spotify.com/album/5q1V1otgRVF39cZY2RQab8",
|
||||||
|
"Kick Out the Jams": "https://open.spotify.com/album/0kT4F2mSpvTk3stwiaEStp",
|
||||||
|
"Music of My Mind": "https://open.spotify.com/album/7n0bcoRDylRw5PUKn2PlRJ",
|
||||||
|
"SOS": "https://open.spotify.com/album/07w0rG5TETcyihsEIZR3qG",
|
||||||
|
"The Slim Shady LP": "https://open.spotify.com/album/0vE6mttRTBXRe9rKghyr1l",
|
||||||
|
"The Cars": "https://open.spotify.com/album/4tJPWT4r4FSKwy784Qs1Fq",
|
||||||
|
"Germfree Adolescents": "https://open.spotify.com/album/6O0hDvYYCjEoOzJdXkiaXa",
|
||||||
|
"Black Sabbath": "https://open.spotify.com/album/3OmnatFgQ8o1DlYLp9EpNJ",
|
||||||
|
"Gris-Gris": "https://open.spotify.com/album/1yBoaVrgcup2hX2DCYUajs",
|
||||||
|
"Rain Dogs": "https://open.spotify.com/album/51CvLH7MxsLuFgTwVvzApx",
|
||||||
|
"Sour": "https://open.spotify.com/album/6s84u2TUpR3wdUv4NgKA2j",
|
||||||
|
"Radio City": "https://open.spotify.com/album/79Kv2xKvtqXrDcY2acvqfT",
|
||||||
|
"One Nation Under a Groove": "https://open.spotify.com/album/76Gl4laaUkIibH45JYX320",
|
||||||
|
"The Black Parade": "https://open.spotify.com/album/0FZK97MXMm5mUQ8mtudjuK",
|
||||||
|
"Never Too Much": "https://open.spotify.com/album/1B4oPgG5ljWTRxsKcTHAYn",
|
||||||
|
"Mothership Connection": "https://open.spotify.com/album/4q1HNSka8CzuLvC8ydcsD2",
|
||||||
|
"More Songs About Buildings and Food": "https://open.spotify.com/album/01RJdKvXyz515O37itqMIJ",
|
||||||
|
"Madvillainy": "https://open.spotify.com/album/19bQiwEKhXUBJWY6oV3KZk",
|
||||||
|
"Rocks": "https://open.spotify.com/album/4ldiyfqRvKiIasHHuDftuP",
|
||||||
|
"If You're Reading This It's Too Late": "https://open.spotify.com/album/0ptlfJfwGTy0Yvrk14JK1I",
|
||||||
|
"All Things Must Pass": "https://open.spotify.com/album/7j7lsExGJtBHLgDYzjclwk",
|
||||||
|
"The Infamous": "https://open.spotify.com/album/1cCAb1vN8uUsdfEylVmTLs",
|
||||||
|
"Tha Carter II": "https://open.spotify.com/album/1Do3y8IAcbYOToYQJnGwSO",
|
||||||
|
"Anthology": "https://open.spotify.com/album/5gX0Oedkr1IgRO8OXhUR5k",
|
||||||
|
"Cheap Thrills": "https://open.spotify.com/album/2rogKfOpmCFuqNhtGKf2dX",
|
||||||
|
"Hot Buttered Soul": "https://open.spotify.com/album/71rxIr6MJYUzDG9ge6Jq3J",
|
||||||
|
"King of the Delta Blues Singers": "https://open.spotify.com/album/2IWaNq5o4tG1w6yxve5BMU",
|
||||||
|
"Dookie": "https://open.spotify.com/album/4uG8q3GPuWHQlRbswMIRS6",
|
||||||
|
"In the Aeroplane Over the Sea": "https://open.spotify.com/album/0vVekV45lOaVKs6RZQQNob",
|
||||||
|
"Fever to Tell": "https://open.spotify.com/album/44ePwTuWK88vnalqutqJEG",
|
||||||
|
"Run-D.M.C.": "https://open.spotify.com/album/7AFsTiojVaB2I58oZ1tMRg",
|
||||||
|
"Moving Pictures": "https://open.spotify.com/album/2xg7iIKoSqaDNpDbJnyCjY",
|
||||||
|
"Mingus Ah Um": "https://open.spotify.com/album/7pojWP7x9uEFSJgw765khA",
|
||||||
|
"(Pronounced 'Lĕh-'nérd 'Skin-'nérd)": "https://open.spotify.com/album/6DExt1eX4lflLacVjHHbOs",
|
||||||
|
"Currents": "https://open.spotify.com/album/79dL7FLiJFOO0EoehUHQBv",
|
||||||
|
"Mezzanine": "https://open.spotify.com/album/49MNmJhZQewjt06rpwp6QR",
|
||||||
|
"The Kinks Are the Village Green Preservation Society": "https://open.spotify.com/album/2zYEcirgirihBtUr9ninD6",
|
||||||
|
"Rocket to Russia": "https://open.spotify.com/album/7Jb0VtDTacuQdXM3pYyrbv",
|
||||||
|
"Donuts": "https://open.spotify.com/album/5fMlysqhFE0itGn4KezMBW",
|
||||||
|
"In Rainbows": "https://open.spotify.com/album/5vkqYmiPBYLaalcmjujWxK",
|
||||||
|
"Young, Gifted and Black": "https://open.spotify.com/album/0k5C3Z7w7uQpyGFQEzl7yB",
|
||||||
|
"The Emancipation of Mimi": "https://open.spotify.com/album/6ek7Y68IlB6CoFkkc2gEQb",
|
||||||
|
"Surfer Rosa": "https://open.spotify.com/album/50j4Wm1b9hLpSpPIA39Vp9",
|
||||||
|
"Kaleidoscope": "https://open.spotify.com/album/33viW1sFm3sCCmzs7FZ9MI",
|
||||||
|
"Proud Mary: The Best of Ike & Tina Turner": "https://open.spotify.com/album/4cotyYQgYleaHbqQEgU9Hv",
|
||||||
|
"1989": "https://open.spotify.com/album/1yGbNOtRIgdIiGHOEBaZWf",
|
||||||
|
"Diana": "https://open.spotify.com/album/3zgDLoVcpVGfFbDZJf3uHI",
|
||||||
|
"Black Messiah": "https://open.spotify.com/album/5Hfbag0SsHxafx1SySFSX6",
|
||||||
|
"Something/Anything?": "https://open.spotify.com/album/5pNzs0yJU8BU40iWoSszG1",
|
||||||
|
"When We All Fall Asleep, Where Do We Go?": "https://open.spotify.com/album/0S0KGZnfBGSIssfF54WSJh",
|
||||||
|
"The Raincoats": "https://open.spotify.com/album/190Tx9jPHndq0qUlq79BJJ",
|
||||||
|
"Brian Wilson Presents Smile": "https://open.spotify.com/album/4Uc6YCjpfyjj02rZfg2EUv",
|
||||||
|
"Beauty and the Beat": "https://open.spotify.com/album/6LDkuQZTLwRVja4CpYOCuu",
|
||||||
|
"Blondie": "https://open.spotify.com/album/7mEjsBlRmfP63cH1gdPT6A",
|
||||||
|
"Expensive Shit": "https://open.spotify.com/album/2hxVGSxWSPYlUc8oCnQaWp",
|
||||||
|
"Supreme Clientele": "https://open.spotify.com/album/7eaQqVyq6xzAVgsxSzSP83",
|
||||||
|
"Rapture": "https://open.spotify.com/album/1C7VOpm96d77zf5yaRqJ2u",
|
||||||
|
"Nuggets: Original Artyfacts from the First Psychedelic Era, 1965–1968": "https://open.spotify.com/album/7v6BA3ieH8ObGhaYxpGNJI",
|
||||||
|
"69 Love Songs": "https://open.spotify.com/album/2GuROKcqyHdpIDcgxml1C7",
|
||||||
|
"Everybody Knows This Is Nowhere": "https://open.spotify.com/album/70Yl2w1p00whfnC7fj94ox",
|
||||||
|
"Ace of Spades": "https://open.spotify.com/album/619d4uJE3h2rOlw7kmSlD6",
|
||||||
|
"Workingman's Dead": "https://open.spotify.com/album/27uj8NveXyk1lH09t4hLTB",
|
||||||
|
"Wild Honey": "https://open.spotify.com/album/01uTaEF0YlcBgNwaSS9iIl",
|
||||||
|
"Love and Theft": "https://open.spotify.com/album/4BcfuxQ4EO07Y53yr6YhAJ",
|
||||||
|
"Going to a Go-Go": "https://open.spotify.com/album/2NT1Pc0MXlXORHLBkHyKQW",
|
||||||
|
"Cosmo's Factory": "https://open.spotify.com/album/5w2X5ZmdE4u0XGkOU7BiLG",
|
||||||
|
"Risqué": "https://open.spotify.com/album/1UFBJkKiBe3Lzjr307UhuU",
|
||||||
|
"Look-Ka Py Py": "https://open.spotify.com/album/6mGpQtwteyjKS4Up9tXuND",
|
||||||
|
"Things Fall Apart": "https://open.spotify.com/album/0qbl8aNaCUOvX8HGsZYLfh",
|
||||||
|
"The Shape of Jazz to Come": "https://open.spotify.com/album/2iPH3iUmpa9ufIpwY76keF",
|
||||||
|
"Brothers in Arms": "https://open.spotify.com/album/6Pz06FAaeym0JSqVqIkN56",
|
||||||
|
"Chief": "https://open.spotify.com/album/5dtw6CoMhbrSj01YUvdQOF",
|
||||||
|
"That's the Way of the World": "https://open.spotify.com/album/5tXZfxvr2VaWibD74nw8VL",
|
||||||
|
"Arular": "https://open.spotify.com/album/7CzEknt9gJwe0QC89ir1JX",
|
||||||
|
"Let's Get It On": "https://open.spotify.com/album/1oIICL75sMuInkEhX8jj3b",
|
||||||
|
"I Can Hear the Heart Beating as One": "https://open.spotify.com/album/3V18DIKvRuwdxc2LE4wuac",
|
||||||
|
"Odelay": "https://open.spotify.com/album/3PpTsdpZmaLUh6RvViu9G7",
|
||||||
|
"Paul Simon": "https://open.spotify.com/album/7npBPiCHjPj8PVIGPuHXep",
|
||||||
|
"Lucinda Williams": "https://open.spotify.com/album/63498KErJdRts4KWrgv2dT",
|
||||||
|
"Call Me": "https://open.spotify.com/album/1hryVGXoRLV9WAhO97xEDJ",
|
||||||
|
"New Day Rising": "https://open.spotify.com/album/2eOu9QDLP2MoO04ZtII2Vm",
|
||||||
|
"Reach Out": "https://open.spotify.com/album/4Jw0RycAqlXeAoymbc0CYp",
|
||||||
|
"Un Verano Sin Ti": "https://open.spotify.com/album/3RQQmkQEvNCY4prGKE6oc5",
|
||||||
|
"How Will the Wolf Survive?": "https://open.spotify.com/album/5dl01XDIMXrmjJ22obqfhQ",
|
||||||
|
"Confessions": "https://open.spotify.com/album/1RM6MGv6bcl6NrAG8PGoZk",
|
||||||
|
"Sound of Silver": "https://open.spotify.com/album/1R8kkopLT4IAxzMMkjic6X",
|
||||||
|
"Crooked Rain, Crooked Rain": "https://open.spotify.com/album/1XFNz6KIvLyIsLFOiLRKqP",
|
||||||
|
"Actually": "https://open.spotify.com/album/7ae4SfR2B1wEXX5EwS2Cg7",
|
||||||
|
"All Eyez on Me": "https://open.spotify.com/album/78iX7tMceN0FsnmabAtlOC",
|
||||||
|
"Demon Days": "https://open.spotify.com/album/0bUTHlWbkSQysoM3VsWldT",
|
||||||
|
"Parklife": "https://open.spotify.com/album/0DBkFC6739trhCoVreZyds",
|
||||||
|
"Sex Machine": "https://open.spotify.com/album/3CVie3TkZ0VHgT6mlwy7cp",
|
||||||
|
"Coal Miner's Daughter": "https://open.spotify.com/album/0GwutxUegzjsakpQ06OJOm",
|
||||||
|
"Blackout": "https://open.spotify.com/album/1ePkYcH5ZQCb1b4tQeiEDj",
|
||||||
|
"Beauty Behind the Madness": "https://open.spotify.com/album/0P3oVJBFOv3TDXlYRhGL7s",
|
||||||
|
"Scary Monsters (and Super Creeps)": "https://open.spotify.com/album/5fxvWHvIDPIALfTfRiwyB0",
|
||||||
|
"Extraordinary Machine": "https://open.spotify.com/album/1z0O8lKuQRs974S8wcRiAs",
|
||||||
|
"Close to the Edge": "https://open.spotify.com/album/6344rkGqCBDenGoS7eJlBN",
|
||||||
|
"Journey in Satchidananda": "https://open.spotify.com/album/6zV55F6W8kh1qe8LHhqRbz",
|
||||||
|
"X 100pre": "https://open.spotify.com/album/7CjJb2mikwAWA1V6kewFBF",
|
||||||
|
"Complete & Unbelievable: The Otis Redding Dictionary of Soul": "https://open.spotify.com/album/25uNcuL4dAoV62eKmr8Q0Y",
|
||||||
|
"Elephant": "https://open.spotify.com/album/6D9urpsOWWKtYvF6PaorGE",
|
||||||
|
"Ram": "https://open.spotify.com/album/3DTMsrNO6lEHNmDJ0fsN4v",
|
||||||
|
"First Take": "https://open.spotify.com/album/2ARWEOvaUgm4FSj25MpY6F",
|
||||||
|
"Pretty Hate Machine": "https://open.spotify.com/album/3umFHeEpc4yLXtrRcv9gLN",
|
||||||
|
"Ege Bamyası": "https://open.spotify.com/album/1MLxE2czxo5A9OVZ2m8FV3",
|
||||||
|
"Bo Diddley/Go Bo Diddley[a]": "https://open.spotify.com/album/71lvfHjjLerIFN8ZNSrqIe",
|
||||||
|
"Al Green's Greatest Hits": "https://open.spotify.com/album/0LfM3PGkXE6KvJEE1HkOnz",
|
||||||
|
"I Do Not Want What I Haven't Got": "https://open.spotify.com/album/0fV9DAddjwNZcmCP1Q8b01",
|
||||||
|
"Southeastern": "https://open.spotify.com/album/1bg476ZQn7hmcXaU05SHV4",
|
||||||
|
"Man on the Moon: The End of Day": "https://open.spotify.com/album/6oPPKtAwNNlkW4wwHfQDfM",
|
||||||
|
"Melodrama": "https://open.spotify.com/album/2B87zXm9bOWvAJdkJBTpzF",
|
||||||
|
"For Emma, Forever Ago": "https://open.spotify.com/album/7EJ0OT5ZqybXxcYRa6mccM",
|
||||||
|
"The Gilded Palace of Sin": "https://open.spotify.com/album/6VWKy5o2OcdeWa7yolazjU",
|
||||||
|
"Eli and the Thirteenth Confession": "https://open.spotify.com/album/533zqKatpy90jse2K5IaiQ",
|
||||||
|
"3 + 3": "https://open.spotify.com/album/27eI33obJuyKebMTxAJJam",
|
||||||
|
"The Best of the Classic Years": "https://open.spotify.com/album/6Y5SoiYENbNuTBc6mTUKG9",
|
||||||
|
"BLACKsummers'night": "https://open.spotify.com/album/1cXFSOdjxmS13cOTtnNQAo",
|
||||||
|
"Some Girls": "https://open.spotify.com/album/1Jv2AqzhgsduUik2p4k3cS",
|
||||||
|
"Clandestino": "https://open.spotify.com/album/3xoAUqjKs7Ps7wR26VAMbq",
|
||||||
|
"400 Degreez": "https://open.spotify.com/album/6wpqS71CJr3I0dLguYiZdJ",
|
||||||
|
"Surrealistic Pillow": "https://open.spotify.com/album/6lPb7Eoon6QPbscWbMsk6a",
|
||||||
|
"Ctrl": "https://open.spotify.com/album/76290XdXVF9rPzGdNRWdCh",
|
||||||
|
"Barrio Fino": "https://open.spotify.com/album/7BmWnXvx1CD6vtxtBd0czc",
|
||||||
|
"#1 Record": "https://open.spotify.com/album/1BumwwIEw1EC3xAHyf1ive",
|
||||||
|
"Sheryl Crow": "https://open.spotify.com/album/3FiplT4vIgWCRwLZSn0EDd",
|
||||||
|
"Kimono My House": "https://open.spotify.com/album/7KOmuu3cbJQEQYGt3XmLmY",
|
||||||
|
"Moanin' in the Moonlight": "https://open.spotify.com/album/76MT4lqzC1oSvSYnHHjMam",
|
||||||
|
"Something Else by the Kinks": "https://open.spotify.com/album/65D4K5KKZqL4r0jxuaUR0M",
|
||||||
|
"Amor Prohibido": "https://open.spotify.com/album/3o1L0Wn7yVk7r0J1yxaRqA",
|
||||||
|
"The Weight of These Wings": "https://open.spotify.com/album/563h536tB6n8Dn62jr4RZG",
|
||||||
|
"If You're Feeling Sinister": "https://open.spotify.com/album/4usPTyIIgnAZ9eiItfEYSK",
|
||||||
|
"Bizarre Ride II the Pharcyde": "https://open.spotify.com/album/48kU5gP41TqZEw32Cwhsna",
|
||||||
|
"The Anthology: 1947–1972": "https://open.spotify.com/album/4fOVcN7X7vQ8L41is621uJ",
|
||||||
|
"Born This Way": "https://open.spotify.com/album/6LY3AerY6KNGOPsNPL63Kk",
|
||||||
|
"I Want to See the Bright Lights Tonight": "https://open.spotify.com/album/1K1Qdd60pW48wEgWGQLeRt",
|
||||||
|
"Continuum": "https://open.spotify.com/album/1Xsprdt1q9rOzTic7b9zYM",
|
||||||
|
"Damaged": "https://open.spotify.com/album/34aFnrFRBlErcbU6moRZR3",
|
||||||
|
"The Stooges": "https://open.spotify.com/album/0Z1Y5L90NjqUD351YUQWdA",
|
||||||
|
"Back to Mono (1958–1969)": "https://open.spotify.com/album/3VsKbddUIng2aLagMZUwwb",
|
||||||
|
"Heart Like a Wheel": "https://open.spotify.com/album/7upKDUGJUjsvfIe6vuVB0b",
|
||||||
|
"Harry's House": "https://open.spotify.com/album/6XCpLLxr9adk3jwrHLqRLQ",
|
||||||
|
"Nick of Time": "https://open.spotify.com/album/6wxpS5o0ty5CLqyH5fIRln",
|
||||||
|
"Here, My Dear": "https://open.spotify.com/album/0YbHA3w82FSmpyXxdXfuCv",
|
||||||
|
"Presenting the Fabulous Ronettes Featuring Veronica": "https://open.spotify.com/album/0CoNLgOwcZGBUSwd9fAZuy",
|
||||||
|
"II": "https://open.spotify.com/album/1DjxZpmeR9Dzu9tF4J44S7",
|
||||||
|
"¿Dónde Están los Ladrones?": "https://open.spotify.com/album/5hcKSTqKOLuzJgYIQileAe",
|
||||||
|
"The Indestructible Beat of Soweto": "https://open.spotify.com/album/1DIr8JMRBnm1cZMYIGKb8t",
|
||||||
|
"Suicide": "https://open.spotify.com/album/46kw5FsFdJhNRL8wfHM9Bp",
|
||||||
|
"Ask Rufus": "https://open.spotify.com/album/3ZJJdnvxztzpOvwvzUzUxC",
|
||||||
|
"Funeral": "https://open.spotify.com/album/6ZB8qaR9JNuS0Q0bG1nbcH",
|
||||||
|
"Legend": "https://open.spotify.com/album/4jKeipwuUTjlx9USNYdhZn",
|
||||||
|
"Disraeli Gears": "https://open.spotify.com/album/3W6CI0Lw7lElAPID2Fd3B4",
|
||||||
|
"For Your Pleasure": "https://open.spotify.com/album/6gKMWnGptVs6yT2MgCxw29",
|
||||||
|
"Goo": "https://open.spotify.com/album/5iYYQwB0oH9FVyVlaOXZdr",
|
||||||
|
"My Aim Is True": "https://open.spotify.com/album/1aucGNKimhgARC7iO2xLt2",
|
||||||
|
"Screamadelica": "https://open.spotify.com/album/5PORx6PL7CdOywSJuGVrnc",
|
||||||
|
"The Beach Boys Today!": "https://open.spotify.com/album/1xPtXzS5yCbDAqC7pxRCaF",
|
||||||
|
"Fine Line": "https://open.spotify.com/album/7xV2TzoaVc0ycW7fwBwAml"
|
||||||
}
|
}
|
||||||
499
spotify_urls_mapping_progress.json
Normal file
499
spotify_urls_mapping_progress.json
Normal file
|
|
@ -0,0 +1,499 @@
|
||||||
|
{
|
||||||
|
"What's Going On": "https://open.spotify.com/album/7qD9oSiS3xFJsw2oSV2akp",
|
||||||
|
"Pet Sounds": "https://open.spotify.com/album/2CNEkSE8TADXRT2AzcEt1b",
|
||||||
|
"Blue": "https://open.spotify.com/album/1vz94WpXDVYIEGja8cjFNa",
|
||||||
|
"Songs in the Key of Life": "https://open.spotify.com/album/6YUCc2RiXcEKS9ibuZxjt0",
|
||||||
|
"Abbey Road": "https://open.spotify.com/album/0ETFjACtuP2ADo6LFhL6HN",
|
||||||
|
"Nevermind": "https://open.spotify.com/album/2UJcKiJxNryhL050F5Z1Fk",
|
||||||
|
"Rumours": "https://open.spotify.com/album/0BwWUstDMUbgq2NYONRqlu",
|
||||||
|
"Purple Rain": "https://open.spotify.com/album/2umoqwMrmjBBPeaqgYu6J9",
|
||||||
|
"Blood on the Tracks": "https://open.spotify.com/album/4WD4pslu83FF6oMa1e19mF",
|
||||||
|
"The Miseducation of Lauryn Hill": "https://open.spotify.com/album/1BZoqf8Zje5nGdwZhOjAtD",
|
||||||
|
"Revolver": "https://open.spotify.com/album/3PRoXYsngSwjEQWR5PsHWR",
|
||||||
|
"Thriller": "https://open.spotify.com/album/2ANVost0y2y52ema1E9xAZ",
|
||||||
|
"I Never Loved a Man the Way I Love You": "https://open.spotify.com/album/5WndWfzGwCkHzAbQXVkg2V",
|
||||||
|
"Exile on Main St.": "https://open.spotify.com/album/5U4dnRZsfW8NmwBBkELFPh",
|
||||||
|
"It Takes a Nation of Millions to Hold Us Back": "https://open.spotify.com/album/3PxXiYU3PjymOEE22PewGZ",
|
||||||
|
"London Calling": "https://open.spotify.com/album/6FCzvataOZh68j8OKzOt9a",
|
||||||
|
"My Beautiful Dark Twisted Fantasy": "https://open.spotify.com/album/20r762YmB5HeofjMCiPMLv",
|
||||||
|
"Highway 61 Revisited": "https://open.spotify.com/album/6YabPKtZAjxwyWbuO9p4ZD",
|
||||||
|
"To Pimp a Butterfly": "https://open.spotify.com/album/7ycBtnsMtyVbbwTfJwRjSP",
|
||||||
|
"Kid A": "https://open.spotify.com/album/6GjwtEZcfenmOf6l18N7T7",
|
||||||
|
"Born to Run": "https://open.spotify.com/album/43YIoHKSrEw2GJsWmhZIpu",
|
||||||
|
"Ready to Die": "https://open.spotify.com/album/2HTbQ0RHwukKVXAlTmCZP2",
|
||||||
|
"The Velvet Underground & Nico": "https://open.spotify.com/album/4xwx0x7k6c5VuThz5qVqmV",
|
||||||
|
"Sgt. Pepper's Lonely Hearts Club Band": "https://open.spotify.com/album/6QaVfG1pHYl1z15ZxkvVDW",
|
||||||
|
"Tapestry": "https://open.spotify.com/album/12n11cgnpjXKLeqrnIERoS",
|
||||||
|
"Horses": "https://open.spotify.com/album/7xg7u99lilTCPbaRfnYuy6",
|
||||||
|
"Enter the Wu-Tang (36 Chambers)": "https://open.spotify.com/album/3tQd5mwBtVyxCoEo4htGAV",
|
||||||
|
"Voodoo": "https://open.spotify.com/album/2lO9yuuIDgBpSJzxTh3ai8",
|
||||||
|
"The Beatles": "https://open.spotify.com/album/1klALx0u4AavZNEvC4LrTL",
|
||||||
|
"Are You Experienced": "https://open.spotify.com/album/7rSZXXHHvIhF4yUFdaOCy9",
|
||||||
|
"Kind of Blue": "https://open.spotify.com/album/4sb0eMpDn3upAFfyi4q2rw",
|
||||||
|
"Lemonade": "https://open.spotify.com/album/7dK54iZuOxXFarGhXwEXfF",
|
||||||
|
"Back to Black": "https://open.spotify.com/album/0E4xv5gPjykrwBgBZzI8XG",
|
||||||
|
"Innervisions": "https://open.spotify.com/album/5jgI8Eminx9MmLBontDWq8",
|
||||||
|
"Rubber Soul": "https://open.spotify.com/album/50o7kf2wLwVmOTVYJOTplm",
|
||||||
|
"Off the Wall": "https://open.spotify.com/album/2ZytN2cY4Zjrr9ukb2rqTP",
|
||||||
|
"The Chronic": "https://open.spotify.com/album/2V5rhszUpCudPcb01zevOt",
|
||||||
|
"Blonde on Blonde": "https://open.spotify.com/album/4NP1rhnsPdYpnyJP0p0k0L",
|
||||||
|
"Remain in Light": "https://open.spotify.com/album/3AQgdwMNCiN7awXch5fAaG",
|
||||||
|
"The Rise and Fall of Ziggy Stardust and the Spiders from Mars": "https://open.spotify.com/album/48D1hRORqJq52qsnUYZX56",
|
||||||
|
"Let It Bleed": "https://open.spotify.com/album/4l4u9e9jSbotSXNjYfOugy",
|
||||||
|
"OK Computer": "https://open.spotify.com/album/6dVIqQ8qmQ5GBnJ9shOYGE",
|
||||||
|
"The Low End Theory": "https://open.spotify.com/album/1p12OAWwudgMqfMzjMvl2a",
|
||||||
|
"Illmatic": "https://open.spotify.com/album/3kEtdS2pH6hKcMU9Wioob1",
|
||||||
|
"Sign o' the Times": "https://open.spotify.com/album/2Uv3zad993qvBkrOcIqdgq",
|
||||||
|
"Graceland": "https://open.spotify.com/album/6WgGWYw6XXQyLTsWt7tXky",
|
||||||
|
"Ramones": "https://open.spotify.com/album/5uYDAwW0SZgcfOFkxrST64",
|
||||||
|
"Exodus": "https://open.spotify.com/album/655KljKIXl42fiNDMKivbY",
|
||||||
|
"Aquemini": "https://open.spotify.com/album/5ceB3rxgXqIRpsOvVzTG28",
|
||||||
|
"The Blueprint": "https://open.spotify.com/album/2CUT0104gySOIvqwtXeFsX",
|
||||||
|
"The Great Twenty-Eight": "https://open.spotify.com/album/7pY0hwPU10gaH4qDsDFA6d",
|
||||||
|
"Station to Station": "https://open.spotify.com/album/0MWrKayUshRuT8maG4ZAOU",
|
||||||
|
"Electric Ladyland": "https://open.spotify.com/album/5z090LQztiqh13wYspQvKQ",
|
||||||
|
"Star Time": "https://open.spotify.com/album/7IHXfSBOq8B5prbtzzDUsx",
|
||||||
|
"The Dark Side of the Moon": "https://open.spotify.com/album/4LH4d3cOWNNsVw41Gqt2kv",
|
||||||
|
"Exile in Guyville": "https://open.spotify.com/album/7sCpW2cLGcRk1zf9zi0Yqd",
|
||||||
|
"The Band": "https://open.spotify.com/album/6T0TXzF0VSIc8QbUqJrB2w",
|
||||||
|
"Led Zeppelin IV": "https://open.spotify.com/album/44Ig8dzqOkvkGDzaUof9lK",
|
||||||
|
"Talking Book": "https://open.spotify.com/album/3PResMqFgQYBfzTnqTKwQw",
|
||||||
|
"Astral Weeks": "https://open.spotify.com/album/4pG3bKkbmReDt5QTDn3JDz",
|
||||||
|
"Paid in Full": "https://open.spotify.com/album/3miZDfDnP7SmOXAJXWdFmz",
|
||||||
|
"Appetite for Destruction": "https://open.spotify.com/album/28yHV3Gdg30AiB8h8em1eW",
|
||||||
|
"Aja": "https://open.spotify.com/album/1hOK2ey9W76x9GnftSRgrw",
|
||||||
|
"Stankonia": "https://open.spotify.com/album/2tm3Ht61kqqRZtIYsBjxEj",
|
||||||
|
"Live at the Apollo": "https://open.spotify.com/album/0B6BbyElOe4bwziJrunOTe",
|
||||||
|
"A Love Supreme": "https://open.spotify.com/album/7Eoz7hJvaX1eFkbpQxC5PA",
|
||||||
|
"Reasonable Doubt": "https://open.spotify.com/album/3gHvsTdiiZWGxEg32lyLwk",
|
||||||
|
"Hounds of Love": "https://open.spotify.com/album/5G5UwqPsxDKpxJLX4xsyuh",
|
||||||
|
"Jagged Little Pill": "https://open.spotify.com/album/5Ap3F8CxjjsQKZGASDcHNA",
|
||||||
|
"Straight Outta Compton": "https://open.spotify.com/album/0Y7qkJVZ06tS2GUCDptzyW",
|
||||||
|
"Renaissance": "https://open.spotify.com/album/6FJxoadUE4JNVwWHghBwnb",
|
||||||
|
"Harvest": "https://open.spotify.com/album/2LOpi63tYGh0Suy8eLJDVQ",
|
||||||
|
"Loveless": "https://open.spotify.com/album/3USQKOw0se5pBNEndu82Rb",
|
||||||
|
"The College Dropout": "https://open.spotify.com/album/4Uv86qWpGTxf7fU7lG5X6F",
|
||||||
|
"Lady Soul": "https://open.spotify.com/album/7lEOKZaOpqP70UYqdLPejG",
|
||||||
|
"Super Fly": "https://open.spotify.com/album/5ljIGCRRvS48V4ADzPGav2",
|
||||||
|
"Who's Next": "https://open.spotify.com/album/4uehIELOvaBf8ZbhQGrhkd",
|
||||||
|
"The Sun Sessions": "https://open.spotify.com/album/3gpHiNAmT5oXVxe6ewTGuN",
|
||||||
|
"Blonde": "https://open.spotify.com/album/3mH6qwIy9crq0I9YQbOuDf",
|
||||||
|
"Never Mind the Bollocks, Here's the Sex Pistols": "https://open.spotify.com/album/17lv1Ruxq46ZK5xAINAX8J",
|
||||||
|
"Beyoncé": "https://open.spotify.com/album/2UJwKSBUz6rtW4QLK74kQu",
|
||||||
|
"There's a Riot Goin' On": "https://open.spotify.com/album/29f2cOueckYE8Nc1pkJjrU",
|
||||||
|
"Dusty in Memphis": "https://open.spotify.com/album/5FRB5oQaHxlDNe6gMGuzu2",
|
||||||
|
"Back in Black": "https://open.spotify.com/album/6mUdeDZCsExyJLMdAfDuwh",
|
||||||
|
"John Lennon/Plastic Ono Band": "https://open.spotify.com/album/0DFYbYCcHCEJPcN1hODG6K",
|
||||||
|
"The Doors": "https://open.spotify.com/album/1jWmEhn3ggaL6isoyLfwBn",
|
||||||
|
"Bitches Brew": "https://open.spotify.com/album/3Q0zkOZEOC855ErOOJ1AdO",
|
||||||
|
"Hunky Dory": "https://open.spotify.com/album/6fQElzBNTiEMGdIeY0hy5l",
|
||||||
|
"Baduizm": "https://open.spotify.com/album/3qr4pTBWEU1SVf01j6RAx3",
|
||||||
|
"After the Gold Rush": "https://open.spotify.com/album/5EVlXlHbRQI8ybuNt4ArXI",
|
||||||
|
"Darkness on the Edge of Town": "https://open.spotify.com/album/4KT6G8fj8EEIfsyr75hbgc",
|
||||||
|
"Axis: Bold as Love": "https://open.spotify.com/album/3uFZf8rykoHo7XMIQVYW6r",
|
||||||
|
"Supa Dupa Fly": "https://open.spotify.com/album/6UkdyvPElK6JDkyeRClbI2",
|
||||||
|
"Fun House": "https://open.spotify.com/album/3FTcomSFg2zWSqWLRgBYpv",
|
||||||
|
"Take Care": "https://open.spotify.com/album/6X1x82kppWZmDzlXXK3y3q",
|
||||||
|
"Automatic for the People": "https://open.spotify.com/album/0BiNb8HYR4JvuxUa31Z58Q",
|
||||||
|
"Master of Puppets": "https://open.spotify.com/album/2Lq2qX3hYhiuPckC8Flj21",
|
||||||
|
"Car Wheels on a Gravel Road": "https://open.spotify.com/album/3iC6dJobZulVXp0F4Bojig",
|
||||||
|
"Red": "https://open.spotify.com/album/2OCqRoV6adWSAJXivSnFWs",
|
||||||
|
"Music from Big Pink": "https://open.spotify.com/album/0ky5kdvfPxSmSpj03hpSAE",
|
||||||
|
"Led Zeppelin": "https://open.spotify.com/album/44Ig8dzqOkvkGDzaUof9lK",
|
||||||
|
"The Clash": "https://open.spotify.com/album/49kzgMsxHU5CTeb2XmFHjo",
|
||||||
|
"3 Feet High and Rising": "https://open.spotify.com/album/34LxHI9x14qXUOS8AWRrYD",
|
||||||
|
"Sticky Fingers": "https://open.spotify.com/album/29m6DinzdaD0OPqWKGyMdz",
|
||||||
|
"At Fillmore East": "https://open.spotify.com/album/0Y5Wlv2OJKaW0uDJ5HnUfy",
|
||||||
|
"Live Through This": "https://open.spotify.com/album/2Rwf2nPYZQ9aIe4QXACTC7",
|
||||||
|
"Marquee Moon": "https://open.spotify.com/album/630o1rKTDsLeIPreOY1jqP",
|
||||||
|
"When the Pawn...": "https://open.spotify.com/album/3o5EnVZNJXtfPV8tCoagjI",
|
||||||
|
"Transformer": "https://open.spotify.com/album/5SqbMEyAt8332ISGiLX0St",
|
||||||
|
"Court and Spark": "https://open.spotify.com/album/2akjxkzFolkeV72Yyv5KrM",
|
||||||
|
"Control": "https://open.spotify.com/album/7GWkceE5McMVfffd1RGL6Y",
|
||||||
|
"Goodbye Yellow Brick Road": "https://open.spotify.com/album/5WupqgR68HfuHt3BMJtgun",
|
||||||
|
"The Queen Is Dead": "https://open.spotify.com/album/5Y0p2XCgRRIjna91aQE8q7",
|
||||||
|
"Is This It": "https://open.spotify.com/album/2yNaksHgeMQM9Quse463b5",
|
||||||
|
"Good Kid, M.A.A.D City": "https://open.spotify.com/album/0Oq3mWfexhsjUh0aNNBB5u",
|
||||||
|
"Disintegration": "https://open.spotify.com/album/0H6TddUF2M63ZSHGvhk5yy",
|
||||||
|
"Late Registration": "https://open.spotify.com/album/5ll74bqtkcXlKE7wwkMq4g",
|
||||||
|
"Hotel California": "https://open.spotify.com/album/2widuo17g5CEC66IbzveRu",
|
||||||
|
"Stand!": "https://open.spotify.com/album/7iwS1r6JHYJe9xpPjzmWqD",
|
||||||
|
"Moondance": "https://open.spotify.com/album/5PfnCqRbdfIDMb1x3MPQam",
|
||||||
|
"This Year's Model": "https://open.spotify.com/album/4RLIesiAVONV4fOUlOSmr4",
|
||||||
|
"The Downward Spiral": "https://open.spotify.com/album/5I7lLu8xXJfGRdFUqHaLQU",
|
||||||
|
"Led Zeppelin II": "https://open.spotify.com/album/6P5QHz4XtxOmS5EuiGIPut",
|
||||||
|
"Achtung Baby": "https://open.spotify.com/album/0ta5VdkJcpdVnNrn7g4cZe",
|
||||||
|
"Paul's Boutique": "https://open.spotify.com/album/1kmyirVya5fRxdjsPFDM05",
|
||||||
|
"My Life": "https://open.spotify.com/album/1OQ5l5rHKqUumPpn559zJC",
|
||||||
|
"Modern Sounds in Country and Western Music": "https://open.spotify.com/album/0UvA1bMY9dqS6LQ4ktBl4y",
|
||||||
|
"A Night at the Opera": "https://open.spotify.com/album/1GbtB4zTqAsyfZEsm1RZfx",
|
||||||
|
"The Wall": "https://open.spotify.com/album/5Dbax7G8SWrP9xyzkOvy2F",
|
||||||
|
"1999": "https://open.spotify.com/album/3U1ht9EdWEI9nMvaqdQI67",
|
||||||
|
"Dummy": "https://open.spotify.com/album/3539EbNgIdEDGBKkUf4wno",
|
||||||
|
"40 Greatest Hits": "https://open.spotify.com/album/6zIYEv6soMoaZiypsHB5dd",
|
||||||
|
"Hejira": "https://open.spotify.com/album/3Z0qQc09rmk4JYtIaxEx2J",
|
||||||
|
"The Score": "https://open.spotify.com/album/18XFe4CPBgVezXkxZP6rTb",
|
||||||
|
"The Joshua Tree": "https://open.spotify.com/album/5y6wlw1LnqFnQFruMeiwGU",
|
||||||
|
"Maggot Brain": "https://open.spotify.com/album/3ywVzrwMQ3Kq43N9zBdBQm",
|
||||||
|
"21": "https://open.spotify.com/album/5duyQokC4FMcWPYTV9Gpf9",
|
||||||
|
"The Immaculate Collection": "https://open.spotify.com/album/5MzwGwnO9gkh0z6Nl4FF8h",
|
||||||
|
"Paranoid": "https://open.spotify.com/album/4kA2o0L3tz9vFKJetiFUJI",
|
||||||
|
"Catch a Fire": "https://open.spotify.com/album/39kLAVdcgW7jbMcTEaY2qy",
|
||||||
|
"Doolittle": "https://open.spotify.com/album/0DQyTVcDhK9wm0f6RaErWO",
|
||||||
|
"Born in the U.S.A.": "https://open.spotify.com/album/0PMasrHdpaoIRuHuhHp72O",
|
||||||
|
"The Velvet Underground": "https://open.spotify.com/album/4xwx0x7k6c5VuThz5qVqmV",
|
||||||
|
"Physical Graffiti": "https://open.spotify.com/album/26tH0kjUhkxBEd3ipGkx3Y",
|
||||||
|
"The Marshall Mathers LP": "https://open.spotify.com/album/6t7956yu5zYf5A829XRiHC",
|
||||||
|
"Parallel Lines": "https://open.spotify.com/album/5wc12ZsmXNIlppTmNFZFLU",
|
||||||
|
"Grace": "https://open.spotify.com/album/7yQtjAjhtNi76KRu05XWFS",
|
||||||
|
"Channel Orange": "https://open.spotify.com/album/392p3shh2jkxUxY2VHvlH8",
|
||||||
|
"John Prine": "https://open.spotify.com/album/5t4FHrIAHI8nolSAOBRgPp",
|
||||||
|
"Nebraska": "https://open.spotify.com/album/6yskFQZNlLYhkchAxELHi6",
|
||||||
|
"Faith": "https://open.spotify.com/album/34K1Kvskt9arWy8E1Gz3Lw",
|
||||||
|
"Pretenders": "https://open.spotify.com/album/3OkWTwwHgFEYsVKujJcXWu",
|
||||||
|
"Rid of Me": "https://open.spotify.com/album/2fDJpBJhtloxzUENHlU9JB",
|
||||||
|
"Amazing Grace": "https://open.spotify.com/album/5pIUimaQ6XePPXbMUi3te0",
|
||||||
|
"The Black Album": "https://open.spotify.com/album/4FWvo9oS4gRgHtAwDwUjiO",
|
||||||
|
"Let It Be": "https://open.spotify.com/album/0jTGHV5xqHPvEcwL8f6YU5",
|
||||||
|
"(What's the Story) Morning Glory?": "https://open.spotify.com/album/6tOe4eAF8xNhEkl9WyvsE4",
|
||||||
|
"Mama's Gun": "https://open.spotify.com/album/3cADvHRdKniF9ELCn1zbGH",
|
||||||
|
"Synchronicity": "https://open.spotify.com/album/5W9OT0a5iZlBr83a9WMKFY",
|
||||||
|
"Ten": "https://open.spotify.com/album/5B4PYA7wNN4WdEXdIJu58a",
|
||||||
|
"Crosby, Stills & Nash": "https://open.spotify.com/album/6vUWpE8qciYHOhf7mgaGny",
|
||||||
|
"Different Class": "https://open.spotify.com/album/3ly9T2L4pqTZijFgQssd3x",
|
||||||
|
"Saturday Night Fever": "https://open.spotify.com/album/3xaCKtqadm4KnviPFKEjs7",
|
||||||
|
"At Folsom Prison": "https://open.spotify.com/album/4TJIdlY9hGSSTO1kUs1neh",
|
||||||
|
"Murmur": "https://open.spotify.com/album/33XZTGUv8p3Cl3KYwZQ2VH",
|
||||||
|
"20 Golden Greats": "https://open.spotify.com/album/2MwhKwYfaGXfCMNKJQr6VA",
|
||||||
|
"Violator": "https://open.spotify.com/album/0Tg76MY2wNK4j37iCb6qyH",
|
||||||
|
"Can't Buy a Thrill": "https://open.spotify.com/album/6DlSUW5gmq6Byc3osKDJ2p",
|
||||||
|
"The Stranger": "https://open.spotify.com/album/1Mhn9VosyjtWn4dMPFlna6",
|
||||||
|
"Folklore": "https://open.spotify.com/album/2fenSS68JI1h4Fo296JfGr",
|
||||||
|
"Daydream Nation": "https://open.spotify.com/album/23O4F21GDWiGd33tFN3ZgI",
|
||||||
|
"Bridge over Troubled Water": "https://open.spotify.com/album/0JwHz5SSvpYWuuCNbtYZoV",
|
||||||
|
"In Utero": "https://open.spotify.com/album/6ohX7moZZnF1FwYrli1OJ6",
|
||||||
|
"The Harder They Come": "https://open.spotify.com/album/1tqMU6OQ9DlXAIWeK29UzU",
|
||||||
|
"Damn": "https://open.spotify.com/album/4eLPsYPBmXABThSJ821sqY",
|
||||||
|
"Fear of a Black Planet": "https://open.spotify.com/album/0aFNb4RDk2hmKKLa0bzXNz",
|
||||||
|
"Every Picture Tells a Story": "https://open.spotify.com/album/4VykjLwkyfKMZVLrJJVrYh",
|
||||||
|
"Otis Blue/Otis Redding Sings Soul": "https://open.spotify.com/album/68BCjMsHX4Gf11BJSkjwGz",
|
||||||
|
"Life After Death": "https://open.spotify.com/album/7dRdaGSxgcBdJnrOviQRuB",
|
||||||
|
"Forever Changes": "https://open.spotify.com/album/2amHBpP8C0EUy6yBNy6nN6",
|
||||||
|
"Bringing It All Back Home": "https://open.spotify.com/album/1lPoRKSgZHQAYXxzBsOQ7v",
|
||||||
|
"Sweet Baby James": "https://open.spotify.com/album/1HiG0ukRmFPN13EVcf98Jx",
|
||||||
|
"Brown Sugar": "https://open.spotify.com/album/4HTVABUq8amDUxBv3zJbX4",
|
||||||
|
"She's So Unusual": "https://open.spotify.com/album/1FvdZ1oizXwF9bxogujoF0",
|
||||||
|
"Beggars Banquet": "https://open.spotify.com/album/6OHri5qNxwCdVSdyCslspd",
|
||||||
|
"Blood Sugar Sex Magik": "https://open.spotify.com/album/30Perjew8HyGkdSmqguYyg",
|
||||||
|
"AmeriKKKa's Most Wanted": "https://open.spotify.com/album/3AI5kAUjgNtZBwFRi6opDc",
|
||||||
|
"Electric Warrior": "https://open.spotify.com/album/2wnq5e000z2hT7qS2F8jZ5",
|
||||||
|
"Dig Me Out": "https://open.spotify.com/album/3tshnNFNhHrO6NUQ0BHw42",
|
||||||
|
"Tommy": "https://open.spotify.com/album/5cT7ee1sy2oEbFalP4asS4",
|
||||||
|
"At Last!": "https://open.spotify.com/album/7rd4PorIOPjPTy7qdUeeCt",
|
||||||
|
"Licensed to Ill": "https://open.spotify.com/album/11oR0ZuqB3ucZwb5TGbZxb",
|
||||||
|
"Willy and the Poor Boys": "https://open.spotify.com/album/31q47gQszFt0CddSyMksgO",
|
||||||
|
"Bad": "https://open.spotify.com/album/3Us57CjssWnHjTUIXBuIeH",
|
||||||
|
"Songs of Leonard Cohen": "https://open.spotify.com/album/2Aiv0ThDpFa7lqHphR6MN5",
|
||||||
|
"Body Talk": "https://open.spotify.com/album/0uQvFZsNoC7MZpcZZLtlYs",
|
||||||
|
"Meet the Beatles!": "https://open.spotify.com/album/6IKycpEVcUtUpUKUa2DeOf",
|
||||||
|
"The B-52's": "https://open.spotify.com/album/5WfJAzA1B1skksrnV6yLFH",
|
||||||
|
"Slanted and Enchanted": "https://open.spotify.com/album/7o14zVcXSRk7clV6QCEdOD",
|
||||||
|
"Diamond Life": "https://open.spotify.com/album/3JcNnjMVSKiNpqhErZarW0",
|
||||||
|
"Midnight Marauders": "https://open.spotify.com/album/4v5x3Oo3UjQ9YmF3hRAip5",
|
||||||
|
"Homogenic": "https://open.spotify.com/album/0h19Ty9F2Ma8pKkRdx17UT",
|
||||||
|
"Pink Moon": "https://open.spotify.com/album/5mwOo1zikswhmfHvtqVSXg",
|
||||||
|
"Graduation": "https://open.spotify.com/album/4SZko61aMnmgvNhfhgTuD3",
|
||||||
|
"Tea for the Tillerman": "https://open.spotify.com/album/44VxbAytHpVi3Rq8hRhild",
|
||||||
|
"Low": "https://open.spotify.com/album/2de6LD7eOW8zrlorbS28na",
|
||||||
|
"Eagles": "https://open.spotify.com/album/51B7LbLWgYLKBVSpkan8Z7",
|
||||||
|
"Tha Carter III": "https://open.spotify.com/album/1Do3y8IAcbYOToYQJnGwSO",
|
||||||
|
"Raising Hell": "https://open.spotify.com/album/7AFsTiojVaB2I58oZ1tMRg",
|
||||||
|
"The Birth of Soul": "https://open.spotify.com/album/3RPMCDSd1yj37hlqbizmeT",
|
||||||
|
"Unknown Pleasures": "https://open.spotify.com/album/33qkK1brpt6t8unIpeM2Oy",
|
||||||
|
"Wild Is the Wind": "https://open.spotify.com/album/2EYVXfypcucR62WMKJl6Mr",
|
||||||
|
"The Idler Wheel...": "https://open.spotify.com/album/6B5favhKTShFTjRLsKIUfa",
|
||||||
|
"Wildflowers": "https://open.spotify.com/album/3ZGUBwDiY5HPOcWv4SBPQg",
|
||||||
|
"American Beauty": "https://open.spotify.com/album/2UDDZVesmQwA4aYfa55diS",
|
||||||
|
"Either/Or": "https://open.spotify.com/album/5hryhrT7wEdLnZCbJX9F6L",
|
||||||
|
"Definitely Maybe": "https://open.spotify.com/album/3AMHMM2aNG6k3d7ybcQ5bY",
|
||||||
|
"CrazySexyCool": "https://open.spotify.com/album/5eg56dCpFn32neJak2vk0f",
|
||||||
|
"Only Built 4 Cuban Linx...": "https://open.spotify.com/album/7btiyhWzUfzxN3ijSiBpC8",
|
||||||
|
"Déjà Vu": "https://open.spotify.com/album/3W2YH6i1ioXaS46nUkS7lB",
|
||||||
|
"Rage Against the Machine": "https://open.spotify.com/album/4Io5vWtmV1rFj4yirKb4y4",
|
||||||
|
"Ray of Light": "https://open.spotify.com/album/6cuNyrSmRjBeekioLdLkvI",
|
||||||
|
"Imagine": "https://open.spotify.com/album/0xzaemKucrJpYhyl7TltAk",
|
||||||
|
"Fly": "https://open.spotify.com/album/3y6G5El2I6QrJA9BdfAbqA",
|
||||||
|
"Yankee Hotel Foxtrot": "https://open.spotify.com/album/4jVVAenBaHRF8w0MV6qKw7",
|
||||||
|
"Layla and Other Assorted Love Songs": "https://open.spotify.com/album/5iIWnMgvSM8uEBwXKsPcXM",
|
||||||
|
"Here's Little Richard": "https://open.spotify.com/album/18tV6PLXYvVjsdOVk0S7M8",
|
||||||
|
"De La Soul Is Dead": "https://open.spotify.com/album/5F3GEttPPR58Gg15BKUsTd",
|
||||||
|
"The Ultimate Collection": "https://open.spotify.com/album/54Ykk8Gg8TuHjLbYvErsKh",
|
||||||
|
"Anti": "https://open.spotify.com/album/4UlGauD7ROb3YbVOFMgW5u",
|
||||||
|
"Damn the Torpedoes": "https://open.spotify.com/album/708Whrc4abJEtqBINv9S2b",
|
||||||
|
"Giant Steps": "https://open.spotify.com/album/7MBQWjukLxXZYvQ8vzEH7t",
|
||||||
|
"Little Earthquakes": "https://open.spotify.com/album/5bxqwBKvCyB67zOEVCrFZE",
|
||||||
|
"Master of Reality": "https://open.spotify.com/album/24fNwoIq4NLDf4ARJYAFN9",
|
||||||
|
"Metallica": "https://open.spotify.com/album/7h5xn0Olvx2p0eQcSt1Osy",
|
||||||
|
"Discovery": "https://open.spotify.com/album/2noRn2Aes5aoNVsU6iWThc",
|
||||||
|
"Red Headed Stranger": "https://open.spotify.com/album/5aEtg4dxdBk4pj6SJ3hNsM",
|
||||||
|
"Trans-Europe Express": "https://open.spotify.com/album/0HHRIVjvBcnTepfeRVgS2f",
|
||||||
|
"Criminal Minded": "https://open.spotify.com/album/3PkWTXolCR9RkJrKiAsf55",
|
||||||
|
"Live at the Harlem Square Club, 1963": "https://open.spotify.com/album/3nTXqOEHr6AfTb1WSaB4Pm",
|
||||||
|
"Blue Lines": "https://open.spotify.com/album/5mAPk4qeNqVLtNydaWbWlf",
|
||||||
|
"Loaded": "https://open.spotify.com/album/2ny1rPsLOoKNFZhMLubMrs",
|
||||||
|
"Odessey and Oracle": "https://open.spotify.com/album/6ToVzL6h7HnatpBcOF0fH5",
|
||||||
|
"808s & Heartbreak": "https://open.spotify.com/album/3WFTGIO6E3Xh4paEOBY9OU",
|
||||||
|
"Heaven or Las Vegas": "https://open.spotify.com/album/5lEphbceIgaK1XxWeSrC9E",
|
||||||
|
"Mama Said Knock You Out": "https://open.spotify.com/album/7p7kcsrdoJ8DKQIMouujcb",
|
||||||
|
"Love Deluxe": "https://open.spotify.com/album/2PfGKHtqEX58bHtkQxJnWG",
|
||||||
|
"American Idiot": "https://open.spotify.com/album/5dN7F9DV0Qg1XRdIgW8rke",
|
||||||
|
"Whitney Houston": "https://open.spotify.com/album/2MH37enG6IPvNK5QFLyKes",
|
||||||
|
"Singles Going Steady": "https://open.spotify.com/album/6TxgQwGrbG3XZLNPOEhg7E",
|
||||||
|
"Honky Château": "https://open.spotify.com/album/30ey65p5ZWsi82MsferipB",
|
||||||
|
"Q: Are We Not Men? A: We Are Devo!": "https://open.spotify.com/album/1KkMseKFaUHN3TXrXF3jHT",
|
||||||
|
"The Piper at the Gates of Dawn": "https://open.spotify.com/album/2Se4ZylF9NkFGD92yv1aZC",
|
||||||
|
"Head Hunters": "https://open.spotify.com/album/5fmIolILp5NAtNYiRPjhzA",
|
||||||
|
"The Freewheelin' Bob Dylan": "https://open.spotify.com/album/0o1uFxZ1VTviqvNaYkTJek",
|
||||||
|
"Tracy Chapman": "https://open.spotify.com/album/6hmmX5UP4rIvOpGSaPerV8",
|
||||||
|
"Coat of Many Colors": "https://open.spotify.com/album/17CT6ru3CyDXAi6xVaSUzg",
|
||||||
|
"The Hissing of Summer Lawns": "https://open.spotify.com/album/3gUlFM3azK6ZIkKz1zK7Nj",
|
||||||
|
"Pearl": "https://open.spotify.com/album/3j7nicLAWXM0Fb08q9XGyf",
|
||||||
|
"Cut": "https://open.spotify.com/album/6ppPT0aXOtsAlG1QQVB9E0",
|
||||||
|
"Check Your Head": "https://open.spotify.com/album/7CSP7J60QKIBCqOV64qILq",
|
||||||
|
"Power, Corruption & Lies": "https://open.spotify.com/album/6NTrwu1XJ56jBPx7HMksbZ",
|
||||||
|
"A Hard Day's Night": "https://open.spotify.com/album/28wyXPCrgKrXZxnKywfLaU",
|
||||||
|
"Wish You Were Here": "https://open.spotify.com/album/0bCAjiUamIFqKJsekOYuRw",
|
||||||
|
"Wowee Zowee": "https://open.spotify.com/album/0OHDiDMyxzWJfwtoeHNCf4",
|
||||||
|
"Help!": "https://open.spotify.com/album/0PT5m6hwPRrpBwIHVnvbFX",
|
||||||
|
"Double Nickels on the Dime": "https://open.spotify.com/album/5viZ5HyYtV0wafK7DoXmgF",
|
||||||
|
"Sail Away": "https://open.spotify.com/album/7ojNQckNp7Tj2BkLJCiiUL",
|
||||||
|
"Yeezus": "https://open.spotify.com/album/7D2NdGvBHIavgLhmcwhluK",
|
||||||
|
"Golden Hour": "https://open.spotify.com/album/7f6xPqyaolTiziKf5R5Z0c",
|
||||||
|
"What's the 411?": "https://open.spotify.com/album/5Q3xLiKnY4ShDuQda7qfg2",
|
||||||
|
"White Light/White Heat": "https://open.spotify.com/album/0HHmJpwOXXRJu9HI9iQiEO",
|
||||||
|
"Entertainment!": "https://open.spotify.com/album/1UMvR1rwj9EzLnbj4L6Zoy",
|
||||||
|
"Sweetheart of the Rodeo": "https://open.spotify.com/album/02XyFDfvHfIwtqOC3o0PcK",
|
||||||
|
"Curtis": "https://open.spotify.com/album/3tgJmEz0R0ZsRSrpwafp4R",
|
||||||
|
"The Bends": "https://open.spotify.com/album/35UJLpClj5EDrhpNIi4DFg",
|
||||||
|
"The Diary of Alicia Keys": "https://open.spotify.com/album/6TqRKHLjDu5QZuC8u5Woij",
|
||||||
|
"Houses of the Holy": "https://open.spotify.com/album/0GqpoHJREPp0iuXK3HzrHk",
|
||||||
|
"MTV Unplugged in New York": "https://open.spotify.com/album/1To7kv722A8SpZF789MZy7",
|
||||||
|
"Get Rich or Die Tryin'": "https://open.spotify.com/album/5G5rgQHzdQnw32SI0WjIo5",
|
||||||
|
"Nilsson Schmilsson": "https://open.spotify.com/album/3EfpOFKjotrMQTFTnxrXaB",
|
||||||
|
"In the Wee Small Hours": "https://open.spotify.com/album/3GmwKB1tgPZgXeRJZSm9WX",
|
||||||
|
"Bad Girls": "https://open.spotify.com/album/58GjBhQvLHwfQFJtdP9Oxg",
|
||||||
|
"Down Every Road 1962–1994": "https://open.spotify.com/album/40Wi0Ej08sw9B4URIOabOI",
|
||||||
|
"Third/Sister Lovers": "https://open.spotify.com/album/2P7iTgviFTwJH69Zaoo6oU",
|
||||||
|
"Californication": "https://open.spotify.com/album/2Y9IRtehByVkegoD7TcLfi",
|
||||||
|
"Mr. Tambourine Man": "https://open.spotify.com/album/0pkrqPjeq9K5KD0hFqAKNa",
|
||||||
|
"The Modern Lovers": "https://open.spotify.com/album/7ro1W6lc4tuTaRyA8rnVm1",
|
||||||
|
"Post": "https://open.spotify.com/album/2lYwBB5l7GqgyHFTHz0Itd",
|
||||||
|
"Speakerboxxx/The Love Below": "https://open.spotify.com/album/1UsmQ3bpJTyK6ygoOOjG1r",
|
||||||
|
"The Writing's on the Wall": "https://open.spotify.com/album/283NWqNsCA9GwVHrJk59CG",
|
||||||
|
"Van Halen": "https://open.spotify.com/album/7DdEbYFPKTZ8KB4z6L4UnQ",
|
||||||
|
"Last Splash": "https://open.spotify.com/album/57F44c0MTziVzHPEuJtH9A",
|
||||||
|
"Weezer": "https://open.spotify.com/album/1xpGyKyV26uPstk1Elgp9Q",
|
||||||
|
"Random Access Memories": "https://open.spotify.com/album/4m2880jivSbbyEGAKfITCa",
|
||||||
|
"Rust Never Sleeps": "https://open.spotify.com/album/2LOpi63tYGh0Suy8eLJDVQ",
|
||||||
|
"So": "https://open.spotify.com/album/0hQb1KT6L3iEYRkS5u8cjm",
|
||||||
|
"Full Moon Fever": "https://open.spotify.com/album/5d71Imt5CIb7LpQwDMQ093",
|
||||||
|
"Live at the Regal": "https://open.spotify.com/album/7njGz7ZeDXL6cH3VnflcQ2",
|
||||||
|
"Come On Over": "https://open.spotify.com/album/2aU5BWirMOaV1OpsakTIbV",
|
||||||
|
"New York Dolls": "https://open.spotify.com/album/2xbTV0Awe4Qm5caUVuPbMr",
|
||||||
|
"Tonight's the Night": "https://open.spotify.com/album/2wjrhhAibIUwC40oFMALtr",
|
||||||
|
"The Definitive Collection": "https://open.spotify.com/album/1V6a99EbTTIegOhWoPxYI9",
|
||||||
|
"Just as I Am": "https://open.spotify.com/album/6N8uPmDqbgXD3ztkCCfxoo",
|
||||||
|
"Alive!": "https://open.spotify.com/album/6TRmLIsPKSPS71Cnq8FiMc",
|
||||||
|
"I'm Still in Love with You": "https://open.spotify.com/album/7hI0QCwcx9GB8MZK24IfTT",
|
||||||
|
"Portrait of a Legend: 1951–1964": "https://open.spotify.com/album/6QGm9AGR7l5YYQPb66FGdc",
|
||||||
|
"Here Come the Warm Jets": "https://open.spotify.com/album/74jn28Kr29iyh8eZXSvnwi",
|
||||||
|
"Closer": "https://open.spotify.com/album/1HnxC8MLDciii5LebJ09Ko",
|
||||||
|
"Pink Flag": "https://open.spotify.com/album/4WXqZZ28geJSPtqLcCF56L",
|
||||||
|
"On the Beach": "https://open.spotify.com/album/3w5Hok05AFjCLy269xXM7e",
|
||||||
|
"A Seat at the Table": "https://open.spotify.com/album/3Yko2SxDk4hc6fncIBQlcM",
|
||||||
|
"Stories from the City, Stories from the Sea": "https://open.spotify.com/album/0hBWhJEmVyNPG2Jq71CJXz",
|
||||||
|
"One in a Million": "https://open.spotify.com/album/5VT7ND2Rq0MhfqxkAzBNz3",
|
||||||
|
"El Mal Querer": "https://open.spotify.com/album/355bjCHzRJztCzaG5Za4gq",
|
||||||
|
"The Who Sell Out": "https://open.spotify.com/album/2JyNDhGhp0hiizSPuUs0i9",
|
||||||
|
"Lady in Satin": "https://open.spotify.com/album/4LrLP7DM1KBj8r2Sc098JA",
|
||||||
|
"The Velvet Rope": "https://open.spotify.com/album/1uFp52Q9EXLNA6DTRYnpTj",
|
||||||
|
"The Stone Roses": "https://open.spotify.com/album/0um9FI6BLBldL5POP4D4Cw",
|
||||||
|
"Los Angeles": "https://open.spotify.com/album/4lgW2v8MOtBxyuQ7erHLgj",
|
||||||
|
"Norman Fucking Rockwell!": "https://open.spotify.com/album/5XpEKORZ4y6OrCZSKsi46A",
|
||||||
|
"From Elvis in Memphis": "https://open.spotify.com/album/3ekkFrfotMsEAKc5g71GHk",
|
||||||
|
"Sandinista!": "https://open.spotify.com/album/2UxN3UKyS3Z5r0Sra8A5RF",
|
||||||
|
"A Rush of Blood to the Head": "https://open.spotify.com/album/0RHX9XECH8IVI3LNgWDpmQ",
|
||||||
|
"All Killer, No Filler: The Anthology": "https://open.spotify.com/album/6iM9BYIXaVE2ixLxVdDYIB",
|
||||||
|
"Dirty Mind": "https://open.spotify.com/album/3Cijd5OjHeWBm97DsPHpgs",
|
||||||
|
"Live at Leeds": "https://open.spotify.com/album/6W3aTLI4B5UsPpWMvhT2W4",
|
||||||
|
"Modern Vampires of the City": "https://open.spotify.com/album/1GXMNFfoHF4sN7lG8gZq1j",
|
||||||
|
"Endtroducing.....": "https://open.spotify.com/album/4tUVkNYSFrrEqqrxBQW9PN",
|
||||||
|
"Aftermath": "https://open.spotify.com/album/72qrnM4yUNMDDlWiqKc8iY",
|
||||||
|
"Like a Prayer": "https://open.spotify.com/album/48AGkmM7iO4jrELRnNZGPV",
|
||||||
|
"Elvis Presley": "https://open.spotify.com/album/3X3rFfVKCW58sKMO0UXkwO",
|
||||||
|
"Still Bill": "https://open.spotify.com/album/0sFuW4rH5mFZUjNKnckO3v",
|
||||||
|
"Abraxas": "https://open.spotify.com/album/1CHUXwuge9A7L2KiA3vnR6",
|
||||||
|
"The Basement Tapes": "https://open.spotify.com/album/6BOlD6UGUg45IsUXPSplkY",
|
||||||
|
"Avalon": "https://open.spotify.com/album/3JXODSjT9mUz2lIb4YIErw",
|
||||||
|
"John Wesley Harding": "https://open.spotify.com/album/2KzCDxKpgLqBffHu1IZ7Kn",
|
||||||
|
"Another Green World": "https://open.spotify.com/album/6uoeezh45SYEb8lcT8gDTY",
|
||||||
|
"Janet Jackson's Rhythm Nation 1814": "https://open.spotify.com/album/7jtBAkD6DL5yn7komrFTxE",
|
||||||
|
"Doggystyle": "https://open.spotify.com/album/5IFOummNcGXY3qCBWRchqP",
|
||||||
|
"Siamese Dream": "https://open.spotify.com/album/0bQglEvsHphrS19FGODEGo",
|
||||||
|
"Greatest Hits": "https://open.spotify.com/album/0UM9SydcBtsklCTFgGLvcT",
|
||||||
|
"Funky Kingston": "https://open.spotify.com/album/7a341nZsSfwyBsq1tMPETz",
|
||||||
|
"The Wild, the Innocent & the E Street Shuffle": "https://open.spotify.com/album/1rmhti8uHw21LnaWMQy608",
|
||||||
|
"AM": "https://open.spotify.com/album/78bpIziExqiI9qztvNFlQu",
|
||||||
|
"Liquid Swords": "https://open.spotify.com/album/3k8xoyOXkGgZxUKgpmxz4P",
|
||||||
|
"Time (The Revelator)": "https://open.spotify.com/album/5q1V1otgRVF39cZY2RQab8",
|
||||||
|
"Kick Out the Jams": "https://open.spotify.com/album/0kT4F2mSpvTk3stwiaEStp",
|
||||||
|
"Music of My Mind": "https://open.spotify.com/album/7n0bcoRDylRw5PUKn2PlRJ",
|
||||||
|
"SOS": "https://open.spotify.com/album/07w0rG5TETcyihsEIZR3qG",
|
||||||
|
"The Slim Shady LP": "https://open.spotify.com/album/0vE6mttRTBXRe9rKghyr1l",
|
||||||
|
"The Cars": "https://open.spotify.com/album/4tJPWT4r4FSKwy784Qs1Fq",
|
||||||
|
"Germfree Adolescents": "https://open.spotify.com/album/6O0hDvYYCjEoOzJdXkiaXa",
|
||||||
|
"Black Sabbath": "https://open.spotify.com/album/3OmnatFgQ8o1DlYLp9EpNJ",
|
||||||
|
"Gris-Gris": "https://open.spotify.com/album/1yBoaVrgcup2hX2DCYUajs",
|
||||||
|
"Rain Dogs": "https://open.spotify.com/album/51CvLH7MxsLuFgTwVvzApx",
|
||||||
|
"Sour": "https://open.spotify.com/album/6s84u2TUpR3wdUv4NgKA2j",
|
||||||
|
"Radio City": "https://open.spotify.com/album/79Kv2xKvtqXrDcY2acvqfT",
|
||||||
|
"One Nation Under a Groove": "https://open.spotify.com/album/76Gl4laaUkIibH45JYX320",
|
||||||
|
"The Black Parade": "https://open.spotify.com/album/0FZK97MXMm5mUQ8mtudjuK",
|
||||||
|
"Never Too Much": "https://open.spotify.com/album/1B4oPgG5ljWTRxsKcTHAYn",
|
||||||
|
"Mothership Connection": "https://open.spotify.com/album/4q1HNSka8CzuLvC8ydcsD2",
|
||||||
|
"More Songs About Buildings and Food": "https://open.spotify.com/album/01RJdKvXyz515O37itqMIJ",
|
||||||
|
"Madvillainy": "https://open.spotify.com/album/19bQiwEKhXUBJWY6oV3KZk",
|
||||||
|
"Rocks": "https://open.spotify.com/album/4ldiyfqRvKiIasHHuDftuP",
|
||||||
|
"If You're Reading This It's Too Late": "https://open.spotify.com/album/0ptlfJfwGTy0Yvrk14JK1I",
|
||||||
|
"All Things Must Pass": "https://open.spotify.com/album/7j7lsExGJtBHLgDYzjclwk",
|
||||||
|
"The Infamous": "https://open.spotify.com/album/1cCAb1vN8uUsdfEylVmTLs",
|
||||||
|
"Tha Carter II": "https://open.spotify.com/album/1Do3y8IAcbYOToYQJnGwSO",
|
||||||
|
"Anthology": "https://open.spotify.com/album/5gX0Oedkr1IgRO8OXhUR5k",
|
||||||
|
"Cheap Thrills": "https://open.spotify.com/album/2rogKfOpmCFuqNhtGKf2dX",
|
||||||
|
"Hot Buttered Soul": "https://open.spotify.com/album/71rxIr6MJYUzDG9ge6Jq3J",
|
||||||
|
"King of the Delta Blues Singers": "https://open.spotify.com/album/2IWaNq5o4tG1w6yxve5BMU",
|
||||||
|
"Dookie": "https://open.spotify.com/album/4uG8q3GPuWHQlRbswMIRS6",
|
||||||
|
"In the Aeroplane Over the Sea": "https://open.spotify.com/album/0vVekV45lOaVKs6RZQQNob",
|
||||||
|
"Fever to Tell": "https://open.spotify.com/album/44ePwTuWK88vnalqutqJEG",
|
||||||
|
"Run-D.M.C.": "https://open.spotify.com/album/7AFsTiojVaB2I58oZ1tMRg",
|
||||||
|
"Moving Pictures": "https://open.spotify.com/album/2xg7iIKoSqaDNpDbJnyCjY",
|
||||||
|
"Mingus Ah Um": "https://open.spotify.com/album/7pojWP7x9uEFSJgw765khA",
|
||||||
|
"(Pronounced 'Lĕh-'nérd 'Skin-'nérd)": "https://open.spotify.com/album/6DExt1eX4lflLacVjHHbOs",
|
||||||
|
"Currents": "https://open.spotify.com/album/79dL7FLiJFOO0EoehUHQBv",
|
||||||
|
"Mezzanine": "https://open.spotify.com/album/49MNmJhZQewjt06rpwp6QR",
|
||||||
|
"The Kinks Are the Village Green Preservation Society": "https://open.spotify.com/album/2zYEcirgirihBtUr9ninD6",
|
||||||
|
"Rocket to Russia": "https://open.spotify.com/album/7Jb0VtDTacuQdXM3pYyrbv",
|
||||||
|
"Donuts": "https://open.spotify.com/album/5fMlysqhFE0itGn4KezMBW",
|
||||||
|
"In Rainbows": "https://open.spotify.com/album/5vkqYmiPBYLaalcmjujWxK",
|
||||||
|
"Young, Gifted and Black": "https://open.spotify.com/album/0k5C3Z7w7uQpyGFQEzl7yB",
|
||||||
|
"The Emancipation of Mimi": "https://open.spotify.com/album/6ek7Y68IlB6CoFkkc2gEQb",
|
||||||
|
"Surfer Rosa": "https://open.spotify.com/album/50j4Wm1b9hLpSpPIA39Vp9",
|
||||||
|
"Kaleidoscope": "https://open.spotify.com/album/33viW1sFm3sCCmzs7FZ9MI",
|
||||||
|
"Proud Mary: The Best of Ike & Tina Turner": "https://open.spotify.com/album/4cotyYQgYleaHbqQEgU9Hv",
|
||||||
|
"1989": "https://open.spotify.com/album/1yGbNOtRIgdIiGHOEBaZWf",
|
||||||
|
"Diana": "https://open.spotify.com/album/3zgDLoVcpVGfFbDZJf3uHI",
|
||||||
|
"Black Messiah": "https://open.spotify.com/album/5Hfbag0SsHxafx1SySFSX6",
|
||||||
|
"Something/Anything?": "https://open.spotify.com/album/5pNzs0yJU8BU40iWoSszG1",
|
||||||
|
"When We All Fall Asleep, Where Do We Go?": "https://open.spotify.com/album/0S0KGZnfBGSIssfF54WSJh",
|
||||||
|
"The Raincoats": "https://open.spotify.com/album/190Tx9jPHndq0qUlq79BJJ",
|
||||||
|
"Brian Wilson Presents Smile": "https://open.spotify.com/album/4Uc6YCjpfyjj02rZfg2EUv",
|
||||||
|
"Beauty and the Beat": "https://open.spotify.com/album/6LDkuQZTLwRVja4CpYOCuu",
|
||||||
|
"Blondie": "https://open.spotify.com/album/7mEjsBlRmfP63cH1gdPT6A",
|
||||||
|
"Expensive Shit": "https://open.spotify.com/album/2hxVGSxWSPYlUc8oCnQaWp",
|
||||||
|
"Supreme Clientele": "https://open.spotify.com/album/7eaQqVyq6xzAVgsxSzSP83",
|
||||||
|
"Rapture": "https://open.spotify.com/album/1C7VOpm96d77zf5yaRqJ2u",
|
||||||
|
"Nuggets: Original Artyfacts from the First Psychedelic Era, 1965–1968": "https://open.spotify.com/album/7v6BA3ieH8ObGhaYxpGNJI",
|
||||||
|
"69 Love Songs": "https://open.spotify.com/album/2GuROKcqyHdpIDcgxml1C7",
|
||||||
|
"Everybody Knows This Is Nowhere": "https://open.spotify.com/album/70Yl2w1p00whfnC7fj94ox",
|
||||||
|
"Ace of Spades": "https://open.spotify.com/album/619d4uJE3h2rOlw7kmSlD6",
|
||||||
|
"Workingman's Dead": "https://open.spotify.com/album/27uj8NveXyk1lH09t4hLTB",
|
||||||
|
"Wild Honey": "https://open.spotify.com/album/01uTaEF0YlcBgNwaSS9iIl",
|
||||||
|
"Love and Theft": "https://open.spotify.com/album/4BcfuxQ4EO07Y53yr6YhAJ",
|
||||||
|
"Going to a Go-Go": "https://open.spotify.com/album/2NT1Pc0MXlXORHLBkHyKQW",
|
||||||
|
"Cosmo's Factory": "https://open.spotify.com/album/5w2X5ZmdE4u0XGkOU7BiLG",
|
||||||
|
"Risqué": "https://open.spotify.com/album/1UFBJkKiBe3Lzjr307UhuU",
|
||||||
|
"Look-Ka Py Py": "https://open.spotify.com/album/6mGpQtwteyjKS4Up9tXuND",
|
||||||
|
"Things Fall Apart": "https://open.spotify.com/album/0qbl8aNaCUOvX8HGsZYLfh",
|
||||||
|
"The Shape of Jazz to Come": "https://open.spotify.com/album/2iPH3iUmpa9ufIpwY76keF",
|
||||||
|
"Brothers in Arms": "https://open.spotify.com/album/6Pz06FAaeym0JSqVqIkN56",
|
||||||
|
"Chief": "https://open.spotify.com/album/5dtw6CoMhbrSj01YUvdQOF",
|
||||||
|
"That's the Way of the World": "https://open.spotify.com/album/5tXZfxvr2VaWibD74nw8VL",
|
||||||
|
"Arular": "https://open.spotify.com/album/7CzEknt9gJwe0QC89ir1JX",
|
||||||
|
"Let's Get It On": "https://open.spotify.com/album/1oIICL75sMuInkEhX8jj3b",
|
||||||
|
"I Can Hear the Heart Beating as One": "https://open.spotify.com/album/3V18DIKvRuwdxc2LE4wuac",
|
||||||
|
"Odelay": "https://open.spotify.com/album/3PpTsdpZmaLUh6RvViu9G7",
|
||||||
|
"Paul Simon": "https://open.spotify.com/album/7npBPiCHjPj8PVIGPuHXep",
|
||||||
|
"Lucinda Williams": "https://open.spotify.com/album/63498KErJdRts4KWrgv2dT",
|
||||||
|
"Call Me": "https://open.spotify.com/album/1hryVGXoRLV9WAhO97xEDJ",
|
||||||
|
"New Day Rising": "https://open.spotify.com/album/2eOu9QDLP2MoO04ZtII2Vm",
|
||||||
|
"Reach Out": "https://open.spotify.com/album/4Jw0RycAqlXeAoymbc0CYp",
|
||||||
|
"Un Verano Sin Ti": "https://open.spotify.com/album/3RQQmkQEvNCY4prGKE6oc5",
|
||||||
|
"How Will the Wolf Survive?": "https://open.spotify.com/album/5dl01XDIMXrmjJ22obqfhQ",
|
||||||
|
"Confessions": "https://open.spotify.com/album/1RM6MGv6bcl6NrAG8PGoZk",
|
||||||
|
"Sound of Silver": "https://open.spotify.com/album/1R8kkopLT4IAxzMMkjic6X",
|
||||||
|
"Crooked Rain, Crooked Rain": "https://open.spotify.com/album/1XFNz6KIvLyIsLFOiLRKqP",
|
||||||
|
"Actually": "https://open.spotify.com/album/7ae4SfR2B1wEXX5EwS2Cg7",
|
||||||
|
"All Eyez on Me": "https://open.spotify.com/album/78iX7tMceN0FsnmabAtlOC",
|
||||||
|
"Demon Days": "https://open.spotify.com/album/0bUTHlWbkSQysoM3VsWldT",
|
||||||
|
"Parklife": "https://open.spotify.com/album/0DBkFC6739trhCoVreZyds",
|
||||||
|
"Sex Machine": "https://open.spotify.com/album/3CVie3TkZ0VHgT6mlwy7cp",
|
||||||
|
"Coal Miner's Daughter": "https://open.spotify.com/album/0GwutxUegzjsakpQ06OJOm",
|
||||||
|
"Blackout": "https://open.spotify.com/album/1ePkYcH5ZQCb1b4tQeiEDj",
|
||||||
|
"Beauty Behind the Madness": "https://open.spotify.com/album/0P3oVJBFOv3TDXlYRhGL7s",
|
||||||
|
"Scary Monsters (and Super Creeps)": "https://open.spotify.com/album/5fxvWHvIDPIALfTfRiwyB0",
|
||||||
|
"Extraordinary Machine": "https://open.spotify.com/album/1z0O8lKuQRs974S8wcRiAs",
|
||||||
|
"Close to the Edge": "https://open.spotify.com/album/6344rkGqCBDenGoS7eJlBN",
|
||||||
|
"Journey in Satchidananda": "https://open.spotify.com/album/6zV55F6W8kh1qe8LHhqRbz",
|
||||||
|
"X 100pre": "https://open.spotify.com/album/7CjJb2mikwAWA1V6kewFBF",
|
||||||
|
"Complete & Unbelievable: The Otis Redding Dictionary of Soul": "https://open.spotify.com/album/25uNcuL4dAoV62eKmr8Q0Y",
|
||||||
|
"Elephant": "https://open.spotify.com/album/6D9urpsOWWKtYvF6PaorGE",
|
||||||
|
"Ram": "https://open.spotify.com/album/3DTMsrNO6lEHNmDJ0fsN4v",
|
||||||
|
"First Take": "https://open.spotify.com/album/2ARWEOvaUgm4FSj25MpY6F",
|
||||||
|
"Pretty Hate Machine": "https://open.spotify.com/album/3umFHeEpc4yLXtrRcv9gLN",
|
||||||
|
"Ege Bamyası": "https://open.spotify.com/album/1MLxE2czxo5A9OVZ2m8FV3",
|
||||||
|
"Bo Diddley/Go Bo Diddley[a]": "https://open.spotify.com/album/71lvfHjjLerIFN8ZNSrqIe",
|
||||||
|
"Al Green's Greatest Hits": "https://open.spotify.com/album/0LfM3PGkXE6KvJEE1HkOnz",
|
||||||
|
"I Do Not Want What I Haven't Got": "https://open.spotify.com/album/0fV9DAddjwNZcmCP1Q8b01",
|
||||||
|
"Southeastern": "https://open.spotify.com/album/1bg476ZQn7hmcXaU05SHV4",
|
||||||
|
"Man on the Moon: The End of Day": "https://open.spotify.com/album/6oPPKtAwNNlkW4wwHfQDfM",
|
||||||
|
"Melodrama": "https://open.spotify.com/album/2B87zXm9bOWvAJdkJBTpzF",
|
||||||
|
"For Emma, Forever Ago": "https://open.spotify.com/album/7EJ0OT5ZqybXxcYRa6mccM",
|
||||||
|
"The Gilded Palace of Sin": "https://open.spotify.com/album/6VWKy5o2OcdeWa7yolazjU",
|
||||||
|
"Eli and the Thirteenth Confession": "https://open.spotify.com/album/533zqKatpy90jse2K5IaiQ",
|
||||||
|
"3 + 3": "https://open.spotify.com/album/27eI33obJuyKebMTxAJJam",
|
||||||
|
"The Best of the Classic Years": "https://open.spotify.com/album/6Y5SoiYENbNuTBc6mTUKG9",
|
||||||
|
"BLACKsummers'night": "https://open.spotify.com/album/1cXFSOdjxmS13cOTtnNQAo",
|
||||||
|
"Some Girls": "https://open.spotify.com/album/1Jv2AqzhgsduUik2p4k3cS",
|
||||||
|
"Clandestino": "https://open.spotify.com/album/3xoAUqjKs7Ps7wR26VAMbq",
|
||||||
|
"400 Degreez": "https://open.spotify.com/album/6wpqS71CJr3I0dLguYiZdJ",
|
||||||
|
"Surrealistic Pillow": "https://open.spotify.com/album/6lPb7Eoon6QPbscWbMsk6a",
|
||||||
|
"Ctrl": "https://open.spotify.com/album/76290XdXVF9rPzGdNRWdCh",
|
||||||
|
"Barrio Fino": "https://open.spotify.com/album/7BmWnXvx1CD6vtxtBd0czc",
|
||||||
|
"#1 Record": "https://open.spotify.com/album/1BumwwIEw1EC3xAHyf1ive",
|
||||||
|
"Sheryl Crow": "https://open.spotify.com/album/3FiplT4vIgWCRwLZSn0EDd",
|
||||||
|
"Kimono My House": "https://open.spotify.com/album/7KOmuu3cbJQEQYGt3XmLmY",
|
||||||
|
"Moanin' in the Moonlight": "https://open.spotify.com/album/76MT4lqzC1oSvSYnHHjMam",
|
||||||
|
"Something Else by the Kinks": "https://open.spotify.com/album/65D4K5KKZqL4r0jxuaUR0M",
|
||||||
|
"Amor Prohibido": "https://open.spotify.com/album/3o1L0Wn7yVk7r0J1yxaRqA",
|
||||||
|
"The Weight of These Wings": "https://open.spotify.com/album/563h536tB6n8Dn62jr4RZG",
|
||||||
|
"If You're Feeling Sinister": "https://open.spotify.com/album/4usPTyIIgnAZ9eiItfEYSK",
|
||||||
|
"Bizarre Ride II the Pharcyde": "https://open.spotify.com/album/48kU5gP41TqZEw32Cwhsna",
|
||||||
|
"The Anthology: 1947–1972": "https://open.spotify.com/album/4fOVcN7X7vQ8L41is621uJ",
|
||||||
|
"Born This Way": "https://open.spotify.com/album/6LY3AerY6KNGOPsNPL63Kk",
|
||||||
|
"I Want to See the Bright Lights Tonight": "https://open.spotify.com/album/1K1Qdd60pW48wEgWGQLeRt",
|
||||||
|
"Continuum": "https://open.spotify.com/album/1Xsprdt1q9rOzTic7b9zYM",
|
||||||
|
"Damaged": "https://open.spotify.com/album/34aFnrFRBlErcbU6moRZR3",
|
||||||
|
"The Stooges": "https://open.spotify.com/album/0Z1Y5L90NjqUD351YUQWdA",
|
||||||
|
"Back to Mono (1958–1969)": "https://open.spotify.com/album/3VsKbddUIng2aLagMZUwwb",
|
||||||
|
"Heart Like a Wheel": "https://open.spotify.com/album/7upKDUGJUjsvfIe6vuVB0b",
|
||||||
|
"Harry's House": "https://open.spotify.com/album/6XCpLLxr9adk3jwrHLqRLQ",
|
||||||
|
"Nick of Time": "https://open.spotify.com/album/6wxpS5o0ty5CLqyH5fIRln",
|
||||||
|
"Here, My Dear": "https://open.spotify.com/album/0YbHA3w82FSmpyXxdXfuCv",
|
||||||
|
"Presenting the Fabulous Ronettes Featuring Veronica": "https://open.spotify.com/album/0CoNLgOwcZGBUSwd9fAZuy",
|
||||||
|
"II": "https://open.spotify.com/album/1DjxZpmeR9Dzu9tF4J44S7",
|
||||||
|
"¿Dónde Están los Ladrones?": "https://open.spotify.com/album/5hcKSTqKOLuzJgYIQileAe",
|
||||||
|
"The Indestructible Beat of Soweto": "https://open.spotify.com/album/1DIr8JMRBnm1cZMYIGKb8t",
|
||||||
|
"Suicide": "https://open.spotify.com/album/46kw5FsFdJhNRL8wfHM9Bp",
|
||||||
|
"Ask Rufus": "https://open.spotify.com/album/3ZJJdnvxztzpOvwvzUzUxC",
|
||||||
|
"Funeral": "https://open.spotify.com/album/6ZB8qaR9JNuS0Q0bG1nbcH"
|
||||||
|
}
|
||||||
91
styles.css
91
styles.css
|
|
@ -305,6 +305,12 @@ body {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sort-controls {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.5rem;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
.filter-select {
|
.filter-select {
|
||||||
padding: 0.75rem 1rem;
|
padding: 0.75rem 1rem;
|
||||||
border: 2px solid #e1e5e9;
|
border: 2px solid #e1e5e9;
|
||||||
|
|
@ -570,25 +576,27 @@ body {
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.album-status-row {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
.album-share {
|
.album-share {
|
||||||
position: absolute;
|
|
||||||
top: 1rem;
|
|
||||||
right: 1rem;
|
|
||||||
background: var(--primary-color);
|
background: var(--primary-color);
|
||||||
color: var(--text-light);
|
color: var(--text-light);
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 36px;
|
width: 32px;
|
||||||
height: 36px;
|
height: 32px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 1rem;
|
font-size: 0.875rem;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
opacity: 0;
|
flex-shrink: 0;
|
||||||
transform: scale(0.8);
|
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
box-shadow: 0 2px 8px var(--shadow-color);
|
box-shadow: 0 2px 8px var(--shadow-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -596,11 +604,6 @@ body {
|
||||||
color: var(--text-light);
|
color: var(--text-light);
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-card:hover .album-share {
|
|
||||||
opacity: 1;
|
|
||||||
transform: scale(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.album-share:hover {
|
.album-share:hover {
|
||||||
background: var(--secondary-color);
|
background: var(--secondary-color);
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
|
|
@ -612,7 +615,6 @@ body {
|
||||||
|
|
||||||
.album-share.copied {
|
.album-share.copied {
|
||||||
background: var(--secondary-color);
|
background: var(--secondary-color);
|
||||||
opacity: 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-card:hover {
|
.album-card:hover {
|
||||||
|
|
@ -671,7 +673,6 @@ body {
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
align-self: flex-start;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-new {
|
.status-new {
|
||||||
|
|
@ -729,6 +730,13 @@ body {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding-top: 1rem;
|
padding-top: 1rem;
|
||||||
border-top: 1px solid #eee;
|
border-top: 1px solid #eee;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.75rem;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.album-links-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
@ -807,6 +815,11 @@ body {
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.next-album-link.next-album-link-wide {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
.next-album-link:hover {
|
.next-album-link:hover {
|
||||||
background: var(--primary-color);
|
background: var(--primary-color);
|
||||||
color: var(--text-light);
|
color: var(--text-light);
|
||||||
|
|
@ -864,6 +877,10 @@ body {
|
||||||
|
|
||||||
/* Responsive design */
|
/* Responsive design */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
|
.header {
|
||||||
|
padding-bottom: 2rem; /* Reduced padding */
|
||||||
|
}
|
||||||
|
|
||||||
.supertitle {
|
.supertitle {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
}
|
}
|
||||||
|
|
@ -874,11 +891,12 @@ body {
|
||||||
|
|
||||||
.subtitle {
|
.subtitle {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-theme-selector {
|
.header-theme-selector {
|
||||||
bottom: 0.5rem;
|
position: static;
|
||||||
right: 0.5rem;
|
margin-top: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-select-header {
|
.theme-select-header {
|
||||||
|
|
@ -897,11 +915,27 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.filters {
|
.filters {
|
||||||
justify-content: center;
|
flex-direction: column;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sort-controls {
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr auto;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sort-controls .filter-select {
|
||||||
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reverse-button {
|
.reverse-button {
|
||||||
min-width: auto;
|
width: auto;
|
||||||
padding: 0.75rem;
|
padding: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -922,6 +956,11 @@ body {
|
||||||
|
|
||||||
.theme-selector {
|
.theme-selector {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-select {
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-card {
|
.album-card {
|
||||||
|
|
@ -945,9 +984,15 @@ body {
|
||||||
font-size: 5rem;
|
font-size: 5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-share {
|
.album-status-row {
|
||||||
opacity: 1;
|
width: 100%;
|
||||||
transform: scale(1);
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.album-status {
|
||||||
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stats {
|
.stats {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue