CINXE.COM
Every Noise at Once - country blues
<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" > <style type="text/css"> body {font: 14px GillSansRegular, "Gill Sans MT", "Gill Sans", "Trebuchet MS", sans-serif; width: 1500px; background: white} .canvas {position: relative} .genre {padding: 0px 2px; position: absolute; white-space: nowrap; cursor: pointer;} .genre:hover {color: black !important} .genre[played]:before {content: "\266B" !important; color: black !important} #mirror .genre:hover {color: white !important} #mirror .genre[played]:before {content: "\266B" !important; color: white !important} #mirror .current.genre[played]:before {color: gray !important} .genrelink {padding: 0px 2px; position: absolute; white-space: nowrap;} #mirror .genre[played] {color: #E6ADB7 !important} .title {float: left; font-weight: bold; font-size: 200%; margin-right: 32px; color: black} .title a {color: black} .showsong {position: absolute; left: 300px} form {display: inline; white-space: nowrap;} a, .related a {text-decoration: none; color: teal} a:hover, .fakelink:hover {color: FireBrick !important} .fakelink, .togglecontrols {cursor: pointer; color: teal} .genre.current {font-weight: bold; padding: 1px 2px; background: whitesmoke; border-color: black; border-style: solid; border-width: 1px 1px 1px 8px; z-index: 1000} .genre.current .navlink {background: whitesmoke} .navlink {display: none; color: FireBrick; background: white; padding: 0px 2px} #mirror .navlink {background: inherit} .navlink:hover {color: white !important; background: black !important} #mirror .navlink:hover {color: black !important; background: white !important} .genre.current .navlink, .genre:hover .navlink, .genrelink:hover .navlink {display: inline; z-index: 10000} .genrelink:hover .navlink {color: black} .related {color: gray; margin-top: 32px; width: 1400px;} .related a {white-space: nowrap} .sigil {color: black} </style> <script type="text/javascript"> var nowplaying = ''; var nowpending = ''; var gdivs = []; var scandivs = []; var clicknumber = 1; var scandur = 6000; function redraw() { document.forms[0].submit(); } function getpreviewurl(id) { var http_request = new XMLHttpRequest(); url = '/spotproxy.cgi?track=' + id; http_request.open("GET", url, false); http_request.send(null); tdata = JSON.parse(http_request.responseText); if ('preview_url' in tdata) { previewurl = tdata['preview_url']; return previewurl; } return null; } function playx(key, genre, me) { window.clearTimeout(nowpending); var spotifyplayer = document.getElementById('spotifyplayer'); if (nowplaying == genre) { spotifyplayer.pause(); highlight(''); nowplaying = ''; document.getElementById('scan').innerText = 'scan'; } else { previewurl = me.getAttribute('preview_url') if (!previewurl && key) { previewurl = getpreviewurl(key); } if (previewurl) { spotifyplayer.src = previewurl; spotifyplayer.play(); me.setAttribute('played', clicknumber++); nowplaying = genre; highlight(genre); } } } function findPosX(obj) { var left = 0; if(obj.offsetParent) { while(1) { left += obj.offsetLeft; if(!obj.offsetParent) break; obj = obj.offsetParent; } } else if(obj.x) { left += obj.x; } return left; } function findPosY(obj) { var top = 0; if(obj.offsetParent) { while(1) { top += obj.offsetTop; if(!obj.offsetParent) break; obj = obj.offsetParent; } } else if(obj.y) { top += obj.y; } return top; } function playhere(me, url) { var rp = document.getElementById('rp'); rp.style.display = 'none'; rp.firstChild.onload = function() { rp.style.top = findPosY(me) + 20; rleft = findPosX(me); if (rleft + 500 > window.innerWidth) { rleft = window.innerWidth - 500; if (rleft < 0) { rleft = 0; } } rp.style.left = rleft; rp.style.display = 'block'; } rp.lastChild.src = url; } function highlight(which) { if (gdivs.length == 0) { gdivs = document.getElementsByClassName('genre'); } for (i=0; i<gdivs.length; i++) { thisdiv = gdivs[i]; thistext = thisdiv.firstChild.textContent; if (thisdiv.className.indexOf('scanme') > -1) { basename = 'genre scanme'; } else { basename = 'genre'; } if (which.length > 0 && which.trim() == thistext.trim().replace('"', '')) { thisdiv.className = basename + ' current'; if(typeof thisdiv.scrollIntoViewIfNeeded == 'function') { thisdiv.scrollIntoViewIfNeeded(); } else { thisdiv.scrollIntoView({behavior: "smooth", block: "center", inline: "center"}); } } else { thisdiv.className = basename; } } } function scan(e, state) { if (typeof(e) == 'object') { if (e.altKey) { scandur = 20000; } else { scandur = 6000; } } var spotifyplayer = document.getElementById('spotifyplayer'); if (state == 'stop') { spotifyplayer.pause(); highlight(''); window.clearTimeout(nowpending); } else { if (gdivs.length == 0) { gdivs = document.getElementsByClassName('scanme'); } scandivs = []; for (i=0; i<gdivs.length; i++) { thisdiv = gdivs[i]; if (thisdiv.getAttribute('scan') && !thisdiv.getAttribute('played')) { scandivs.push(thisdiv) } } picked = scandivs[Math.floor(Math.random() * scandivs.length)]; picked.onclick(); if (scandivs.length > 1) { nowpending = window.setTimeout('scan("continue")', scandur); } else { nowpending = window.setTimeout('scan("stop")', scandur); } } } function togglecontrols() { var spotifyplayer = document.getElementById('spotifyplayer'); if (spotifyplayer.style.visibility == 'hidden') { spotifyplayer.style.visibility = 'visible'; } else { spotifyplayer.style.visibility = 'hidden'; } } function kb(event) { if(event.code === 'Space' || event.code === 'Enter') { event.target.click(); event.preventDefault(); } } </script> <title>Every Noise at Once - country blues</title> </head> <body> <div class=title><a href="engenremap.html">Every Noise at Once</a> · country blues <span class=fakelink role=button tabindex=0 id=scan onKeyDown="kb(event);" onclick="if (this.innerText == 'scan') {scan(event, 'start');this.innerHTML = 'stop';} else {scan(event, 'stop');this.innerHTML = 'scan';}" style="color: gray; cursor: pointer" >scan</span> <a style="color: gray" href="research.cgi?mode=genre&name=country%20blues">list</a> <a style="color: #989898" href="https://open.spotify.com/playlist/5LpV4RS7WgWaDyKxu0W60r" title="listen to The Sound of Country Blues on Spotify">playlist</a> <a style="color: #a6a6a6" href="https://open.spotify.com/user/particledetector/playlist/1pCZk4vLtENvQ3z9d8Ss94" title="listen to a shorter introduction to this genre">intro</a> <a style="color: #b4b4b4" href="https://open.spotify.com/user/particledetector/playlist/0EOZtLMmtfRkbPc5YXZu7T" title="listen to this genre's fans' current favorites">pulse</a> <a style="color: #c2c2c2" href="https://open.spotify.com/user/particledetector/playlist/246FUQm1FBfaWKySpvcuBS" title="listen to this genre's fans' new discoveries">edge</a> <a style="color: #d0d0d0" href="nrbg.html?genre=country%20blues">new</a></div> <div class=canvas role=main style="width: 1500px; height: 952px; top: 64px"> <div id=item1 preview_url="https://p.scdn.co/mp3-preview/25e6df70024590e6ac9999cb2675528d5beac07d" class="genre scanme" scan=true style="color: #8a7c23; top: 379px; left: 73px; font-size: 160%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5MTsZG10E0hTvAkdioyPnw", "Buddy Guy", this);" title="e.g. Buddy Guy "Feels Like Rain (feat. Bonnie Raitt)"">Buddy Guy<a class=navlink href="artistprofile.cgi?id=2gCsNOpiBaMNh20jQ5prf0" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item2 preview_url="https://p.scdn.co/mp3-preview/f8841da5df09adcc2ac40aa59f19049924fa32a8" class="genre scanme" scan=true style="color: #79871a; top: 268px; left: 524px; font-size: 152%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3E0VKSvZp76kvBU2WwwBul", "Taj Mahal", this);" title="e.g. Taj Mahal "Leaving Trunk"">Taj Mahal<a class=navlink href="artistprofile.cgi?id=1aTDTChWWyiJH3SEnYrdVp" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item3 preview_url="https://p.scdn.co/mp3-preview/7bac07adfdbad3292cd2bbee0ef398a71014e74a" class="genre scanme" scan=true style="color: #7a9302; top: 0px; left: 762px; font-size: 146%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3mtUR8aNUoMblqX49YzVF3", "Keb' Mo'", this);" title="e.g. Keb' Mo' "Life Is Beautiful"">Keb' Mo'<a class=navlink href="artistprofile.cgi?id=6iDaoPZVgxrTkndDCisX8F" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item4 preview_url="https://p.scdn.co/mp3-preview/b91d1447b70d676d3b3c467ba2ef11304bb42432" class="genre scanme" scan=true style="color: #6f7d1c; top: 618px; left: 524px; font-size: 143%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5bC6ONDsL88snGN6QasjZH", "Sonny Boy Williamson II", this);" title="e.g. Sonny Boy Williamson II "Help Me"">Sonny Boy Williamson II<a class=navlink href="artistprofile.cgi?id=69VgCcXFV59QuQWEXSTxfK" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item5 preview_url="https://p.scdn.co/mp3-preview/1e9021b1d56f2f97f21c1692eebf05f2bdbca1e1" class="genre scanme" scan=true style="color: #608d30; top: 421px; left: 286px; font-size: 139%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1mka0egloj2XnXJznzMCw6", "Ry Cooder", this);" title="e.g. Ry Cooder "Feelin' Bad Blues - 2008 Remaster"">Ry Cooder<a class=navlink href="artistprofile.cgi?id=1CPwHx5lgVxv0rfcp7UXLx" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item6 preview_url="https://p.scdn.co/mp3-preview/6ad425c5b488e6c5e8a012355d0a91d8164827fd" class="genre scanme" scan=true style="color: #82802d; top: 291px; left: 433px; font-size: 130%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5uErxUghBfF0UliaoLlFBj", "R.L. Burnside", this);" title="e.g. R.L. Burnside "Jumper Hanging Out On the Line"">R.L. Burnside<a class=navlink href="artistprofile.cgi?id=2drMeidRg4jc07neGOL0Ip" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item7 preview_url="https://p.scdn.co/mp3-preview/3b4894a1fb0873807e0e0c38cc34ffd67d8ae09b" class="genre scanme" scan=true style="color: #4b9a1f; top: 725px; left: 807px; font-size: 127%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("41s9iG3fTuu32yBnmDLCcZ", "Lightnin' Hopkins", this);" title="e.g. Lightnin' Hopkins "Mojo Hand"">Lightnin' Hopkins<a class=navlink href="artistprofile.cgi?id=6EZzVXM2uDRPmnHWq9yPDE" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item8 preview_url="https://p.scdn.co/mp3-preview/f134487af3da78805b5db87d0c07ee541544af64" class="genre scanme" scan=true style="color: #639b14; top: 339px; left: 331px; font-size: 126%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3zXfuTPCPrPfHSLiH3uMJe", "Eric Bibb", this);" title="e.g. Eric Bibb "Don't Ever Let Nobody Drag Your Spirit Down"">Eric Bibb<a class=navlink href="artistprofile.cgi?id=2uNcfNhlVJUyEX0t0NG1m1" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item9 preview_url="https://p.scdn.co/mp3-preview/d3b4760c11128077530594fe6f86cc7a23982f41" class="genre scanme" scan=true style="color: #78810f; top: 456px; left: 195px; font-size: 125%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3lw5QiH1GDqRFVtpQpOd4g", "Seasick Steve", this);" title="e.g. Seasick Steve "Walkin Man"">Seasick Steve<a class=navlink href="artistprofile.cgi?id=6OVkHZQP8QoBYqr1ejCGDv" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item10 preview_url="https://p.scdn.co/mp3-preview/fc93b5c3b8fb9be8035163e82bbdf3b25e2b240f" class="genre scanme" scan=true style="color: #769107; top: 413px; left: 45px; font-size: 123%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("47JwnsrNl9R4PGsuyzIL1U", "Chris Smither", this);" title="e.g. Chris Smither "Leave The Light On"">Chris Smither<a class=navlink href="artistprofile.cgi?id=4PM86aECDhcdwuJNZNrR22" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item11 preview_url="https://p.scdn.co/mp3-preview/44bf38139f3bb79983ae9746a76499a680cf08a2" class="genre scanme" scan=true style="color: #7a8a6d; top: 399px; left: 144px; font-size: 122%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5LmmZgxFg1sSfxENxsdtak", "Junior Kimbrough", this);" title="e.g. Junior Kimbrough "Meet Me in the City"">Junior Kimbrough<a class=navlink href="artistprofile.cgi?id=03HEHGJoLPdARs4nrtUidr" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item12 preview_url="https://p.scdn.co/mp3-preview/c72856423b4955a40eb3f972b3a922baf24216e2" class="genre scanme" scan=true style="color: #4d8826; top: 875px; left: 919px; font-size: 122%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("13U0E6CXh2dnEi6eDzNyK0", "Lead Belly", this);" title="e.g. Lead Belly "Where Did You Sleep Last Night"">Lead Belly<a class=navlink href="artistprofile.cgi?id=3Ovf2lytXSXWFM2cwsJACC" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item13 preview_url="https://p.scdn.co/mp3-preview/ea17d69c881f6d14f78ff153a850cbc44215059b" class="genre scanme" scan=true style="color: #38a54f; top: 753px; left: 514px; font-size: 122%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2azwzKd8xYex2PyJEyl8BX", "Mississippi John Hurt", this);" title="e.g. Mississippi John Hurt "Coffee Blues"">Mississippi John Hurt<a class=navlink href="artistprofile.cgi?id=1FdwVX3yL8ITuRnTZxetsA" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item14 preview_url="https://p.scdn.co/mp3-preview/865c0be1b5987552c4c7d18520b021601dc74713" class="genre scanme" scan=true style="color: #799351; top: 351px; left: 114px; font-size: 121%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("232sENKAtmcdvZbfbjLT7C", "Otis Taylor", this);" title="e.g. Otis Taylor "Ten Million Slaves"">Otis Taylor<a class=navlink href="artistprofile.cgi?id=5Y1mtkFXBCx0dyL93Wt54T" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item15 preview_url="https://p.scdn.co/mp3-preview/a48e5e78f2917d7c84236cf944dfe76f794bf865" class="genre scanme" scan=true style="color: #599630; top: 605px; left: 88px; font-size: 116%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5KTZ6dzqc6oLbFegHbze1q", "Jorma Kaukonen", this);" title="e.g. Jorma Kaukonen "Genesis"">Jorma Kaukonen<a class=navlink href="artistprofile.cgi?id=55CXG5KDJpRYwBopfYAJHa" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item16 preview_url="https://p.scdn.co/mp3-preview/c757c1bc9003c8eb6567c42adca221d8b63cdb8f" class="genre scanme" scan=true style="color: #499174; top: 837px; left: 802px; font-size: 116%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0W0euvQlhbcsTydzsD4EQk", "Son House", this);" title="e.g. Son House "Death Letter Blues"">Son House<a class=navlink href="artistprofile.cgi?id=15oeqKO5k5uZ5773tWvpda" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item17 preview_url="https://p.scdn.co/mp3-preview/5ce6f8ebcddb256cf0447c6254a80166956a9b5d" class="genre scanme" scan=true style="color: #609615; top: 484px; left: 271px; font-size: 116%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("49OfM5fTeH57u2NN9mIpAW", "Rory Block", this);" title="e.g. Rory Block "Walking Blues"">Rory Block<a class=navlink href="artistprofile.cgi?id=6hkNj3GAqFbkEUCs3R1dY3" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item18 preview_url="https://p.scdn.co/mp3-preview/661d3b4a3e3c705f348b7e084797f8736819edd5" class="genre scanme" scan=true style="color: #4c882e; top: 768px; left: 575px; font-size: 115%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2En6kxGCjZxXmKJ1IYu4Fp", "Mississippi Fred McDowell", this);" title="e.g. Mississippi Fred McDowell "You Gotta Move"">Mississippi Fred McDowell<a class=navlink href="artistprofile.cgi?id=0elA30wLp3RmiPaGtU2jhQ" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item19 preview_url="https://p.scdn.co/mp3-preview/745367a8f73ab0ba0899def3024fe5ab3d43bb8c" class="genre scanme" scan=true style="color: #418e0e; top: 812px; left: 585px; font-size: 115%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2P9nh9pTK96dE0b6NBbTSs", "Blind Willie Johnson", this);" title="e.g. Blind Willie Johnson "Dark Was the Night, Cold Was the Ground"">Blind Willie Johnson<a class=navlink href="artistprofile.cgi?id=5kO4xdEKLuHHHPreu3UmkZ" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item20 preview_url="https://p.scdn.co/mp3-preview/99bbaf9b7c29be5c4a308c99e840071612432558" class="genre scanme" scan=true style="color: #459435; top: 831px; left: 433px; font-size: 114%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4RPdeuPph5G6byLEzH9SYS", "Skip James", this);" title="e.g. Skip James "Devil Got My Woman"">Skip James<a class=navlink href="artistprofile.cgi?id=2zlMeTjA7szCmqcJjBzYXJ" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item21 preview_url="https://p.scdn.co/mp3-preview/b11f93ea04e0793079c3a5c0fa93a6ea2f076494" class="genre scanme" scan=true style="color: #409a3f; top: 773px; left: 985px; font-size: 113%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2uoOm55gLvLMALwXmKrwXc", "Rev. Gary Davis", this);" title="e.g. Rev. Gary Davis "Death Don't Have No Mercy"">Rev. Gary Davis<a class=navlink href="artistprofile.cgi?id=7DtrCdyysCDj5BlVKcassv" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item22 preview_url="https://p.scdn.co/mp3-preview/ce6b7d7e3443431931768364f1e6f1454b3cce76" class="genre scanme" scan=true style="color: #379c0e; top: 902px; left: 959px; font-size: 113%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4vqDFur1cyE8lS1oD3XiCB", "Blind Willie McTell", this);" title="e.g. Blind Willie McTell "I Got the Cross the River Jordan"">Blind Willie McTell<a class=navlink href="artistprofile.cgi?id=4vRyd1UZ8Eq98EppbwOBg6" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item23 preview_url="https://p.scdn.co/mp3-preview/08a451173537091b9521bc10036464a67de0a5c2" class="genre scanme" scan=true style="color: #5d7808; top: 258px; left: 696px; font-size: 113%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3rlPaBlRjyNKHzJsvKV6dP", "Chris Thomas King", this);" title="e.g. Chris Thomas King "Hard Time Killing Floor Blues"">Chris Thomas King<a class=navlink href="artistprofile.cgi?id=3azQ4yZ4Dt6hPbyNeOOMLN" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item24 preview_url="https://p.scdn.co/mp3-preview/207f8557d80f10bbc8fbb0288a9148191705bede" class="genre scanme" scan=true style="color: #5d8c3a; top: 656px; left: 575px; font-size: 112%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5uB1s6sOdBqhc08NYR7y2J", "Sonny Terry", this);" title="e.g. Sonny Terry "Bring It On Home To Me"">Sonny Terry<a class=navlink href="artistprofile.cgi?id=66hQFpsfaFzK8UbsQofCGv" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item25 preview_url="https://p.scdn.co/mp3-preview/e6d5c941e904faf8c88c179a15db565cac0a7fd2" class="genre scanme" scan=true style="color: #6d8514; top: 408px; left: 311px; font-size: 112%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7KEpEndrZXOrFfGdCbuTCL", "John Hammond", this);" title="e.g. John Hammond "Evil Is Going On"">John Hammond<a class=navlink href="artistprofile.cgi?id=471Ycbmda1lAuLMscQvxMR" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item26 preview_url="https://p.scdn.co/mp3-preview/ec4f65543cf4b081c87eea41b6e74857a63cefa6" class="genre scanme" scan=true style="color: #469519; top: 701px; left: 929px; font-size: 112%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1Bqxrcrx2q1nrHDn4aWTV4", "Big Bill Broonzy", this);" title="e.g. Big Bill Broonzy "Glory of Love"">Big Bill Broonzy<a class=navlink href="artistprofile.cgi?id=6HwigzRpuWoCZDqMOQc5eu" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item27 preview_url="https://p.scdn.co/mp3-preview/b95a175e0b272f3055fa71f1e9ccdb1f326c72d0" class="genre scanme" scan=true style="color: #5a8d1d; top: 635px; left: 732px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4gvoIPegQWM7TOzVY6cGfW", "Brownie McGhee", this);" title="e.g. Brownie McGhee "Better Day"">Brownie McGhee<a class=navlink href="artistprofile.cgi?id=3qXzj7WzBV3kwy1yEV1RcC" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item28 preview_url="https://p.scdn.co/mp3-preview/9c68225d487962bbd32b3474aa0b44f80f33aa56" class="genre scanme" scan=true style="color: #629309; top: 375px; left: 580px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("63MtBTGU73iy7FRd8nRMN6", "Guy Davis", this);" title="e.g. Guy Davis "Loneliest Road That I Know"">Guy Davis<a class=navlink href="artistprofile.cgi?id=6PdVgi27EMfFXV5lSH6wEW" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item29 preview_url="https://p.scdn.co/mp3-preview/f928313336f114ef5733126176ce3aba88d01293" class="genre scanme" scan=true style="color: #4d9243; top: 741px; left: 807px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0u5DqebxtjYVxQo45xZQU8", "Bukka White", this);" title="e.g. Bukka White "Fixin' to Die Blues"">Bukka White<a class=navlink href="artistprofile.cgi?id=2gSskdDhLQCx3CQd6XKDhp" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item30 preview_url="https://p.scdn.co/mp3-preview/cdb92094f98bdc4550da02f8278b9e8ee67fd549" class="genre scanme" scan=true style="color: #5d981a; top: 456px; left: 802px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5LTMzb6lrWkdgNl4CNwfwx", "Corey Harris", this);" title="e.g. Corey Harris "Keep Your Lamp Trimmed And Burning"">Corey Harris<a class=navlink href="artistprofile.cgi?id=1TQtbRQbaXw5CeN3mC0DJH" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item31 preview_url="https://p.scdn.co/mp3-preview/51614c5c9ac7645484f889c4760f41bbb2800dcc" class="genre scanme" scan=true style="color: #32980a; top: 901px; left: 418px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1t1YkT7GkSxyi7eKIEayfk", "Lucille Bogan", this);" title="e.g. Lucille Bogan "Shave 'Em Dry II"">Lucille Bogan<a class=navlink href="artistprofile.cgi?id=2cDKW2JF97WZ5ruG9Obfdf" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item32 preview_url="https://p.scdn.co/mp3-preview/3ddb8de631b31fa3cb42941401d371128105358e" class="genre scanme" scan=true style="color: #409d43; top: 800px; left: 1040px; font-size: 110%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7oPtvnTx5tvMnfR2e1y7lC", "Lonnie Johnson", this);" title="e.g. Lonnie Johnson "Some Day Baby"">Lonnie Johnson<a class=navlink href="artistprofile.cgi?id=74g0xdNndEjFzMKSRFUMNM" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item33 preview_url="https://p.scdn.co/mp3-preview/afbe3bf2b3befd3ebd85d44c3cecda7a3c2e2f4c" class="genre scanme" scan=true style="color: #3baaa2; top: 577px; left: 696px; font-size: 110%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0568b7rvpDiYoB0dVDLDE0", "Stefan Grossman", this);" title="e.g. Stefan Grossman "Pony Blues"">Stefan Grossman<a class=navlink href="artistprofile.cgi?id=0me2CHAdEKm5MTWHemzRk5" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item34 preview_url="https://p.scdn.co/mp3-preview/4ed54294680b28c7a67cd841c48a91852a6b3c9a" class="genre scanme" scan=true style="color: #5e8d0f; top: 375px; left: 433px; font-size: 109%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6TZa0ySHmDrjet5uk1gFSM", "Hans Theessink", this);" title="e.g. Hans Theessink "Walking the dog"">Hans Theessink<a class=navlink href="artistprofile.cgi?id=2e02wACgnPCZ1lPeQEUCom" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item35 preview_url="https://p.scdn.co/mp3-preview/c7e9c2b8859fc6eacda3e9346dbc6f3d07130c3f" class="genre scanme" scan=true style="color: #52841e; top: 753px; left: 1061px; font-size: 109%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1vjHFgIdNuLXojpkzysoV8", "Big Joe Williams", this);" title="e.g. Big Joe Williams "Baby Please Don't Go"">Big Joe Williams<a class=navlink href="artistprofile.cgi?id=07NzVZ0BHZ0QOOw7nGvCgo" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item36 preview_url="https://p.scdn.co/mp3-preview/99cf3f08693ce965dcd2cc8bb5f7bf6cb89f8baa" class="genre scanme" scan=true style="color: #6b9a2e; top: 366px; left: 124px; font-size: 109%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0JtMW9YLVr5uIk5vyj4hdR", "Harry Manx", this);" title="e.g. Harry Manx "Death Have Mercy"">Harry Manx<a class=navlink href="artistprofile.cgi?id=7JIDretlR52LyL3yvqr2kX" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item37 preview_url="https://p.scdn.co/mp3-preview/fd8e5ca1cd4efe6150963263faca7632b7614c12" class="genre scanme" scan=true style="color: #369512; top: 765px; left: 1218px; font-size: 109%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1gmD8S3i2TKBPxWbanoYJi", "Memphis Minnie", this);" title="e.g. Memphis Minnie "Kissing in the Dark"">Memphis Minnie<a class=navlink href="artistprofile.cgi?id=2WGyRLosdDgGJTLijIPpNC" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item38 preview_url="https://p.scdn.co/mp3-preview/9cc806f86b322207dc7e48a9aeebb342306bc13e" class="genre scanme" scan=true style="color: #39945c; top: 888px; left: 352px; font-size: 109%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("47Uy9JJlUZO3zIrhb2TAs0", "Charley Patton", this);" title="e.g. Charley Patton "Down the Dirt Road Blues"">Charley Patton<a class=navlink href="artistprofile.cgi?id=7aExFIr0IHWO5aFjMrGwKw" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item39 preview_url="https://p.scdn.co/mp3-preview/515b6e0a268fa4ee926cfaae1190f4a80e6a1910" class="genre scanme" scan=true style="color: #499c2a; top: 838px; left: 686px; font-size: 108%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4Er5rZBXn4DHdSRpnyLgRb", "Mance Lipscomb", this);" title="e.g. Mance Lipscomb "Sugar Babe"">Mance Lipscomb<a class=navlink href="artistprofile.cgi?id=7jmGjfkkVOjBdjf54YHhwg" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item40 preview_url="https://p.scdn.co/mp3-preview/1ef7d8ce578d449dd20f111e5cbd1c82cb93aaaa" class="genre scanme" scan=true style="color: #2f9a2b; top: 850px; left: 397px; font-size: 108%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1c676ThK6tHWNmCZw4yWGN", "Blind Lemon Jefferson", this);" title="e.g. Blind Lemon Jefferson "Match Box Blues"">Blind Lemon Jefferson<a class=navlink href="artistprofile.cgi?id=6EsuMifB8c5rm5P2DdjiLe" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item41 preview_url="https://p.scdn.co/mp3-preview/1dc75b0baf6cff46ee418ca33dc109c3183c7000" class="genre scanme" scan=true style="color: #67967e; top: 484px; left: 372px; font-size: 108%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7jVT5ATucVf0V2R5ztUnYJ", "Bob Brozman", this);" title="e.g. Bob Brozman "Lei 'Awapuhi - Yellow Ginger Lei"">Bob Brozman<a class=navlink href="artistprofile.cgi?id=0rbQ6RnCd7jkHUr9zof16V" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item42 preview_url="https://p.scdn.co/mp3-preview/24a3fe5cbcb4b63e03a03c597327cd5b5388a4cd" class="genre scanme" scan=true style="color: #36ad34; top: 694px; left: 26px; font-size: 108%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6i7pokV2JiF1et71olScGO", "Kelly Joe Phelps", this);" title="e.g. Kelly Joe Phelps "Lead Me On"">Kelly Joe Phelps<a class=navlink href="artistprofile.cgi?id=7MGPOWrHHrTJcviOWNbKEF" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item43 preview_url="https://p.scdn.co/mp3-preview/47366eb2fcfa9a4cfa1fc7930832a2834d81564e" class="genre scanme" scan=true style="color: #6e941a; top: 438px; left: 372px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3AkN7wZwvXmhvlSWDMKkbr", "Alvin Youngblood Hart", this);" title="e.g. Alvin Youngblood Hart "Big Mama's Door"">Alvin Youngblood Hart<a class=navlink href="artistprofile.cgi?id=1pmIo6ASaJG24wmYoyxjwG" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item44 preview_url="https://p.scdn.co/mp3-preview/9bcc9158b418b8905a4d7c3fd5a3c3ae3abe3b6c" class="genre scanme" scan=true style="color: #489d2a; top: 817px; left: 1051px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2zsm9cFWyueKkaTbsUy5kN", "Blind Boy Fuller", this);" title="e.g. Blind Boy Fuller "Truckin' My Blues Away"">Blind Boy Fuller<a class=navlink href="artistprofile.cgi?id=7mPFWoDGjh7ArW1yr79EX8" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item45 preview_url="https://p.scdn.co/mp3-preview/e6f4f2deb9e7979ecd680861aeda9342db6d8bbf" class="genre scanme" scan=true style="color: #4e911d; top: 787px; left: 1066px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("52ksIFCo9VtfEKh0y9SxBW", "Tampa Red", this);" title="e.g. Tampa Red "Anna Lou Blues"">Tampa Red<a class=navlink href="artistprofile.cgi?id=0XFbUk3QnKwp0vl9sIQtIg" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item46 preview_url="https://p.scdn.co/mp3-preview/738ce53c311839fd8a00375e38c6c1e56f6538af" class="genre scanme" scan=true style="color: #24a206; top: 815px; left: 154px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("22NOT27K2vSkrpfl5trfAs", "Furry Lewis", this);" title="e.g. Furry Lewis "When My Baby Left Me"">Furry Lewis<a class=navlink href="artistprofile.cgi?id=66SiMdpsWXE23qqX0JaWg9" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item47 preview_url="https://p.scdn.co/mp3-preview/f9c58b0a9ec0dd5ef4a87bfabbbcfe9b21d04e5b" class="genre scanme" scan=true style="color: #54902d; top: 649px; left: 757px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0ponsqqtvf5OZo7uGDflen", "Robert Lockwood, Jr.", this);" title="e.g. Robert Lockwood, Jr. "Walkin' Blues"">Robert Lockwood, Jr.<a class=navlink href="artistprofile.cgi?id=5hId7yMy0kbGP6IiKWVDql" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item48 preview_url="https://p.scdn.co/mp3-preview/bcb526c5a5ff47e526128c1215c1081eb009c1ed" class="genre scanme" scan=true style="color: #569144; top: 688px; left: 909px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5QAc5ZmpXEKga522ecahI6", "Blind Blake", this);" title="e.g. Blind Blake "Police Dog Blues"">Blind Blake<a class=navlink href="artistprofile.cgi?id=49KZvkEWchga5D1uhNo1yd" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item49 preview_url="https://p.scdn.co/mp3-preview/09f76b980b2120caba4f59962a35937fadd2ecfa" class="genre scanme" scan=true style="color: #34a13b; top: 837px; left: 975px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1nDisQht8pskK4lbeSgqw1", "Scrapper Blackwell", this);" title="e.g. Scrapper Blackwell "Nobody Knows You When You're Down And Out"">Scrapper Blackwell<a class=navlink href="artistprofile.cgi?id=0gMar0N7i60iQ6BFTvoXl0" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item50 preview_url="https://p.scdn.co/mp3-preview/cbd92f3c450a0a64a50d6aa8b446483c7d72b2af" class="genre scanme" scan=true style="color: #459b05; top: 889px; left: 919px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5qdSXoKf36HAtCgAsftaM4", "Bo Carter", this);" title="e.g. Bo Carter "All Around Man"">Bo Carter<a class=navlink href="artistprofile.cgi?id=2naDLHeKqXSHT3DMII2eqb" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item51 preview_url="https://p.scdn.co/mp3-preview/bc57a12bd566b3c643ef13d22c2493beb94bc6ce" class="genre scanme" scan=true style="color: #5c8e04; top: 295px; left: 939px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5y07C8Ct8aC0uswE26zKNr", "Jessie Mae Hemphill", this);" title="e.g. Jessie Mae Hemphill "Standing In My Doorway Crying"">Jessie Mae Hemphill<a class=navlink href="artistprofile.cgi?id=75bUlG7zJQWJkRqESmNWsW" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item52 preview_url="https://p.scdn.co/mp3-preview/9ebdde6ad88e99983cad2d5125f4e426a04b1709" class="genre scanme" scan=true style="color: #4a8c16; top: 787px; left: 894px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1a8JNXclpuzv9Rx8KxBbIO", "Sonny Boy Williamson I", this);" title="e.g. Sonny Boy Williamson I "Got The Bottle Up And Gone"">Sonny Boy Williamson I<a class=navlink href="artistprofile.cgi?id=1qxTNsrSi4fNXVO0sbMsl4" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item53 preview_url="https://p.scdn.co/mp3-preview/61370c7780fd870830af7698ab30ca1ac08f5b8e" class="genre scanme" scan=true style="color: #56a10b; top: 547px; left: 266px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4tmTjqwtnt18WACQ4ODN2r", "Cephas & Wiggins", this);" title="e.g. Cephas & Wiggins "No Ice In My Bourbon"">Cephas & Wiggins<a class=navlink href="artistprofile.cgi?id=40MbAfRt1y7QdeGSkSp4pF" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item54 preview_url="https://p.scdn.co/mp3-preview/dfa4feaac048e4cf4ae62ac928959ad1d785f941" class="genre scanme" scan=true style="color: #3c980a; top: 812px; left: 888px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5oh9VZzYQcr1DW5cAOFZjV", "Sleepy John Estes", this);" title="e.g. Sleepy John Estes "Little Laura Blues"">Sleepy John Estes<a class=navlink href="artistprofile.cgi?id=00UuF3fAevVz8L0f1WfiQ6" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item55 preview_url="https://p.scdn.co/mp3-preview/c6c08c60204da27afd6a1d366bd29e0a78a86daf" class="genre scanme" scan=true style="color: #609317; top: 826px; left: 661px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5insosOirGOL3cvJ0li2bD", "Robert Nighthawk", this);" title="e.g. Robert Nighthawk "Black Angel Blues"">Robert Nighthawk<a class=navlink href="artistprofile.cgi?id=1ycL0Ct3hz0glGDIwsUyNG" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item56 preview_url="https://p.scdn.co/mp3-preview/8f54e3e116b52f72c04c60ee3dc38f8f9ac8a918" class="genre scanme" scan=true style="color: #329805; top: 692px; left: 1400px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6SHY7l1MnVRL6bpecfr1SE", "Pink Anderson", this);" title="e.g. Pink Anderson "You Don't Know My Mind"">Pink Anderson<a class=navlink href="artistprofile.cgi?id=43YDeIUqhR3Y5rRPSH6AOt" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item57 preview_url="https://p.scdn.co/mp3-preview/add19574c2a6cb9a3b1d3d2e725a78b116c0a0d0" class="genre scanme" scan=true style="color: #938604; top: 293px; left: 104px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("72um1wcfnGdCTDTT5YvBga", "Watermelon Slim", this);" title="e.g. Watermelon Slim "You're the One I Need"">Watermelon Slim<a class=navlink href="artistprofile.cgi?id=1GwDrciV2X5gn9uh0UDFwN" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item58 preview_url="https://p.scdn.co/mp3-preview/b855fd479b752ba9b9e341d1e01d25dbb1d69cd0" class="genre scanme" scan=true style="color: #4c9103; top: 761px; left: 1375px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0k0FidAFgvOqsg7AQ6fABN", "Tommy McClennan", this);" title="e.g. Tommy McClennan "Blue As I Can Be"">Tommy McClennan<a class=navlink href="artistprofile.cgi?id=0m8dKC3T9anldCh2OgZ6pJ" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item59 preview_url="https://p.scdn.co/mp3-preview/865769500c91ffb4d294872da675558a1ba7786b" class="genre scanme" scan=true style="color: #6f982b; top: 451px; left: 397px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4NgUChfOb62ijpOD8YFAWv", "Robert Belfour", this);" title="e.g. Robert Belfour "My Baby's Gone"">Robert Belfour<a class=navlink href="artistprofile.cgi?id=288ptwBqLrqmD6Z2622eLp" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item60 preview_url="https://p.scdn.co/mp3-preview/30c78034a75a2cf42dacb83accc374236db6cdba" class="genre scanme" scan=true style="color: #3b9b06; top: 753px; left: 357px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1cimKzbgSJvN92gCVTjnNE", "Mississippi Sheiks", this);" title="e.g. Mississippi Sheiks "Sitting On Top Of The World"">Mississippi Sheiks<a class=navlink href="artistprofile.cgi?id=1yhcG1yQNDC2i8JHlB3HRo" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item61 preview_url="https://p.scdn.co/mp3-preview/ede9b2826aceb449a26b376583b00aea78746344" class="genre scanme" scan=true style="color: #389232; top: 833px; left: 134px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5jQzD7M8t0EjR3lK1MN7Bt", "Ida Cox", this);" title="e.g. Ida Cox "Cherry Pickin' Blues"">Ida Cox<a class=navlink href="artistprofile.cgi?id=62G2r7t9N2Ad9ILHbg4Eqh" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item62 preview_url="https://p.scdn.co/mp3-preview/54c04ad2ca45cc607143e08d7d455a428e1f330c" class="genre scanme" scan=true style="color: #379f23; top: 863px; left: 306px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5DFa43O7ulUb7m093PAQH9", "Sippie Wallace", this);" title="e.g. Sippie Wallace "I'm a Mighty Tight Woman"">Sippie Wallace<a class=navlink href="artistprofile.cgi?id=1MzNMhcJhkG0pCk2sg3PTR" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item63 preview_url="https://p.scdn.co/mp3-preview/d22f1437506131b0c681cbef50f0343b5d909d52" class="genre scanme" scan=true style="color: #508710; top: 825px; left: 843px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0ui2pJUc0zsc7eI8ZWgf0s", "Papa Charlie Jackson", this);" title="e.g. Papa Charlie Jackson "Ash Tray Blues"">Papa Charlie Jackson<a class=navlink href="artistprofile.cgi?id=2RhkTBo6ams9W8hXDZ3eKI" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item64 preview_url="https://p.scdn.co/mp3-preview/73b954d5b77e2399050ae2593b3e72747b27895b" class="genre scanme" scan=true style="color: #78830a; top: 777px; left: 1334px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0YxDiM6hlJ03lssgbqTBGJ", "Deford Bailey", this);" title="e.g. Deford Bailey "Fox Chase"">Deford Bailey<a class=navlink href="artistprofile.cgi?id=3bE11yTlWRtZxf6koQcfx4" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item65 preview_url="https://p.scdn.co/mp3-preview/60c9db4b76c782ebde9a4aeb188f0119d8d909ad" class="genre scanme" scan=true style="color: #3a9a0c; top: 782px; left: 610px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("17r2Et8LmSasIf0AYbkwQR", "Frank Stokes", this);" title="e.g. Frank Stokes "Downtown Blues"">Frank Stokes<a class=navlink href="artistprofile.cgi?id=3dahhupQzKVXptEwFBsodc" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item66 preview_url="https://p.scdn.co/mp3-preview/4741d9783f1384674a4a79e56a4b86252e8a02d5" class="genre scanme" scan=true style="color: #8d7b0f; top: 412px; left: 575px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2s9yvwhtEaP50DpdIopKhI", "John Mooney", this);" title="e.g. John Mooney "Drink A Little Poison, 4 U Die"">John Mooney<a class=navlink href="artistprofile.cgi?id=06qu5apaO4yt4gBL4G5F2J" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item67 preview_url="https://p.scdn.co/mp3-preview/bf8f9f23401ad9ae53895dd97d7aef4bbec84db1" class="genre scanme" scan=true style="color: #439536; top: 831px; left: 220px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1tM7whjfk1Sr32HAPW4bmx", "Cannon's Jug Stompers", this);" title="e.g. Cannon's Jug Stompers "Going to Germany"">Cannon's Jug Stompers<a class=navlink href="artistprofile.cgi?id=65oBffOa88Yjia8B9FTLAS" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item68 preview_url="https://p.scdn.co/mp3-preview/337bb18509b21b6821fa6a9a8d2a6a1d3fc9c3b4" class="genre scanme" scan=true style="color: #4faa77; top: 669px; left: 504px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4qZRDyzwPafiskSh3YIIPr", "Mary Flower", this);" title="e.g. Mary Flower "Death Letter Blues"">Mary Flower<a class=navlink href="artistprofile.cgi?id=58sXz2QNZ3Zr0JlQ198mg2" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item69 preview_url="https://p.scdn.co/mp3-preview/1fbe69ea9821af2b3a71f34f7102047929e550af" class="genre scanme" scan=true style="color: #4f8605; top: 800px; left: 934px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6ddW43iu0xvDjFeEVxTgXk", "Barbecue Bob", this);" title="e.g. Barbecue Bob "Barbecue Blues"">Barbecue Bob<a class=navlink href="artistprofile.cgi?id=5L8FCi81vASYMJNWbODEDZ" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item70 preview_url="https://p.scdn.co/mp3-preview/1363924039a7b8402c0e6a84b1af8198166d4ed1" class="genre scanme" scan=true style="color: #299e2e; top: 864px; left: 696px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6sMJJCExl91baKOis8A6h2", "Sonny Boy Nelson", this);" title="e.g. Sonny Boy Nelson "Street Walkin'"">Sonny Boy Nelson<a class=navlink href="artistprofile.cgi?id=38FqeK3CPB9k6ZmIdsGWkC" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item71 preview_url="https://p.scdn.co/mp3-preview/c30ea19c1a3e048456d7fc9ffbb41290f69b1341" class="genre scanme" scan=true style="color: #479210; top: 549px; left: 499px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2CPNZiEtEOJLOonAlFN7UE", "Jesse Fuller", this);" title="e.g. Jesse Fuller "San Francisco Bay Blues"">Jesse Fuller<a class=navlink href="artistprofile.cgi?id=4YlupUs1jsfZzwXRGmVlX8" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item72 preview_url="https://p.scdn.co/mp3-preview/0b1231e61afc3defed6960fe6e89057d5bb354e0" class="genre scanme" scan=true style="color: #2faa01; top: 740px; left: 924px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2jD32pKSbJfRlmycwMKczq", "Mississippi Joe Callicott", this);" title="e.g. Mississippi Joe Callicott "Laughing to Keep from Crying"">Mississippi Joe Callicott<a class=navlink href="artistprofile.cgi?id=4K3d3Y6PXRNOHgB2W4wAvE" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item73 preview_url="https://p.scdn.co/mp3-preview/b09be90d583fe389e3be4feba9ee7e0e7dc39ecf" class="genre scanme" scan=true style="color: #369742; top: 850px; left: 1030px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7qhKQDDfv8ZxFIrl7EYnPZ", "Peetie Wheatstraw", this);" title="e.g. Peetie Wheatstraw "Gangster's Blues"">Peetie Wheatstraw<a class=navlink href="artistprofile.cgi?id=5DjfEhP0XiH279qFeyR7qF" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item74 preview_url="https://p.scdn.co/mp3-preview/b8376c02bbd2dea9c091a1c1ead5ae0f8776cb0f" class="genre scanme" scan=true style="color: #758d15; top: 410px; left: 737px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3x8hDaJkTyVirvnmrXFq6f", "Catfish Keith", this);" title="e.g. Catfish Keith "Blues at Midnight"">Catfish Keith<a class=navlink href="artistprofile.cgi?id=2ac6h7fMKfNyB4FDBGpCYL" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item75 preview_url="https://p.scdn.co/mp3-preview/57e2abfd14dd7d827e9293cc1297fb042b6a42a0" class="genre scanme" scan=true style="color: #3b9703; top: 777px; left: 377px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("25E58HknsbZf44KSlJBXeL", "Peg Leg Sam", this);" title="e.g. Peg Leg Sam "Joshua Fit the Battle of Jericho"">Peg Leg Sam<a class=navlink href="artistprofile.cgi?id=54ne4EVHi744nu9u5A5WNX" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item76 preview_url="https://p.scdn.co/mp3-preview/a1b5bbcda2ea3b71030df626a8b2865eb9fe3250" class="genre scanme" scan=true style="color: #2ca424; top: 848px; left: 1197px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3pDIbEwGSWug1qyabTGPp8", "Luke Jordan", this);" title="e.g. Luke Jordan "Church Bells Blues"">Luke Jordan<a class=navlink href="artistprofile.cgi?id=37V9ElynG02USvurkCsTCs" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item77 preview_url="https://p.scdn.co/mp3-preview/8d0f53139ed49a20442f098cd8536bbb988a2663" class="genre scanme" scan=true style="color: #55870c; top: 712px; left: 838px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4wGcFx9voRJ51U989ty9wp", "Jazz Gillum", this);" title="e.g. Jazz Gillum "Key To The Highway"">Jazz Gillum<a class=navlink href="artistprofile.cgi?id=6GFrr6eHPyDtqguamN8vLg" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item78 preview_url="https://p.scdn.co/mp3-preview/5527e5a807cbc0004e721458a089db098e24a0aa" class="genre scanme" scan=true style="color: #42a027; top: 497px; left: 402px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4eC8S9vP1JVDaBiMX9KX3P", "John Cephas", this);" title="e.g. John Cephas "A Shanty in Old Shanty Town"">John Cephas<a class=navlink href="artistprofile.cgi?id=39gMpw4vsyl8CLCW6OZx97" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item79 preview_url="https://p.scdn.co/mp3-preview/d99323d0a33889de81fbc7220836ef7523dee6c2" class="genre scanme" scan=true style="color: #449f09; top: 672px; left: 696px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7oqDaJiG7dUvf7oIQrzGGF", "J.D. Short", this);" title="e.g. J.D. Short "By The Spoonful"">J.D. Short<a class=navlink href="artistprofile.cgi?id=5aTQqSNBX17uG0FZxvorSz" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item80 preview_url="https://p.scdn.co/mp3-preview/40509d61edd80af413cfa861dbe0b675fe7b5b58" class="genre scanme" scan=true style="color: #369a0e; top: 672px; left: 797px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("24wSfBAKhkkug1ru5ojpw6", "John Henry Barbee", this);" title="e.g. John Henry Barbee "That's All Right, Pt. 1"">John Henry Barbee<a class=navlink href="artistprofile.cgi?id=5AK5GroO11AWwphIKoPcGG" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item81 preview_url="https://p.scdn.co/mp3-preview/e9e6d9554a9e66ba15f5acbd31e153023c47a3cc" class="genre scanme" scan=true style="color: #489d07; top: 863px; left: 1020px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6r2k3Ngcf8D7bINaDjBAW8", "Floyd Council", this);" title="e.g. Floyd Council "Looking For My Baby"">Floyd Council<a class=navlink href="artistprofile.cgi?id=2qb9YOPpwUQojGNM3VNkNL" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item82 preview_url="https://p.scdn.co/mp3-preview/3548fd2b458cb7ccbf27bf6ef6d2a0f39195a5e4" class="genre scanme" scan=true style="color: #4c9f33; top: 799px; left: 30px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0FYD43pZmTB6HQWZrvAE8b", "Lottie Kimbrough", this);" title="e.g. Lottie Kimbrough "Lost Lover Blues"">Lottie Kimbrough<a class=navlink href="artistprofile.cgi?id=34x3BPBKFmYML037CxIwCb" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item83 preview_url="https://p.scdn.co/mp3-preview/69f215eb7a6ec15fb03e7cdbaf30093c1439fcd9" class="genre scanme" scan=true style="color: #399704; top: 876px; left: 661px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1jxK08gpnyxw6HzwdcVD2d", "Irene Scruggs", this);" title="e.g. Irene Scruggs "Cruel Papa But A Good Man To Have Around"">Irene Scruggs<a class=navlink href="artistprofile.cgi?id=62LgOe59ZekgJGyPDxRcH4" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item84 preview_url="https://p.scdn.co/mp3-preview/5b5c0bf7c99238f28c1ac7c9d25ed7dfd472b135" class="genre scanme" scan=true style="color: #588b0f; top: 765px; left: 853px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0ex50fqoONJHto6RR2Bwz9", "Yank Rachell", this);" title="e.g. Yank Rachell "Moonshine Whiskey"">Yank Rachell<a class=navlink href="artistprofile.cgi?id=6wyXUJAKHlQHuWxvLliPIz" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item85 preview_url="https://p.scdn.co/mp3-preview/2b4bca5903b3665f7f153ef263adc37a7cf22614" class="genre scanme" scan=true style="color: #2e9b1f; top: 875px; left: 397px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7puflrw8FQyx0PHvheDWHh", "Ramblin' Thomas", this);" title="e.g. Ramblin' Thomas "So Lonesome"">Ramblin' Thomas<a class=navlink href="artistprofile.cgi?id=7lj7b7leXpYzY89FvWDiFy" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item86 preview_url="https://p.scdn.co/mp3-preview/c00cb9c5d7c17003b1aad88cdbe9ccefa4834e26" class="genre scanme" scan=true style="color: #33a11d; top: 831px; left: 524px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6p8OwEzg5AbFwHQnGzePho", "Peg Leg Howell", this);" title="e.g. Peg Leg Howell "Skin Game Blues"">Peg Leg Howell<a class=navlink href="artistprofile.cgi?id=3Ks8gfOiRm64NuCnRWe6IF" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item87 preview_url="https://p.scdn.co/mp3-preview/1cc09373868382ef2842742f28a590ee41ae8ca2" class="genre scanme" scan=true style="color: #329d05; top: 613px; left: 1294px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0z3Pd4V37zwImsvwEudFhj", "Baby Tate", this);" title="e.g. Baby Tate "If I Could Holler Like a Mountain Jack"">Baby Tate<a class=navlink href="artistprofile.cgi?id=0cQkBEIe6qi95izS79txnL" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item88 preview_url="https://p.scdn.co/mp3-preview/fb053b54c9c4729d3d75a9e0363eafbe3f30eb58" class="genre scanme" scan=true style="color: #409d17; top: 696px; left: 807px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("05ZOsL8nJFHEnXRT36l0Nk", "Carl Martin", this);" title="e.g. Carl Martin "Farewell to You Baby"">Carl Martin<a class=navlink href="artistprofile.cgi?id=3utFz05u0BMh24xdsryHs1" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item89 preview_url="https://p.scdn.co/mp3-preview/4f38b54f95173e8d84d89a261457e4ff3dd1929e" class="genre scanme" scan=true style="color: #666c47; top: 825px; left: 1px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2YgB2iGtEuyjuoqx59l6ix", "Jaybird Coleman", this);" title="e.g. Jaybird Coleman "I'm Gonna Cross The River O'Jordan, Some O' These Days"">Jaybird Coleman<a class=navlink href="artistprofile.cgi?id=1aWWZk8CZaaN52QDcMH85X" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item90 preview_url="https://p.scdn.co/mp3-preview/0798cd47493f41ecc2621e7b06c96e62cf8c197a" class="genre scanme" scan=true style="color: #349e1e; top: 787px; left: 43px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("291uD6C9MrSbOWgelFlMBO", "Ed Bell", this);" title="e.g. Ed Bell "Mamlish Blues"">Ed Bell<a class=navlink href="artistprofile.cgi?id=5E9cD4KO1vPaT66cgXktHf" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item91 preview_url="https://p.scdn.co/mp3-preview/9df09820d2470665f7c25b7ba97cb75f751f9fca" class="genre scanme" scan=true style="color: #61903e; top: 753px; left: 904px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3TLYkg2PS2BcKSytJMfGFj", "Ralph Willis", this);" title="e.g. Ralph Willis "Why'd You Do It - Remastered"">Ralph Willis<a class=navlink href="artistprofile.cgi?id=77jmuFIGXNSYhAJB8FWbVf" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item92 preview_url="https://p.scdn.co/mp3-preview/f319b6529d6f18a42a9e66dad37072883fd154c2" class="genre scanme" scan=true style="color: #488d0a; top: 605px; left: 696px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1mupYWiUOe5kZG3a2WodzA", "Hammie Nixon", this);" title="e.g. Hammie Nixon "Bottle Up And Go"">Hammie Nixon<a class=navlink href="artistprofile.cgi?id=5nfU9hbvHJegn6oPdo2dh2" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item93 preview_url="https://p.scdn.co/mp3-preview/12b7ddb8c2ca6b3fe3e85a064a47288d059c74ae" class="genre scanme" scan=true style="color: #3e9362; top: 863px; left: 504px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3tW8LXiDMlf4YqVjHPqs6W", "Noah Lewis", this);" title="e.g. Noah Lewis "Like I Want To Be"">Noah Lewis<a class=navlink href="artistprofile.cgi?id=7CRTecxhR49BrkpicVjTpj" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item94 preview_url="https://p.scdn.co/mp3-preview/9a52e44087f5684b27e575b18eac1ebdb07a753f" class="genre scanme" scan=true style="color: #289a02; top: 884px; left: 15px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("14uOZrEJLsWLmbnHT4amLa", "Bessie Tucker", this);" title="e.g. Bessie Tucker "Fort Worth and Denver Blues"">Bessie Tucker<a class=navlink href="artistprofile.cgi?id=75XLN8GLv1j9llPjdyqakN" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item95 preview_url="https://p.scdn.co/mp3-preview/f974ca89e84552fb7d57969be6448cf385130e7f" class="genre scanme" scan=true style="color: #598f10; top: 692px; left: 1076px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("57zvYKL8cUdJQZjiwR3aVm", "Dan Pickett", this);" title="e.g. Dan Pickett "Ride To a Funeral In A V8"">Dan Pickett<a class=navlink href="artistprofile.cgi?id=3nhyiDa5rzDDw3TDMZdGhG" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item96 preview_url="https://p.scdn.co/mp3-preview/12ef9ae2b3de11c930f01a0a71cda98b34d3bf7c" class="genre scanme" scan=true style="color: #7d8709; top: 250px; left: 423px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6EAJFmTpdh5ccJR27LAwXz", "Terry Garland", this);" title="e.g. Terry Garland "Wang Dang Doodle"">Terry Garland<a class=navlink href="artistprofile.cgi?id=5Wjd1D9iECylZXonsh6InV" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item97 preview_url="https://p.scdn.co/mp3-preview/5732ac66c49fe3642ad3e1f645dc028a5dfbfcca" class="genre scanme" scan=true style="color: #1e9506; top: 900px; left: 31px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6J9KItgCmTpv2yIG4lpBD5", "Ida May Mack", this);" title="e.g. Ida May Mack "Elm Street Blues (Take 2)"">Ida May Mack<a class=navlink href="artistprofile.cgi?id=37dEXLIXKtIcwB6DlGJK3K" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item98 preview_url="https://p.scdn.co/mp3-preview/540ddabb127cf98d0eb66e260a7e312c3205f5c0" class="genre scanme" scan=true style="color: #409104; top: 789px; left: 357px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("62F2h6JNbf1oV62mnmCn7p", "Charley Lincoln", this);" title="e.g. Charley Lincoln "Poor Boy Long Way From Home"">Charley Lincoln<a class=navlink href="artistprofile.cgi?id=0Yxkp6bNUAXrqnA6rFTBL2" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item99 preview_url="https://p.scdn.co/mp3-preview/3a00111883fcfb55493f4dd2ea60ab3797cc6fde" class="genre scanme" scan=true style="color: #26aa3d; top: 800px; left: 742px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3cF7lqGICpyNBtKLSPNanG", "The Mississippi Moaner", this);" title="e.g. The Mississippi Moaner "It's Cold In China Blues"">The Mississippi Moaner<a class=navlink href="artistprofile.cgi?id=3ClxkddHSPPpL2FP7ghgSV" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item100 preview_url="https://p.scdn.co/mp3-preview/a0b773035c418478affe409fbb5b16eb39c163f0" class="genre scanme" scan=true style="color: #3c960f; top: 862px; left: 858px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1f6txpj1mZ4qg1DybzABbA", "Son Bonds", this);" title="e.g. Son Bonds "Give Me That Old Time Religion"">Son Bonds<a class=navlink href="artistprofile.cgi?id=0VT6u31fNYXwWvVtgF7RJD" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item101 preview_url="https://p.scdn.co/mp3-preview/0cfe514e96f924a1e388b0aa7a99180b0e9611f3" class="genre scanme" scan=true style="color: #6e8d92; top: 472px; left: 443px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2rV2Vt97KiBDHwLbQZlIvw", "Ted Bogan", this);" title="e.g. Ted Bogan "Mary, Run to the Window"">Ted Bogan<a class=navlink href="artistprofile.cgi?id=4DWRXcpBwImOc77WkkTrgW" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item102 preview_url="https://p.scdn.co/mp3-preview/7cd12a40f2543218e5832d2ba11137bdce789cc1" class="genre scanme" scan=true style="color: #4e8c3a; top: 852px; left: 696px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3QsVCEOgWRT3pZty7OMdqM", "Little Buddy Doyle", this);" title="e.g. Little Buddy Doyle "Slick Capers Blues (Test)"">Little Buddy Doyle<a class=navlink href="artistprofile.cgi?id=6WesPY5lG0labyNWb0ddza" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item103 preview_url="https://p.scdn.co/mp3-preview/a69828f1ce8d1868a9f6fd773121e7ce17a82afd" class="genre scanme" scan=true style="color: #65a77b; top: 591px; left: 575px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0stnC4gvNPxFtMLI08QOmV", "Backwards Sam Firk", this);" title="e.g. Backwards Sam Firk "I'm Glad Blues"">Backwards Sam Firk<a class=navlink href="artistprofile.cgi?id=2BYy30VJA8Dg8KRPWdjZnL" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item104 preview_url="https://p.scdn.co/mp3-preview/12a5668028407a16a346ec8617fdc9689ebf00c2" class="genre scanme" scan=true style="color: #41940b; top: 850px; left: 894px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1a3gcZiGUHgXKTvprSt1M2", "“Coot” Grant", this);" title="e.g. “Coot” Grant "Get off with Me"">“Coot” Grant<a class=navlink href="artistprofile.cgi?id=1JHoo21CdsdDEDoZDswKVW" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item105 preview_url="https://p.scdn.co/mp3-preview/d4c06964d31b15ce72d17de60478509c82d8c35f" class="genre scanme" scan=true style="color: #2ca203; top: 916px; left: 868px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1oWfNLCVHrAMTnM41WVynE", "Herman E. Johnson", this);" title="e.g. Herman E. Johnson "I Just Keeps on Wanting You"">Herman E. Johnson<a class=navlink href="artistprofile.cgi?id=0GQyqNvXG3MwpQn1HLiyCO" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item106 preview_url="https://p.scdn.co/mp3-preview/2a8f60880378aac2ddfc88a4f35a24e71ab5a1b6" class="genre scanme" scan=true style="color: #44911b; top: 837px; left: 1365px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3k93zSSO8ECWsu78aXMA2i", "Bogus Ben Covington", this);" title="e.g. Bogus Ben Covington "Adam And Eve In The Garden"">Bogus Ben Covington<a class=navlink href="artistprofile.cgi?id=5tutuB8vH5mKVInBt4QUCM" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item107 preview_url="https://p.scdn.co/mp3-preview/626ec14b74e07f99cfb5eacb14f92f73b9c68d25" class="genre scanme" scan=true style="color: #3a9920; top: 811px; left: 0px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("30les4U7VVv8UdMqsRMbjO", "Alec Seward", this);" title="e.g. Alec Seward "Creepin' Blues"">Alec Seward<a class=navlink href="artistprofile.cgi?id=7vb05liLZRBPv6MIuTCbVM" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> <div id=item108 preview_url="https://p.scdn.co/mp3-preview/b44cb66b4e67b22f0aaf7f32b58a8ccf240542e7" class="genre scanme" scan=true style="color: #4a984c; top: 801px; left: 453px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3vUjXnVjJXCSW34u3O7fSr", "Eddie Mapp", this);" title="e.g. Eddie Mapp "Riding The Blinds"">Eddie Mapp<a class=navlink href="artistprofile.cgi?id=3ZU6AJzX3X3EqWVKSNtygq" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" target=artistprofile>»</a> </div> </div> <div id=tunnel role=complementary style="width: 1600px; padding: 32px 487px 16px 487px;"> <div class=canvas style="width: 524px; height: 471px; border: 1px solid gray; background: #FCFCFC; top: 64px"> <div id=nearbyitem1 preview_url="https://p.scdn.co/mp3-preview/515b6e0a268fa4ee926cfaae1190f4a80e6a1910" class="genre" scan=true style="color: #4d9226; top: 356px; left: 292px; font-size: 240%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4Er5rZBXn4DHdSRpnyLgRb", "country blues", this);" title="e.g. Mance Lipscomb "Sugar Babe"">country blues<a class=navlink href="everynoise1d-countryblues.html" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem2 preview_url="https://p.scdn.co/mp3-preview/ea17d69c881f6d14f78ff153a850cbc44215059b" class="genre" scan=true style="color: #4a9728; top: 327px; left: 281px; font-size: 134%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2azwzKd8xYex2PyJEyl8BX", "piedmont blues", this);" title="e.g. Mississippi John Hurt "Coffee Blues"">piedmont blues<a class=navlink href="engenremap-piedmontblues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem3 preview_url="https://p.scdn.co/mp3-preview/f928313336f114ef5733126176ce3aba88d01293" class="genre" scan=true style="color: #5a8d21; top: 298px; left: 286px; font-size: 131%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0u5DqebxtjYVxQo45xZQU8", "acoustic blues", this);" title="e.g. Bukka White "Fixin' to Die Blues"">acoustic blues<a class=navlink href="engenremap-acousticblues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem4 preview_url="https://p.scdn.co/mp3-preview/c7e9c2b8859fc6eacda3e9346dbc6f3d07130c3f" class="genre" scan=true style="color: #588b24; top: 283px; left: 300px; font-size: 131%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1vjHFgIdNuLXojpkzysoV8", "delta blues", this);" title="e.g. Big Joe Williams "Baby Please Don't Go"">delta blues<a class=navlink href="engenremap-deltablues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem5 preview_url="https://p.scdn.co/mp3-preview/1ef7d8ce578d449dd20f111e5cbd1c82cb93aaaa" class="genre" scan=true style="color: #628823; top: 255px; left: 242px; font-size: 126%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1c676ThK6tHWNmCZw4yWGN", "traditional blues", this);" title="e.g. Blind Lemon Jefferson "Match Box Blues"">traditional blues<a class=navlink href="engenremap-traditionalblues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem6 preview_url="https://p.scdn.co/mp3-preview/ab0f2a6dc2daf301ed78d02c8adc7b931675088d" class="genre" scan=true style="color: #718321; top: 200px; left: 216px; font-size: 121%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7uMiAVsZy9Iash5gPsoTxe", "blues", this);" title="e.g. T-Bone Walker "Call It Stormy Monday But Tuesday Is Just As Bad"">blues<a class=navlink href="engenremap-blues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem7 preview_url="https://p.scdn.co/mp3-preview/dfa4feaac048e4cf4ae62ac928959ad1d785f941" class="genre" scan=true style="color: #6c821d; top: 215px; left: 234px; font-size: 116%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5oh9VZzYQcr1DW5cAOFZjV", "memphis blues", this);" title="e.g. Sleepy John Estes "Little Laura Blues"">memphis blues<a class=navlink href="engenremap-memphisblues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem8 preview_url="https://p.scdn.co/mp3-preview/84b49a4e2156da513439748449d7fa5337f77bf8" class="genre" scan=true style="color: #648b26; top: 229px; left: 228px; font-size: 114%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2HCG5XvSejkjtGnUx0A8Sb", "texas blues", this);" title="e.g. Jimmie Vaughan "Just a Game"">texas blues<a class=navlink href="engenremap-texasblues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem9 preview_url="https://p.scdn.co/mp3-preview/b6db02a6a697a7ea185220f6cc9ccb076e002791" class="genre" scan=true style="color: #827c1e; top: 154px; left: 172px; font-size: 112%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1YoHclLiSPHSsCTZHPVE7x", "harmonica blues", this);" title="e.g. Mark Hummel "Creeper Returns"">harmonica blues<a class=navlink href="engenremap-harmonicablues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem10 preview_url="https://p.scdn.co/mp3-preview/dcea0a567337548eef0853a9b522fa218574fd75" class="genre" scan=true style="color: #77801d; top: 187px; left: 219px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0c0LdOWInTFYNhOtAuUyDe", "chicago blues", this);" title="e.g. Big Walter Horton "Lovin' My Baby"">chicago blues<a class=navlink href="engenremap-chicagoblues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem11 preview_url="https://p.scdn.co/mp3-preview/61c77b7511b425011035164f239e10a1f3393daa" class="genre" scan=true style="color: #9f7d21; top: 0px; left: 0px; font-size: 108%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1GwzJMfSqoNDptZA5GHKqp", "modern blues", this);" title="e.g. Ana Popovic "Slow Dance"">modern blues<a class=navlink href="engenremap-modernblues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem12 preview_url="https://p.scdn.co/mp3-preview/b11f93ea04e0793079c3a5c0fa93a6ea2f076494" class="genre" scan=true style="color: #508b1b; top: 385px; left: 222px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2uoOm55gLvLMALwXmKrwXc", "gospel blues", this);" title="e.g. Rev. Gary Davis "Death Don't Have No Mercy"">gospel blues<a class=navlink href="engenremap-gospelblues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem13 preview_url="https://p.scdn.co/mp3-preview/311b76c91ab7154a513cc0e888c74a92e05ff2e6" class="genre" scan=true style="color: #3f9624; top: 422px; left: 292px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4fOkwtXTHAqAgfIBdi8CqK", "protest folk", this);" title="e.g. The Almanac Singers "Which Side are You On?"">protest folk<a class=navlink href="engenremap-protestfolk.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem14 preview_url="https://p.scdn.co/mp3-preview/772ad8a3e972b052d78b17492d0d99b33f08c72b" class="genre" scan=true style="color: #518f28; top: 410px; left: 247px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4He1HxkLrgV3lxvG9dY954", "jug band", this);" title="e.g. Dixieland Jug Blowers "Banjoreno"">jug band<a class=navlink href="engenremap-jugband.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem15 preview_url="https://p.scdn.co/mp3-preview/3a425e01a4d0952c06d5452c86e05c1a172395b7" class="genre" scan=true style="color: #509d2b; top: 343px; left: 288px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6t7snF2m3avgXn8MpEkEWq", "folklore surero", this);" title="e.g. Gustavo Guichón "Payada al Caballo - Milonga"">folklore surero<a class=navlink href="engenremap-folkloresurero.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem16 preview_url="https://p.scdn.co/mp3-preview/7154d93cee9eac243adb8d3d88ff691e77d5694f" class="genre" scan=true style="color: #3e931f; top: 435px; left: 242px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("72eLmAkk1xoJPYnvId5NtN", "classic female blues", this);" title="e.g. Eva Taylor "Baby Won't You Please Come Home?"">classic female blues<a class=navlink href="engenremap-classicfemaleblues.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem17 preview_url="https://p.scdn.co/mp3-preview/bf19fa3b7998b10f960bffd2da908ecafe2090b0" class="genre" scan=true style="color: #4e915b; top: 397px; left: 281px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("31GIhpOQpKCzlnuPn03pBQ", "barrelhouse piano", this);" title="e.g. Champion Jack Dupree "Junker's Blues"">barrelhouse piano<a class=navlink href="engenremap-barrelhousepiano.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem18 preview_url="https://p.scdn.co/mp3-preview/6777d92d00cf1a45c977b5532a18a7ca0566b834" class="genre" scan=true style="color: #569533; top: 243px; left: 230px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4nYH29VnvXZyfJDW1GdzLv", "rwandan traditional", this);" title="e.g. Rujindiri "Inkotanyi"">rwandan traditional<a class=navlink href="engenremap-rwandantraditional.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem19 preview_url="https://p.scdn.co/mp3-preview/897b8435b5ab05c4d93e07292f9e67c6ccc33476" class="genre" scan=true style="color: #4c9821; top: 314px; left: 211px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1sDQzMh0QhLtyMyIWYkdyM", "traditional folk", this);" title="e.g. Hobart Smith "Railroad Bill - Remastered"">traditional folk<a class=navlink href="engenremap-traditionalfolk.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem20 preview_url="https://p.scdn.co/mp3-preview/287c1de042231e4d89e08a2be87342c08924540f" class="genre" scan=true style="color: #549823; top: 270px; left: 264px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7surOH29RMSvRAdInzGhLU", "zamba", this);" title="e.g. Los Fronterizos "Zamba Del Negro Alegre"">zamba<a class=navlink href="engenremap-zamba.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem21 preview_url="https://p.scdn.co/mp3-preview/33b4e571ff0ef7f3ccc0f85b2ed4033572389ee4" class="genre" scan=true style="color: #529820; top: 283px; left: 181px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3akEzCj6bZtwG4LDKPWgCF", "appalachian folk", this);" title="e.g. Frank Proffitt "Going Across the Mountain"">appalachian folk<a class=navlink href="engenremap-appalachianfolk.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> </div></div> <div id=mirror role=complementary style="width: 1600px; padding: 32px 487px 16px 487px;"> <div class=canvas style="width: 524px; height: 337px; border: 1px solid gray; background: #404040; top: 64px"> <div id=mirroritem1 preview_url="https://p.scdn.co/mp3-preview/34ea920800494cea6df2dbcda64aab915e53b749" class="genre" scan=true style="color: #ecb7b2; top: 152px; left: 161px; font-size: 160%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6LMjSt9vwT4Q827avd4y8E", "future rock", this);" title="e.g. Circle of Dust "Contagion"">future rock<a class=navlink href="engenremap-futurerock.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem2 preview_url="https://p.scdn.co/mp3-preview/e15e677d91032f9a526b31e885c7fc06456a38e6" class="genre" scan=true style="color: #e4b9a9; top: 184px; left: 152px; font-size: 141%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6DLyOMEfMs2z366uaqQYiY", "modern goth", this);" title="e.g. October Burns Black "With You"">modern goth<a class=navlink href="engenremap-moderngoth.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem3 preview_url="https://p.scdn.co/mp3-preview/0e74fa6602edb0a42b7f2e408a33f5d7c1a66a25" class="genre" scan=true style="color: #e4bc93; top: 201px; left: 124px; font-size: 137%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("45v7HJSnKKHYd0CxZJtI2x", "nightrun", this);" title="e.g. Cry of Dawn "Tell Me"">nightrun<a class=navlink href="engenremap-nightrun.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem4 preview_url="https://p.scdn.co/mp3-preview/04e96a1862059229f0619af8241d97c2528c101c" class="genre" scan=true style="color: #e9b3a3; top: 94px; left: 212px; font-size: 133%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1Xl6ruZYD2IBuyvOnxCkEJ", "neo-industrial rock", this);" title="e.g. Chaotica "Unstable"">neo-industrial rock<a class=navlink href="engenremap-neoindustrialrock.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem5 preview_url="https://p.scdn.co/mp3-preview/38a15a5372657e385d7481dcfd28a37f7ca666c7" class="genre" scan=true style="color: #eab0a6; top: 201px; left: 210px; font-size: 132%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5267gVdYWrLoz6ClOhlqmE", "industrial metal", this);" title="e.g. Orgy "Blue Monday"">industrial metal<a class=navlink href="engenremap-industrialmetal.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem6 preview_url="https://p.scdn.co/mp3-preview/4a60567079a5e4a56d0db5cfd9280ef058f9832d" class="genre" scan=true style="color: #ebb492; top: 231px; left: 94px; font-size: 123%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7bbYWwfYdOpFx2lcmq1I8q", "vocaloid metal", this);" title="e.g. 明太Rocker×あちこあこ "Hot Milk"">vocaloid metal<a class=navlink href="engenremap-vocaloidmetal.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem7 preview_url="https://p.scdn.co/mp3-preview/7ea74a9b0c5ea930936c5751114fd823af70b3fd" class="genre" scan=true style="color: #e0bec4; top: 138px; left: 176px; font-size: 120%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3AFKSIXELjQGDLOeNeBoDi", "dark post-punk", this);" title="e.g. Undertheskin "Drown"">dark post-punk<a class=navlink href="engenremap-darkpostpunk.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem8 preview_url="https://p.scdn.co/mp3-preview/266c25d191405481d967c6e5e81b1c8f37061a11" class="genre" scan=true style="color: #eebcbd; top: 48px; left: 254px; font-size: 119%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3gEdX5Dl5qHTRZwy9k5TLM", "russian trance", this);" title="e.g. Michael Milov "Pray For Me"">russian trance<a class=navlink href="engenremap-russiantrance.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem9 preview_url="https://p.scdn.co/mp3-preview/b5b63d8848e4a21ec4a969ab28c13ba76f0809a6" class="genre" scan=true style="color: #f1b8d1; top: 0px; left: 217px; font-size: 115%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("10JD7sP7mvfarQ3V9UdZAi", "progressive uplifting trance", this);" title="e.g. A.r.d.i. "Lost In The Dark"">progressive uplifting trance<a class=navlink href="engenremap-progressiveupliftingtrance.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem10 preview_url="https://p.scdn.co/mp3-preview/831e45955d26b089e2fda48820f4e957d4c26b14" class="genre" scan=true style="color: #e6b48b; top: 218px; left: 198px; font-size: 114%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4glfnQrRrsQZtPVimVJipA", "neue deutsche harte", this);" title="e.g. Unzucht "Nein"">neue deutsche harte<a class=navlink href="engenremap-neuedeutscheharte.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem11 preview_url="https://p.scdn.co/mp3-preview/d26352307d0460c0377d997efa77632cc191a9a2" class="genre" scan=true style="color: #e9acb6; top: 275px; left: 184px; font-size: 112%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1GGLejpsjVbAAxK1qav7L2", "digital hardcore", this);" title="e.g. Ec8or "Think About"">digital hardcore<a class=navlink href="engenremap-digitalhardcore.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem12 preview_url="https://p.scdn.co/mp3-preview/f131709a62e37b1b72291c5ed20dbe6f79695ab7" class="genre" scan=true style="color: #e1b88e; top: 300px; left: 78px; font-size: 108%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("437t8y6w8ZKPF6zSRKRzaV", "dark rock", this);" title="e.g. Lacrimas Profundere "My Release In Pain"">dark rock<a class=navlink href="engenremap-darkrock.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem13 preview_url="https://p.scdn.co/mp3-preview/b40b6dc430aab51bf24089063bf23e61bd2e4c94" class="genre" scan=true style="color: #ddb9a9; top: 285px; left: 67px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6mTKMeaInO8wTYyjaxM4nB", "corrosion", this);" title="e.g. Still Patient? "Anavryn II"">corrosion<a class=navlink href="engenremap-corrosion.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem14 preview_url="https://p.scdn.co/mp3-preview/46f9284770289944711056d373a13bc3b3419835" class="genre" scan=true style="color: #f6b2b7; top: 62px; left: 236px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5ui9z0a7hZbieOSXwwzhBa", "j-core", this);" title="e.g. DJ Noriken "Quon"">j-core<a class=navlink href="engenremap-jcore.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem15 preview_url="https://p.scdn.co/mp3-preview/d7ac1613356dd328bfb551a086b10108ec8b58c1" class="genre" scan=true style="color: #f3aba3; top: 200px; left: 0px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6VvmZqYbfJlO9RhKt3KfTF", "cyber metal", this);" title="e.g. Sybreed "Doomsday Party"">cyber metal<a class=navlink href="engenremap-cybermetal.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem16 preview_url="https://p.scdn.co/mp3-preview/2c2f857825515d75a1c789e8f4e63abe48065140" class="genre" scan=true style="color: #eabdc0; top: 62px; left: 291px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5ipHs2YNLZCBv3BJer2oL5", "progressive trance", this);" title="e.g. Adrian Alexander "Lights Out"">progressive trance<a class=navlink href="engenremap-progressivetrance.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem17 preview_url="https://p.scdn.co/mp3-preview/1f5431d2e6f467efac62f5ec0975e98b43b4eda3" class="genre" scan=true style="color: #edb080; top: 248px; left: 106px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2VBs7sKauSRzsyzO52dXWT", "metal cover", this);" title="e.g. Leo "Dance Monkey (Metal Version)"">metal cover<a class=navlink href="engenremap-metalcover.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem18 preview_url="https://p.scdn.co/mp3-preview/fe0043b925a9f1c084f3f70b5bbecbd08bf344a9" class="genre" scan=true style="color: #ddc1c5; top: 172px; left: 194px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3rimDaak7WwckPIBjGGojU", "modern darkwave", this);" title="e.g. IAMTHESHADOW "This Violence"">modern darkwave<a class=navlink href="engenremap-moderndarkwave.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem19 preview_url="https://p.scdn.co/mp3-preview/8fe21a3c1bd48adc19a6b0cf70c62ed449e9394c" class="genre" scan=true style="color: #e8b479; top: 265px; left: 26px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0b0JgA26HUtX2xz5SXO1lU", "gymcore", this);" title="e.g. Silent Season "Stars"">gymcore<a class=navlink href="engenremap-gymcore.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=mirroritem20 preview_url="https://p.scdn.co/mp3-preview/0b627027506f76e5098cc8003e1dee0e4840ab39" class="genre" scan=true style="color: #edbbc5; top: 21px; left: 300px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2mpJST2VywKZPFoKbJI1yN", "uplifting trance", this);" title="e.g. Ferry Tayle "Smile"">uplifting trance<a class=navlink href="engenremap-upliftingtrance.html#tunnel" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> </div></div> <div role=complementary style="text-align: center; width: 1500px; margin-top: 96px; color: gray"> <a href="https://twitter.com/everynoise" target=twitter>@EveryNoise</a> · <a href="http://furia.com" target=furia>glenn mcdonald</a> </div> <div role=complementary style="margin: 16px 487px; width: 524px; text-align: justify; color: gray; display: table"> Every Noise at Once was a long-running attempt at an algorithmically-generated, readability-adjusted scatter-plot of the musical genre-space, based on data tracked and analyzed for 6,291 genre-shaped distinctions at Spotify through 2023-11-19. The calibration is fuzzy, but in general down is more organic, up is more mechanical and electric; left is denser and more atmospheric, right is spikier and bouncier.<br> <br>Click anything to hear an example of what it sounds like.<br> <br>Click the » on an artist to see their Spotify catalog.<br> </div> <center class="sigil" title=s3><br>☊<br> <div class="display: none"><audio controls="controls" id=spotifyplayer style="visibility: hidden"></audio></div> </center> </body> </html>