CINXE.COM
Every Noise at Once - future rock
<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 - future rock</title> </head> <body> <div class=title><a href="engenremap.html">Every Noise at Once</a> · future rock <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=future%20rock">list</a> <a style="color: #989898" href="https://open.spotify.com/playlist/5u8tbxvQvJtevUBqXAwJFs" title="listen to The Sound of Future Rock on Spotify">playlist</a> <a style="color: #a6a6a6" href="https://open.spotify.com/user/particledetector/playlist/0dLtDwARhEVElwUKmXhlAE" title="listen to a shorter introduction to this genre">intro</a> <a style="color: #b4b4b4" href="https://open.spotify.com/user/particledetector/playlist/7p7Fwhg5JEaQI4axfY4k6y" title="listen to this genre's fans' current favorites">pulse</a> <a style="color: #c2c2c2" href="https://open.spotify.com/user/particledetector/playlist/2D0BLLmL7S1FHtxkqcpHQq" title="listen to this genre's fans' new discoveries">edge</a> <a style="color: #d0d0d0" href="nrbg.html?genre=future%20rock">new</a></div> <div class=canvas role=main style="width: 1480px; height: 945px; top: 64px"> <div id=item1 preview_url="https://p.scdn.co/mp3-preview/95100606047fbbd5f7c1200cb2ae3cc58a26139f" class="genre scanme" scan=true style="color: #c37107; top: 733px; left: 82px; font-size: 160%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3Xfg7AegXaDLoD5GOUMf2e", "STARSET", this);" title="e.g. STARSET "My Demons"">STARSET<a class=navlink href="artistprofile.cgi?id=0kD8IT1CzF7js2XKM9lLLa" 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/5fbfb0b8ee40aed7f7412c7f07c6345114576e05" class="genre scanme" scan=true style="color: #d87563; top: 411px; left: 668px; font-size: 128%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7yLzGp7vC3qg5FlBmUa8Rg", "Celldweller", this);" title="e.g. Celldweller "Shapeshifter (feat. Styles Of Beyond)"">Celldweller<a class=navlink href="artistprofile.cgi?id=4BKyei61gtyDFxlKhcvBJJ" 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/8fbb270ea5a8b628b0ba1d18b466115aa7d83155" class="genre scanme" scan=true style="color: #dc6982; top: 353px; left: 759px; font-size: 120%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3B0hzwc1e8AYOytj9hZS2I", "Blue Stahli", this);" title="e.g. Blue Stahli "ULTRAnumb"">Blue Stahli<a class=navlink href="artistprofile.cgi?id=4DWnSG0RYPAds8EIKY26q3" 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/a94197a9fc60f7c7b5ebbaa9af05c81440a505d1" class="genre scanme" scan=true style="color: #ea562e; top: 416px; left: 220px; font-size: 115%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3IIyTdTmKfL4b3U1qOrBTo", "Rave The Reqviem", this);" title="e.g. Rave The Reqviem "Holy Homicide"">Rave The Reqviem<a class=navlink href="artistprofile.cgi?id=1NcsVSxFdXsnwvE64zV9xX" 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/4eab21508f4de117144a13f4d2ddda20933d4e70" class="genre scanme" scan=true style="color: #e36e73; top: 366px; left: 334px; font-size: 113%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("26TzNAUDOizTv0EJMDpUWS", "Zardonic", this);" title="e.g. Zardonic "Takeover (feat. The Qemists)"">Zardonic<a class=navlink href="artistprofile.cgi?id=7BqEidErPMNiUXCRE0dV2n" 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/e85d5a07323e1bc4ad014a00c1d7321be9efc96a" class="genre scanme" scan=true style="color: #ec6941; top: 372px; left: 576px; font-size: 112%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1GVA3pLyw3CuOBDuFO5YNI", "The Qemists", this);" title="e.g. The Qemists "Run You"">The Qemists<a class=navlink href="artistprofile.cgi?id=2McLd7klWE4UjkPLqqMwLv" 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/e63d2a4305ff5fe473ba6b0103b975cf9a5365b2" class="genre scanme" scan=true style="color: #d16744; top: 623px; left: 0px; font-size: 112%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1mD0LxzCdfathf6j7xMp7b", "Machinae Supremacy", this);" title="e.g. Machinae Supremacy "Player One"">Machinae Supremacy<a class=navlink href="artistprofile.cgi?id=6cmp7ut7okJAgJOSaMAVf3" 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/60cfced564d426c8353341d729bcf5f8d6816df6" class="genre scanme" scan=true style="color: #e87672; top: 144px; left: 746px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5yA7lbHGaER16zBVxyD5ET", "Fury Weekend", this);" title="e.g. Fury Weekend "Dangerous (feat. PRIZM)"">Fury Weekend<a class=navlink href="artistprofile.cgi?id=7KxS1dL7Q7jxMkyb2ZvzXH" 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/53f30d028a338d610c13fe478c45f6605c373661" class="genre scanme" scan=true style="color: #dd7755; top: 403px; left: 343px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7Jj9ygPtg5IzRzX9cfeI80", "The Anix", this);" title="e.g. The Anix "Spit You Out"">The Anix<a class=navlink href="artistprofile.cgi?id=6nFvVbL2RN5czSm7NZjE51" 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/ec1eab61e480eebf8f5b1464e23872e84ab519e1" class="genre scanme" scan=true style="color: #c07d3b; top: 552px; left: 311px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3ADiFCMXs91ZyEBSWIiAK6", "Project Vela", this);" title="e.g. Project Vela "Everything You Hate"">Project Vela<a class=navlink href="artistprofile.cgi?id=271JhHWMjcrOcExyEO92Hj" 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/2b9844e07ae287c44f7c0b0e671af3dbeab8d7e8" class="genre scanme" scan=true style="color: #ee5036; top: 400px; left: 238px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0P6soDF1syQ592sUCseXHe", "Rabbit Junk", this);" title="e.g. Rabbit Junk "Idontgivea***K"">Rabbit Junk<a class=navlink href="artistprofile.cgi?id=3Cnkej21cJ1XgbAh98CbaS" 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/f61a426c6814fb139a5df7bd5ca04cfbd381fcd3" class="genre scanme" scan=true style="color: #dd837c; top: 372px; left: 485px; font-size: 110%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0nn1gOjGZjObCNySWVY7fZ", "Voicians", this);" title="e.g. Voicians "Sonder"">Voicians<a class=navlink href="artistprofile.cgi?id=5DNApAt05XowaylsOJo1eW" 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/d1804bfe6baa8a78eab2a0553b2f70351cf556cd" class="genre scanme" scan=true style="color: #de79b9; top: 382px; left: 897px; font-size: 108%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6RyIiYvJLW4ak6IXN1eEQp", "The Algorithm", this);" title="e.g. The Algorithm "floating point"">The Algorithm<a class=navlink href="artistprofile.cgi?id=14u4KXVp0iXQil79EpxXGc" 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/34ea920800494cea6df2dbcda64aab915e53b749" class="genre scanme" scan=true style="color: #e26f78; top: 285px; left: 700px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6LMjSt9vwT4Q827avd4y8E", "Circle of Dust", this);" title="e.g. Circle of Dust "Contagion"">Circle of Dust<a class=navlink href="artistprofile.cgi?id=60GtR6PIcDY1pikPgKHNk9" 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/f63591ef5be0653c73f3c49f939ce01c5c363bb9" class="genre scanme" scan=true style="color: #da5c4d; top: 411px; left: 965px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0ihD0DZaMuLHP3fMZBmGt1", "HORSKH", this);" title="e.g. HORSKH "Tension"">HORSKH<a class=navlink href="artistprofile.cgi?id=64HwzpdqXwxwkAWV5VEXIw" 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/2b41ed2b60f4b621d15378a8a26f2c7f1401396c" class="genre scanme" scan=true style="color: #b55ec6; top: 780px; left: 737px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7IlvADoEl6VZwvyxPRg3GL", "zYnthetic", this);" title="e.g. zYnthetic "By the Throat"">zYnthetic<a class=navlink href="artistprofile.cgi?id=4TUDBGKxd2TYQW1k6CRnz3" 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/49c4764706fb72b4bb1fc819804c99a1f8ae06b1" class="genre scanme" scan=true style="color: #ef6950; top: 298px; left: 261px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1csCF4ujk4DN4swpMxZPdG", "Raizer", this);" title="e.g. Raizer "Phoenix"">Raizer<a class=navlink href="artistprofile.cgi?id=1h8TS33NNVLSzApowClQoc" 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/5e3bcca75fe23b89acfc90f0c78763f89ac47a29" class="genre scanme" scan=true style="color: #b08728; top: 259px; left: 814px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6ldfbljsXS4kSuGxSvJTm1", "Deadset Society", this);" title="e.g. Deadset Society "Like a Nightmare"">Deadset Society<a class=navlink href="artistprofile.cgi?id=7fBjvrS7ZTXcPYeCTDwWXG" 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/e00765b86b045d267cc4d04f726a1df285ece64e" class="genre scanme" scan=true style="color: #b4891b; top: 814px; left: 467px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5Sa9ZJCkpSYgLcCYHOCKpN", "MNQN", this);" title="e.g. MNQN "iGhost"">MNQN<a class=navlink href="artistprofile.cgi?id=3X6XpHxvQfvnp4hTE0k3wH" 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/47fa1765a91d1d1d2e5917517cb46d756c9da099" class="genre scanme" scan=true style="color: #de6258; top: 324px; left: 357px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2OUBPoxJ91IIdpPZiVW5X8", "Epsilon Zero", this);" title="e.g. Epsilon Zero "Forces - Theme From Berserk"">Epsilon Zero<a class=navlink href="artistprofile.cgi?id=2uGtBwRGjNt0ctY8bzDQ34" 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/ca4fabf52166707ed566a4933daf2f5762e66b1c" class="genre scanme" scan=true style="color: #d36942; top: 398px; left: 631px; font-size: 106%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5Jaf4NzAvm7SkvOZKNOZRl", "Soul Extract", this);" title="e.g. Soul Extract "Carrier Signal"">Soul Extract<a class=navlink href="artistprofile.cgi?id=1cEPAqNFhmARDe0HgKOD3h" 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/b648a47db8375603024037d37151f16da8831663" class="genre scanme" scan=true style="color: #b378b4; top: 573px; left: 1386px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2ejS1kysr5TPQNGSOgzkdA", "Klayton", this);" title="e.g. Klayton "Head Shot"">Klayton<a class=navlink href="artistprofile.cgi?id=2oeTR8PtEB9NV4jicZXRt3" 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/e39a80f2bc7a416991c841ffcacb4e4e53bab3f8" class="genre scanme" scan=true style="color: #c87a8a; top: 246px; left: 737px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6Dh0TW3rcPn4UD6F7VBgnO", "Entropy Zero", this);" title="e.g. Entropy Zero "War Machine"">Entropy Zero<a class=navlink href="artistprofile.cgi?id=5G4C2cJu2dxvgwDSh1FI3b" 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/f113891e7b1f1b0b471e4417abfc2f0b322d6015" class="genre scanme" scan=true style="color: #e96bbd; top: 73px; left: 576px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4rk0u76lg4D0vVLSeTooNJ", "RTPN", this);" title="e.g. RTPN "Unnamed"">RTPN<a class=navlink href="artistprofile.cgi?id=2ssZuIKn2zkChywL0s4IqQ" 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/3929e3b768f775665ced1180b496173246ee6145" class="genre scanme" scan=true style="color: #dc8277; top: 358px; left: 1361px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0qRr1jzv5QbUktvWeZUuvs", "Joe Ford", this);" title="e.g. Joe Ford "Breaking Point (feat. Robin Adams)"">Joe Ford<a class=navlink href="artistprofile.cgi?id=32rwroseSEZ7dEwooAUikF" 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/94cf0ebf4e1d468e8ac36c1352a953c8698ddc27" class="genre scanme" scan=true style="color: #e276bf; top: 115px; left: 1267px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5K9ka2I5o2T0tmFSpysNqW", "Atlas Plug", this);" title="e.g. Atlas Plug "Truth Be Known"">Atlas Plug<a class=navlink href="artistprofile.cgi?id=39ZK2Yf7SuSmYONbsmDEfv" 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/b7e98fc5cfd87df52d84876a320888dd36cac7f6" class="genre scanme" scan=true style="color: #ad81b5; top: 531px; left: 334px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5UrCArd6UDDR2EPFOeWCxb", "Sonic Mayhem", this);" title="e.g. Sonic Mayhem "Futureland"">Sonic Mayhem<a class=navlink href="artistprofile.cgi?id=4q2KeruDOYFXarHwsLA2eK" 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/e43455670d8d56f924cd48a8f18c0027175df1fa" class="genre scanme" scan=true style="color: #c17b44; top: 465px; left: 316px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("04DVF065NOx5wRtYeOP2OH", "I Will Never Be The Same", this);" title="e.g. I Will Never Be The Same "Worldless"">I Will Never Be The Same<a class=navlink href="artistprofile.cgi?id=5gWDvr9V4KoC2boyZD13WT" 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/c1bc993900fb59c9c760606bf18c684c13ebaa2b" class="genre scanme" scan=true style="color: #f0617c; top: 225px; left: 1212px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3CmrB7T7Lc9crsdvS8q19s", "3D Stas", this);" title="e.g. 3D Stas "Deep Scars"">3D Stas<a class=navlink href="artistprofile.cgi?id=0oNJiBJkV316NeAeoHnnHK" 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/1baa5887dd31d98f9cfd2dd7d6eadaa9483d8b8e" class="genre scanme" scan=true style="color: #e88dd5; top: 0px; left: 718px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6YLWkUzdBzCtXIGngc1ROj", "The Luna Sequence", this);" title="e.g. The Luna Sequence "Veil Walled Garden"">The Luna Sequence<a class=navlink href="artistprofile.cgi?id=7lY8eBGG8mYelACRSlrpVr" 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/ddddd46487c7ee3b031dcf94de0eef2cc223a331" class="genre scanme" scan=true style="color: #e9697b; top: 353px; left: 165px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4laidm7QyhsId0XX3RQ8Hk", "Paul Udarov", this);" title="e.g. Paul Udarov "Heartless"">Paul Udarov<a class=navlink href="artistprofile.cgi?id=10sOpGcYgl6r9Go6iUoFJ8" 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/711e739380eb1f7b39cff7e259bd74bcec15e77b" class="genre scanme" scan=true style="color: #ce8824; top: 157px; left: 782px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3Cv5sKQDMRfx1Py7gcT2z1", "Invocation Array", this);" title="e.g. Invocation Array "The Garden (ArcheAge Garden of the Gods Theme)"">Invocation Array<a class=navlink href="artistprofile.cgi?id=19istqaqoeOEbovSLhcdkK" 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/27820dd65e5840ea7ed752b260258e4770150155" class="genre scanme" scan=true style="color: #ef5a18; top: 256px; left: 494px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2dxwOjX0uo5gPG7JTUKZW4", "Neroargento", this);" title="e.g. Neroargento "Inside"">Neroargento<a class=navlink href="artistprofile.cgi?id=1SOuNgUgA2KQ5vzae2EHbL" 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/ce8e17c097a215155ddb2d2a3af77b8f1af771fa" class="genre scanme" scan=true style="color: #dc7435; top: 353px; left: 1057px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7nulQV4GAPHJmqWzEGDdHd", "Subkulture", this);" title="e.g. Subkulture "Erasus - feat. Celldweller"">Subkulture<a class=navlink href="artistprofile.cgi?id=34tXHp7QVnhFHxvc5kPIdT" 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/e4a59b045aef49c081fda9c8c9e1b7c24fc24ff3" class="genre scanme" scan=true style="color: #db7242; top: 505px; left: 380px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5F0SeFoEvGi64888rJz0HK", "Richy Nix", this);" title="e.g. Richy Nix "In My Head"">Richy Nix<a class=navlink href="artistprofile.cgi?id=3w3HOEJdhYdDlQ82SLCmtQ" 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/7a0a4037236b131be83c0c2830f2218acfb76ce5" class="genre scanme" scan=true style="color: #d071a0; top: 288px; left: 979px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1XzGZGwTh8KmFDwexdfdqw", "Moaan Exis", this);" title="e.g. Moaan Exis "On Fire"">Moaan Exis<a class=navlink href="artistprofile.cgi?id=2rKK0Dj6y1D6TWkAUy3EAd" 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/9a812fe04cd1baf13452a8dd11cf9c1985dc1363" class="genre scanme" scan=true style="color: #ce741b; top: 212px; left: 929px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("656fu7zieCVPjpYFA7Hcqj", "Amelia Arsenic", this);" title="e.g. Amelia Arsenic "Architects of Death (Remix)"">Amelia Arsenic<a class=navlink href="artistprofile.cgi?id=3llpH4iulHAq1HE23XmN3y" 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/e6730acd39f7e871bd6b5350141928d876589c4b" class="genre scanme" scan=true style="color: #a19097; top: 900px; left: 604px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0knAHKgoYTNdA6rJTvc4sg", "Comaduster", this);" title="e.g. Comaduster "Riverbound"">Comaduster<a class=navlink href="artistprofile.cgi?id=7qiPN4EfYY3qZqZwaAKzN5" 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/42d5b771ae94fffe651ac4aaca089bdd62b07d5b" class="genre scanme" scan=true style="color: #e37683; top: 107px; left: 814px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2LfwFEFF0FqKXFtX0GHXcH", "Drop Your Weapon", this);" title="e.g. Drop Your Weapon "Candy Girls"">Drop Your Weapon<a class=navlink href="artistprofile.cgi?id=4ckaoizgYG3MT1KQtRi1Rf" 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/d0277a90bfb62d16b640f6277a8863886137f586" class="genre scanme" scan=true style="color: #ed5d6b; top: 246px; left: 307px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2CLWYxRZ6wSitCaLCM15CF", "Shadow Domain", this);" title="e.g. Shadow Domain "Turbogenerator"">Shadow Domain<a class=navlink href="artistprofile.cgi?id=7oT3eKrT5BvIEQdgKHZmsu" 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/3bb9bc8fcede5ecd9827e7dfa990e47de7a4d153" class="genre scanme" scan=true style="color: #ca7450; top: 531px; left: 1217px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0uKx0kvuosOccVNVnar1Ka", "Sirus", this);" title="e.g. Sirus "Smoke Machine"">Sirus<a class=navlink href="artistprofile.cgi?id=7hEiffxKfqhPWOMHrhYmg9" 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/c3164080e99e99f9a465f161accd3e107f67df4e" class="genre scanme" scan=true style="color: #ea5b20; top: 303px; left: 590px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1zz2Q0OgNChEJX10pkuMzf", "Encephalon", this);" title="e.g. Encephalon "Emulations"">Encephalon<a class=navlink href="artistprofile.cgi?id=7Gl0BmChpd9W6N7NpSp08A" 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/376388cd72f15b9f077747360912ca34ad4de2a8" class="genre scanme" scan=true style="color: #ea7068; top: 426px; left: 718px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5XKvea6ua8cPNxSAFJLB7e", "OCTiV", this);" title="e.g. OCTiV "Infernal (feat. Celldweller)"">OCTiV<a class=navlink href="artistprofile.cgi?id=6on2serWhHqmW5PEOxkwEB" 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/bae109b4ceb6897f9f03f1cd5029f6f24f25c6a6" class="genre scanme" scan=true style="color: #d07965; top: 220px; left: 462px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3eKoLbxkNhAINXr22jjv7E", "XXX Car Ride", this);" title="e.g. XXX Car Ride "Cutting Through"">XXX Car Ride<a class=navlink href="artistprofile.cgi?id=6sG8fWbgbU1O6YzAdDU8c1" 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/6e310e62635b1abf692181588799d6b86bed5c69" class="genre scanme" scan=true style="color: #d574af; top: 453px; left: 485px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4gVdmXgR8Lp56NonH5LCY6", "GReeNOX", this);" title="e.g. GReeNOX "Overnight Journey"">GReeNOX<a class=navlink href="artistprofile.cgi?id=37UkwhIsZgUSAAv3j9E2yn" 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/8652bd070890fdb434f70cd4e4778c659d5f54ef" class="genre scanme" scan=true style="color: #f46f9d; top: 173px; left: 1304px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2YsLvdm387xBKdmVMVZ1q2", "Age Of Rampage", this);" title="e.g. Age Of Rampage "Timeshifter"">Age Of Rampage<a class=navlink href="artistprofile.cgi?id=0kJU4bFEM5ocVrkl88TvJP" 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/fc66cbd9ce81212f97548e75a18d289578b5ec8f" class="genre scanme" scan=true style="color: #dd6936; top: 259px; left: 714px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("24wPUgmnaMWgGLz6XhS60g", "Cell 7", this);" title="e.g. Cell 7 "Losing My Religion"">Cell 7<a class=navlink href="artistprofile.cgi?id=67QkTEr76LI9oBvaLF76Lq" 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/48335bc090960ad9497c4c67cdc28f2c82134887" class="genre scanme" scan=true style="color: #e240a0; top: 162px; left: 956px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("78WZ1kSG1kSWEURNhTGzWt", "RELIC", this);" title="e.g. RELIC "Pray"">RELIC<a class=navlink href="artistprofile.cgi?id=7qPZrNPNfXOEnXVI3SQczl" 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/affe23b791888cd51289f4a59f80dffa2b6ad8c7" class="genre scanme" scan=true style="color: #d279da; top: 68px; left: 1295px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0Fq3H0W5mxnSEeWDkCpJlP", "Nevada Hardware", this);" title="e.g. Nevada Hardware "Smash Cut"">Nevada Hardware<a class=navlink href="artistprofile.cgi?id=6ZrtFrVfVNSgmJqBZqRU7L" 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/320142519cfcaf0a4aa7805a315510a36afdea1e" class="genre scanme" scan=true style="color: #f36228; top: 3px; left: 1400px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5dsu6BWxTobtUuwmyJg07w", "Ectomaniax", this);" title="e.g. Ectomaniax "Bloody Red"">Ectomaniax<a class=navlink href="artistprofile.cgi?id=0xf1IjtWJJhxXb5JYyMzpf" 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 535px 16px 535px;"> <div class=canvas style="width: 428px; height: 336px; border: 1px solid gray; background: #FCFCFC; top: 64px"> <div id=nearbyitem1 preview_url="https://p.scdn.co/mp3-preview/34ea920800494cea6df2dbcda64aab915e53b749" class="genre" scan=true style="color: #d97065; top: 147px; left: 112px; font-size: 240%" 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="everynoise1d-futurerock.html" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem2 preview_url="https://p.scdn.co/mp3-preview/c580b6ee1692073de238ff753c2cb81fe23b2ea6" class="genre" scan=true style="color: #b87788; top: 241px; left: 171px; font-size: 108%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3eOnpUxxM5FjSETY4fWXhd", "cyberpunk", this);" title="e.g. Street Cleaner "Nightlife"">cyberpunk<a class=navlink href="engenremap-cyberpunk.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/38a15a5372657e385d7481dcfd28a37f7ca666c7" class="genre" scan=true style="color: #d6624d; top: 200px; left: 171px; font-size: 104%" 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=nearbyitem4 preview_url="https://p.scdn.co/mp3-preview/e15e677d91032f9a526b31e885c7fc06456a38e6" class="genre" scan=true style="color: #c97453; top: 176px; left: 101px; font-size: 103%" 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=nearbyitem5 preview_url="https://p.scdn.co/mp3-preview/d26352307d0460c0377d997efa77632cc191a9a2" class="genre" scan=true style="color: #d45a6e; top: 228px; left: 139px; font-size: 102%" 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=nearbyitem6 preview_url="https://p.scdn.co/mp3-preview/04e96a1862059229f0619af8241d97c2528c101c" class="genre" scan=true style="color: #d46747; top: 89px; left: 173px; font-size: 102%" 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=nearbyitem7 preview_url="https://p.scdn.co/mp3-preview/0e74fa6602edb0a42b7f2e408a33f5d7c1a66a25" class="genre" scan=true style="color: #ca7933; top: 189px; left: 68px; font-size: 101%" 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=nearbyitem8 preview_url="https://p.scdn.co/mp3-preview/4a60567079a5e4a56d0db5cfd9280ef058f9832d" class="genre" scan=true style="color: #d76932; top: 201px; left: 32px; font-size: 100%" 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=nearbyitem9 preview_url="https://p.scdn.co/mp3-preview/831e45955d26b089e2fda48820f4e957d4c26b14" class="genre" scan=true style="color: #ce6a2b; top: 213px; left: 156px; font-size: 100%" 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=nearbyitem10 preview_url="https://p.scdn.co/mp3-preview/e61ddcbeff60f7212174b6e7f9824c9543835244" class="genre" scan=true style="color: #db696b; top: 0px; left: 300px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6xC4BwwXvs3uTccwpcTjLb", "aggrotech", this);" title="e.g. Tactical Sekt "Bring Me Violence"">aggrotech<a class=navlink href="engenremap-aggrotech.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/38a3538a05ec8f832f9aadf25b9ba69bff7883cf" class="genre" scan=true style="color: #c8695c; top: 300px; left: 0px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6JzcLZCj5TVmRgTKWZwY4l", "chinese metal", this);" title="e.g. 雪沉乐队 "乌木"">chinese metal<a class=navlink href="engenremap-chinesemetal.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/7cebef4978b761530e0f7a8d61a5a0b26c5cf3a3" class="genre" scan=true style="color: #e6653c; top: 176px; left: 258px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4XeeidvdhYxPxLhcZTFVm3", "classic hardstyle", this);" title="e.g. A-Lusion "Visual Perception"">classic hardstyle<a class=navlink href="engenremap-classichardstyle.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/b40b6dc430aab51bf24089063bf23e61bd2e4c94" class="genre" scan=true style="color: #bc7353; top: 236px; left: 0px; font-size: 100%" 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=nearbyitem14 preview_url="https://p.scdn.co/mp3-preview/93a95925d1a544e2f672263ee10268a7fb50f0e2" class="genre" scan=true style="color: #d2687c; top: 53px; left: 279px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1taLHZKMaI8B8FBm5nR5qb", "dark electro-industrial", this);" title="e.g. Diverje "Wrapped Around - The Synthetic Dream Foundation Mix"">dark electro-industrial<a class=navlink href="engenremap-darkelectroindustrial.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/7ea74a9b0c5ea930936c5751114fd823af70b3fd" class="genre" scan=true style="color: #c27d8a; top: 123px; left: 131px; font-size: 100%" 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=nearbyitem16 preview_url="https://p.scdn.co/mp3-preview/f131709a62e37b1b72291c5ed20dbe6f79695ab7" class="genre" scan=true style="color: #c4722e; top: 248px; left: 13px; font-size: 100%" 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=nearbyitem17 preview_url="https://p.scdn.co/mp3-preview/236742fcdd7d3cb6c7c837e59961a1af7863579c" class="genre" scan=true style="color: #c487ad; top: 135px; left: 175px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("686Fx44fjUILYqlWtS7hkx", "darksynth", this);" title="e.g. Shredder 1984 "Resistance"">darksynth<a class=navlink href="engenremap-darksynth.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/ff2dc46e330ad14fa59e2a75ced0216f926c9128" class="genre" scan=true style="color: #bf7760; top: 263px; left: 59px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6kb4WZXGjI1kUiQoTCFgel", "deep gothic post-punk", this);" title="e.g. Dial M For Murder! "Do You Think So? I Don't"">deep gothic post-punk<a class=navlink href="engenremap-deepgothicpostpunk.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/96d4bed0bd8ed5d4f6d3950cdb800a8d397b2a78" class="genre" scan=true style="color: #dc6b36; top: 188px; left: 247px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5wEy787VwmAnA7GGhEzjHR", "denpa-kei", this);" title="e.g. Nanahira "Can I friend you on Bassbook? lol"">denpa-kei<a class=navlink href="engenremap-denpakei.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/154218dd6a0f1422636e5038149391df981339a7" class="genre" scan=true style="color: #e15493; top: 124px; left: 279px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3lArQPe5hvjEyT5Zc5LivW", "doomcore", this);" title="e.g. Embrionyc "What This Music Used to Be"">doomcore<a class=navlink href="engenremap-doomcore.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/485e66580e0c0a870760803e1e705ee4664b730c" class="genre" scan=true style="color: #c0794b; top: 260px; left: 264px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("54BCBHVE768LRKC8W9b8tb", "doujin", this);" title="e.g. EastNewSound "緋色月下、狂咲ノ絶 -1st Anniversary Remix-"">doujin<a class=navlink href="engenremap-doujin.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 535px 16px 535px;"> <div class=canvas style="width: 428px; height: 338px; border: 1px solid gray; background: #404040; top: 64px"> <div id=mirroritem1 preview_url="https://p.scdn.co/mp3-preview/ab5b0a8cb3d14289828b6d69088e40653d9ee026" class="genre" scan=true style="color: #acc56b; top: 23px; left: 180px; font-size: 160%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4jsJ3pE2D6lispcVju1txE", "detske pisnicky", this);" title="e.g. Josef Dvořák "Přátelé, Chvátám, Chvátám"">detske pisnicky<a class=navlink href="engenremap-detskepisnicky.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/d79ed2bb406b649f01532165d4bd7163fd1563db" class="genre" scan=true style="color: #aec86e; top: 157px; left: 46px; font-size: 146%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("03t9agP0NqJNhtQ35VHUhK", "bard", this);" title="e.g. Bulat Okudzhava "Бери шинель, пошли домой (Из к/ф "От зари до зари")"">bard<a class=navlink href="engenremap-bard.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/84b49a4e2156da513439748449d7fa5337f77bf8" class="genre" scan=true style="color: #b1c586; top: 238px; left: 193px; font-size: 145%" 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=mirroritem4 preview_url="https://p.scdn.co/mp3-preview/0ebed57e1c83e2cb69a3f731cc0e7289b3fcca90" class="genre" scan=true style="color: #adc56f; top: 115px; left: 263px; font-size: 142%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0aWpKmCiRJJTxtDLxEHs13", "cocuk masallari", this);" title="e.g. Derya Baykal "Kahraman Pinokyo"">cocuk masallari<a class=navlink href="engenremap-cocukmasallari.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/7e933299a5162082cc881382cb3609230ec1cac8" class="genre" scan=true style="color: #accaac; top: 208px; left: 109px; font-size: 138%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6OH7UCFY7SEJxxQkaYfAv8", "jazz flute", this);" title="e.g. Herbie Mann "Comin' Home Baby"">jazz flute<a class=navlink href="engenremap-jazzflute.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/6777d92d00cf1a45c977b5532a18a7ca0566b834" class="genre" scan=true style="color: #aaca93; top: 262px; left: 196px; font-size: 136%" 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=mirroritem7 preview_url="https://p.scdn.co/mp3-preview/1f3cdd51f44d4dd65628f01531f0f04000107ab2" class="genre" scan=true style="color: #accc75; top: 192px; left: 78px; font-size: 128%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0mVONIZXWCRXVueqDXZuUm", "nueva cancion", this);" title="e.g. Quilapayún "La Muralla"">nueva cancion<a class=navlink href="engenremap-nuevacancion.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/bd716a6de28f3507d7d76acf5cb7844dc29397e7" class="genre" scan=true style="color: #a4ca8a; top: 106px; left: 50px; font-size: 121%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2V6B9nhJHIHKwEoV8uhHef", "musicas espiritas", this);" title="e.g. Equipe de Música da CEC "Brilhar Minha Luz"">musicas espiritas<a class=navlink href="engenremap-musicasespiritas.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/624070199ae13e2ebca9f85d96d4d91a4e82feac" class="genre" scan=true style="color: #b6ca6f; top: 143px; left: 104px; font-size: 117%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3VVqkN6kdq7DnEH0O1QWYl", "canto popular uruguayo", this);" title="e.g. Numa Moraes "La Patria Compañero"">canto popular uruguayo<a class=navlink href="engenremap-cantopopularuruguayo.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/cd0362aa3cba814eb3bcfcfdae91fda4a5a77eb9" class="genre" scan=true style="color: #b6cb99; top: 79px; left: 189px; font-size: 115%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5Og9M2ctyzRl6uNQ0Efn9w", "folklore cuyano", this);" title="e.g. Lisandro Bertín "Soy primero su amigo"">folklore cuyano<a class=navlink href="engenremap-folklorecuyano.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/1ef7d8ce578d449dd20f111e5cbd1c82cb93aaaa" class="genre" scan=true style="color: #b0c383; top: 287px; left: 213px; font-size: 114%" 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=mirroritem12 preview_url="https://p.scdn.co/mp3-preview/287c1de042231e4d89e08a2be87342c08924540f" class="genre" scan=true style="color: #a9cb83; top: 301px; left: 243px; font-size: 114%" 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=mirroritem13 preview_url="https://p.scdn.co/mp3-preview/804c4ee213fbeac5ef15e6464cda7438653f7b01" class="genre" scan=true style="color: #a8c467; top: 97px; left: 300px; font-size: 112%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4BHMTR1cocYk1ZQKK3fk2t", "barnasogur", this);" title="e.g. Leikhópurinn Karíus "Fyrsti þáttur: Jens burstar aldrei tennurnar"">barnasogur<a class=navlink href="engenremap-barnasogur.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/cf3a323e52b3713795726ed9e8e94950af7c569a" class="genre" scan=true style="color: #b1c66f; top: 143px; left: 0px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5DGzIS8gmYaNXuwJPTNCfl", "calypso", this);" title="e.g. The Mighty Terror "Brownskin Girl"">calypso<a class=navlink href="engenremap-calypso.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/891c064fab1efb9369546620b34805390f101d11" class="genre" scan=true style="color: #b0cb68; top: 0px; left: 96px; font-size: 110%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2MGZFL6kqsXxXojlm64BUn", "bush ballad", this);" title="e.g. John Williamson "True Blue"">bush ballad<a class=navlink href="engenremap-bushballad.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/f7d670dbb4b7ac27e44f76484f46d5dbcd554685" class="genre" scan=true style="color: #a7cd6d; top: 208px; left: 4px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1CKo7cmrH8wF6teIh5dlDT", "french folk", this);" title="e.g. Marc Robine "Le pieu (l'estaque)"">french folk<a class=navlink href="engenremap-frenchfolk.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/bdf25230c3e8c0b867c4c162570debb859618805" class="genre" scan=true style="color: #b0ca73; top: 131px; left: 33px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("47vybCOO8vStw06IMYxiqG", "musica yucateca", this);" title="e.g. Sergio Esquivel "Quisiera Ser Golondrina"">musica yucateca<a class=navlink href="engenremap-musicayucateca.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/2de2e4f31487ded6459da89d8e816f98b62007c3" class="genre" scan=true style="color: #acc970; top: 174px; left: 59px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0QpactOWKs6d2vbTdDyVsS", "country gospel", this);" title="e.g. The Carter Family "Will the Circle Be Unbroken"">country gospel<a class=navlink href="engenremap-countrygospel.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/0dc998333c333a8c017685e584a83d09a96f377a" class="genre" scan=true style="color: #a8c87b; top: 226px; left: 283px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6ZFVrlvtsEXppv1LWtabzU", "kenyan traditional", this);" title="e.g. Akito Arap Yeko "Kamano"">kenyan traditional<a class=navlink href="engenremap-kenyantraditional.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/2e2545e44d68612a1ceeafde889349a8ef7a69bb" class="genre" scan=true style="color: #b7c978; top: 93px; left: 102px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3qJoxHKIggEiseJWAALdbU", "folklore argentino", this);" title="e.g. Peteco Carabajal "Bajo la Sombra de un Árbol"">folklore argentino<a class=navlink href="engenremap-folkloreargentino.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 535px; width: 428px; 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>