CINXE.COM
Every Noise at Once - digital hardcore
<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 - digital hardcore</title> </head> <body> <div class=title><a href="engenremap.html">Every Noise at Once</a> · digital hardcore <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=digital%20hardcore">list</a> <a style="color: #989898" href="https://open.spotify.com/playlist/2fqbzU1sBBZ3gW61Q7qYhp" title="listen to The Sound of Digital Hardcore on Spotify">playlist</a> <a style="color: #a6a6a6" href="https://open.spotify.com/user/particledetector/playlist/3pdxdPlUs4bnwzvH1zq6fN" title="listen to a shorter introduction to this genre">intro</a> <a style="color: #b4b4b4" href="https://open.spotify.com/user/particledetector/playlist/6lQx4GtAfZ41y7ModvU6Ef" title="listen to this genre's fans' current favorites">pulse</a> <a style="color: #c2c2c2" href="https://open.spotify.com/user/particledetector/playlist/2LnrcGTyEAhDjWot1OiEUY" title="listen to this genre's fans' new discoveries">edge</a> <a style="color: #d0d0d0" href="nrbg.html?genre=digital%20hardcore">new</a></div> <div class=canvas role=main style="width: 1475px; height: 943px; top: 64px"> <div id=item1 preview_url="https://p.scdn.co/mp3-preview/0218fe6a606f595dd4447255b1e3e4192198f06a" class="genre scanme" scan=true style="color: #c18251; top: 229px; left: 776px; font-size: 160%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6E1YebXpPPtujMUljDNlOo", "Crystal Castles", this);" title="e.g. Crystal Castles "Kerosene"">Crystal Castles<a class=navlink href="artistprofile.cgi?id=7K3zpFXBvPcvzhj7zlGJdO" 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/d2146f0a791649ecf94cf942cab041aac75cdece" class="genre scanme" scan=true style="color: #de6776; top: 278px; left: 782px; font-size: 125%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("38BJYKB0qHJsNi2OyI7kxW", "Machine Girl", this);" title="e.g. Machine Girl "うずまき"">Machine Girl<a class=navlink href="artistprofile.cgi?id=17Vw9uuOYB7XYjPt0LNFN0" 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/2b9844e07ae287c44f7c0b0e671af3dbeab8d7e8" class="genre scanme" scan=true style="color: #ee5036; top: 175px; left: 371px; font-size: 106%" 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=item4 preview_url="https://p.scdn.co/mp3-preview/c7856beb3eff64268e11fa2d3658fdd1bea8c484" class="genre scanme" scan=true style="color: #db7034; top: 281px; left: 378px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4sVDtfZ3q8T54xyiv1l3Is", "YOU LOVE HER", this);" title="e.g. YOU LOVE HER "2007"">YOU LOVE HER<a class=navlink href="artistprofile.cgi?id=0Z7dYQpd2WCyp6UEXFWZ2c" 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/f9a962062025120d6441b4f05bf54c022d2b67a4" class="genre scanme" scan=true style="color: #da7247; top: 188px; left: 417px; font-size: 105%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1ZYTIBBOW1Aw4MZF5zQvdK", "Kap Bambino", this);" title="e.g. Kap Bambino "Human Pills"">Kap Bambino<a class=navlink href="artistprofile.cgi?id=2EsL7l54h5MZm34uFVsRQi" 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/dddbac61487125c80ea155f350835237441c5b84" class="genre scanme" scan=true style="color: #ec3232; top: 400px; left: 342px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7fftnG8BcZ7385YMvWuBes", "Atari Teenage Riot", this);" title="e.g. Atari Teenage Riot "Speed"">Atari Teenage Riot<a class=navlink href="artistprofile.cgi?id=1EMlPfrse4I1I1hA3iwhk9" 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/8b016a86d1361e86a48ce0fe19ccfd6f8291134e" class="genre scanme" scan=true style="color: #de78cf; top: 64px; left: 1042px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4PuAOOt5obo5Vf0GPraaBb", "Filmmaker", this);" title="e.g. Filmmaker "Lust Riders"">Filmmaker<a class=navlink href="artistprofile.cgi?id=2V2SmuR8XmWsKjGzTSk6Hp" 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/7595d92e906af07e53ef235315d4c846c7fdbac4" class="genre scanme" scan=true style="color: #e74785; top: 238px; left: 559px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3N8rh0o5Z8MIV5mmwGNJP2", "The Mad Capsule Markets", this);" title="e.g. The Mad Capsule Markets "PULSE"">The Mad Capsule Markets<a class=navlink href="artistprofile.cgi?id=4cUPXIFWrfVo8xmU1nHy0q" 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/91c8d0edb0464bd5c58893b9835aeb57b5b7e8e6" class="genre scanme" scan=true style="color: #b87daa; top: 189px; left: 1364px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3vfpB6G73nBtVmlNTS6Jw6", "Patric Catani", this);" title="e.g. Patric Catani "Pit People (It's Us!)"">Patric Catani<a class=navlink href="artistprofile.cgi?id=5TVfuZVGf8ALAdPhiskKnN" 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/2bbfacd303637f59b555a3d5ef704fc8402241fc" class="genre scanme" scan=true style="color: #db5f3a; top: 85px; left: 1016px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3AIFqER60cDCX94nyLHRFf", "Angelspit", this);" title="e.g. Angelspit "Satanic Aesthetic"">Angelspit<a class=navlink href="artistprofile.cgi?id=7Coo58A8U3BCpCl4nQ3pda" 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/ef3749733b9afc3e8e3b08da653a52a316d8a639" class="genre scanme" scan=true style="color: #e94641; top: 388px; left: 460px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4AzmLmOlKUdIJ75UrSN7XS", "death insurance", this);" title="e.g. death insurance "ifeelgr8"">death insurance<a class=navlink href="artistprofile.cgi?id=3XsNms43CQkU0iyoWB19tP" 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/993cee0c1d229603be2e40723083842743c461f1" class="genre scanme" scan=true style="color: #b869cf; top: 449px; left: 657px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6DfNvMs28Jhm0SnabsuaI4", "Christoph De Babalon", this);" title="e.g. Christoph De Babalon "Nostep"">Christoph De Babalon<a class=navlink href="artistprofile.cgi?id=4ZrzdbajcxLidPJDPZomzz" 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/97e7b89dd1beb0f1c795988a057d56bba8ca361a" class="genre scanme" scan=true style="color: #b3609d; top: 383px; left: 713px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1Zf5yohpEoTuakY0uAvG9V", "Alec Empire", this);" title="e.g. Alec Empire "Addicted to You"">Alec Empire<a class=navlink href="artistprofile.cgi?id=3YGigudQiWDb5NdJOC5StS" 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/571fd1072187f1dd29fa91d694580be05fb9a011" class="genre scanme" scan=true style="color: #da4a42; top: 281px; left: 496px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1ZCl9mxpSj24qfiIE1AGy7", "Left Spine Down", this);" title="e.g. Left Spine Down "Last Daze - Funland Mix"">Left Spine Down<a class=navlink href="artistprofile.cgi?id=3wUPFLdJQhBMqyqlIpxQ8g" 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/5fd2c43baa5550f6f4030686c14b4331f38783c4" class="genre scanme" scan=true style="color: #d15b48; top: 349px; left: 243px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2LJa13xXah2Jy2hG6UfTgB", "AA=", this);" title="e.g. AA= "LOSER - re:Rec"">AA=<a class=navlink href="artistprofile.cgi?id=1QRnF3T3BV3bTOLab9lxiN" 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/da106b20d0da27033e83569e1d9c45e15f54bbbb" class="genre scanme" scan=true style="color: #e65049; top: 349px; left: 1075px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3rrzHDNAmCRcVMNe16cIOL", "Bonnie Baxter", this);" title="e.g. Bonnie Baxter "SKYRAT"">Bonnie Baxter<a class=navlink href="artistprofile.cgi?id=1BzWF7VaVxI5XrqWRxJH6x" 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/bc9284501b45c44512f4aff7e2eaa902bef6e75e" class="genre scanme" scan=true style="color: #dd5370; top: 371px; left: 641px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5L3QmUIJ7P0tZxFPY74S9o", "Sonic Dragolgo", this);" title="e.g. Sonic Dragolgo "MY SWEET HONEY BUNNY"">Sonic Dragolgo<a class=navlink href="artistprofile.cgi?id=7cc8Nah2EoXTl5FjNwhXm3" 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/2c6b17fb4a26012b69600ee470aacfbbe9fe4a0f" class="genre scanme" scan=true style="color: #e15e92; top: 657px; left: 13px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5cShlKEBPTjIaoVGXqtbuh", "Undo K From Hot", this);" title="e.g. Undo K From Hot "Missing Information"">Undo K From Hot<a class=navlink href="artistprofile.cgi?id=4oIUngDiVZfPKkXWi5fH5q" 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/de3e4fd70e9c4fe9f1ddb7563a344b37a0f23814" class="genre scanme" scan=true style="color: #e93a99; top: 306px; left: 424px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2mV3Y65yxzsUan8WO5Tb0q", "Ambassador21", this);" title="e.g. Ambassador21 "We Are Legion - Matt Green Remix"">Ambassador21<a class=navlink href="artistprofile.cgi?id=2y3AKmpisJLjpJ7JRIt43I" 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/6978c92e6eb2341a0789bbfcfbc3464ea2734297" class="genre scanme" scan=true style="color: #e3252a; top: 444px; left: 404px; font-size: 101%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("50fQpNxss8lKs7yJ6JAXo0", "Lolita Storm", this);" title="e.g. Lolita Storm "Red Hot Riding Hood"">Lolita Storm<a class=navlink href="artistprofile.cgi?id=6YF9sFv4SPlpLL6808Gsny" 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/079092cc42a4e064dc5a76a232dd3d063efa85dd" class="genre scanme" scan=true style="color: #f3225c; top: 246px; left: 134px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0FIYN0LaekI7kub0ivsrio", "Wagdug Futuristic Unity", this);" title="e.g. Wagdug Futuristic Unity "SYSTEMATIC PEOPLE(DUG version)"">Wagdug Futuristic Unity<a class=navlink href="artistprofile.cgi?id=2PgCXHWnYKyf3wHe1QuPf4" 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/7442447699654529c5c7dd27f40eee27b935118f" class="genre scanme" scan=true style="color: #da6bae; top: 166px; left: 651px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4POrzS1oGv0s4tjYwAzbOI", "Blush Response", this);" title="e.g. Blush Response "Innenin"">Blush Response<a class=navlink href="artistprofile.cgi?id=04EzrrhYAQ81Go4FJ0prtu" 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/7740a0ea67ec8a23a41d42dfd7aa1578874f387b" class="genre scanme" scan=true style="color: #e868a1; top: 101px; left: 486px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3qP1c75oYEzHVyBQJgoQ9z", "Tex Taiwan", this);" title="e.g. Tex Taiwan "Quick Attack"">Tex Taiwan<a class=navlink href="artistprofile.cgi?id=2gnp04fRihsMGWIx2s2Hix" 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/d26352307d0460c0377d997efa77632cc191a9a2" class="genre scanme" scan=true style="color: #d72689; top: 429px; left: 263px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1GGLejpsjVbAAxK1qav7L2", "Ec8or", this);" title="e.g. Ec8or "Think About"">Ec8or<a class=navlink href="artistprofile.cgi?id=0j6rtPpOJntNlv3iad0Xcq" 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/c6fd8482d63b7a3e54b203bdadddca1ddeb7db0b" class="genre scanme" scan=true style="color: #d230a2; top: 483px; left: 812px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("66CFpFZjPuuZSdeq6jtuq0", "Shizuo", this);" title="e.g. Shizuo "The Man"">Shizuo<a class=navlink href="artistprofile.cgi?id=2mx5jUXuSFUX5KNN8ikgLk" 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/76a1cb4c2b463a50f96471e76ac81cfaa9e36333" class="genre scanme" scan=true style="color: #937989; top: 495px; left: 766px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2mf7SWeedWWl5c9R0txccS", "Himiko", this);" title="e.g. Himiko "Hurting Earth"">Himiko<a class=navlink href="artistprofile.cgi?id=0APUSCtl3GPDRGn386Gg72" 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/e15b1ffa71040a73a9575799bb1c9cbce09b7dff" class="genre scanme" scan=true style="color: #be6262; top: 456px; left: 1213px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6q9hMprVG2cp7GVxXfxgLl", "Cobra Killer", this);" title="e.g. Cobra Killer "Mund Auf Augen Zu (Stecker Raus, Ich Dreh’ Durch)"">Cobra Killer<a class=navlink href="artistprofile.cgi?id=1KZtYStfjoxIDmTDK9gP7v" 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/d465928206ad59e7b6b3df366eb8b1b640ab6252" class="genre scanme" scan=true style="color: #b86b5f; top: 300px; left: 736px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6J7PJ9cVNf8hFZUr7eP82h", "Hanin Elias", this);" title="e.g. Hanin Elias "Hold Me (feat. Electrosexual)"">Hanin Elias<a class=navlink href="artistprofile.cgi?id=56M1ls3RwB3XSPjWGG1FXy" 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/719be656406859157f3e9d874564737d4defad00" class="genre scanme" scan=true style="color: #ee0d5b; top: 535px; left: 226px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("61J6d7gCYgurkk5fFA4i3A", "Bomb 20", this);" title="e.g. Bomb 20 "Burn the Shit Down"">Bomb 20<a class=navlink href="artistprofile.cgi?id=6iOCb6cP4jHPhilOeuFSu5" 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/9c6d465a93e880a58b094034e1777d0d4a0e088b" class="genre scanme" scan=true style="color: #a34bbf; top: 900px; left: 749px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3li4fj8zHRkYPmHqyMCq1B", "Carl Crack", this);" title="e.g. Carl Crack "Gangsta"">Carl Crack<a class=navlink href="artistprofile.cgi?id=35Zgy6e4fE5POJn10DP9Vh" 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/98618933e0ab5e09272d4c094b309bf35cd214ee" class="genre scanme" scan=true style="color: #d57344; top: 0px; left: 901px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5TrDBaqGQTRWZYaeRUaapB", "Motormark", this);" title="e.g. Motormark "Eat.Drink.Sleep.Think."">Motormark<a class=navlink href="artistprofile.cgi?id=1FTgNTRIOgPdtxyDF11itL" 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/61f4c9364e0c61d9061514e75dae6193fafa7802" class="genre scanme" scan=true style="color: #eb5743; top: 294px; left: 351px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1aV7GwdTaRyBZeJ8jrv1Bl", "Moshpit", this);" title="e.g. Moshpit "Souvenirs And Other Tumours"">Moshpit<a class=navlink href="artistprofile.cgi?id=0PfbHzKIO6PhuUmG67qaYM" 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/4c05f1c2a4a3a051cc342efc1b05b7a270d08f49" class="genre scanme" scan=true style="color: #b1328b; top: 601px; left: 496px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("25bAZ2tY3Ia5S2Ys9Mxsh9", "Nic Endo", this);" title="e.g. Nic Endo "Man-Eater"">Nic Endo<a class=navlink href="artistprofile.cgi?id=6FWlPE8JNKRl3ncODbKaWe" 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/714df034e7a2458c6504c3890e144adb0de28fde" class="genre scanme" scan=true style="color: #e64133; top: 501px; left: 628px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3QBwtdYiaUfgCkEc5KhejR", "Sonic Subjunkies", this);" title="e.g. Sonic Subjunkies "Central Industrial"">Sonic Subjunkies<a class=navlink href="artistprofile.cgi?id=0f5hf5BD7WmJ3zfo0ksu1K" 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/9b19ed2fbe08be6448521d3879521b875134ad7d" class="genre scanme" scan=true style="color: #d53f8c; top: 288px; left: 707px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5Hcfy6HMD5VKmJ33mhwIWS", "Patric C", this);" title="e.g. Patric C "You're a Hero"">Patric C<a class=navlink href="artistprofile.cgi?id=32rNo9ZDz5xAFV1Pu9uwJT" 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/3d69b060258422e8da60674c7f19754aeda44a90" class="genre scanme" scan=true style="color: #ee556f; top: 72px; left: 762px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6k9HTl2VUtcpEoSSfM9MWu", "The Shizit", this);" title="e.g. The Shizit "Point, Click, Kill"">The Shizit<a class=navlink href="artistprofile.cgi?id=1thE6cSeLOTn9tuhQQJygA" 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/0d92a6d0a5ab10021551d76b64b7f749df3e52c3" class="genre scanme" scan=true style="color: #c92ac6; top: 373px; left: 174px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1uWj0lwSlPa1ReoUcob757", "Panic DHH", this);" title="e.g. Panic DHH "Reach"">Panic DHH<a class=navlink href="artistprofile.cgi?id=4p1n4vV7gPt3XOvPBLGIPf" 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/7a92bfbd97b68abe581d1a229d060f1e4143542d" class="genre scanme" scan=true style="color: #f8139b; top: 711px; left: 0px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6G3KeATPar9DGXx3McoQbB", "Phantomsmasher", this);" title="e.g. Phantomsmasher "Bishop Hopping"">Phantomsmasher<a class=navlink href="artistprofile.cgi?id=7bEgQQPwi0a5h6YCkJy6cv" 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/97b1885bf99e855405ef4216eff84b6850814da0" class="genre scanme" scan=true style="color: #e3005f; top: 576px; left: 473px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4vvDfje26pIPzaoK6xCka1", "The Bureau De Change", this);" title="e.g. The Bureau De Change "Fish Bone Fingers"">The Bureau De Change<a class=navlink href="artistprofile.cgi?id=7jK16SE18gEERw3gLxSt8E" 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/2fca804d678eaeaec6961992e287279c06c2a696" class="genre scanme" scan=true style="color: #de49b4; top: 98px; left: 1009px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5Hl1Ih1FhPxSxujLsmuqQs", "DJ Bleed", this);" title="e.g. DJ Bleed "Deaf Dumb & Blind"">DJ Bleed<a class=navlink href="artistprofile.cgi?id=191uIJy5M9ic8ppLiRb2ZA" 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/dcee2504a7bc1dffd4ea620b58857d0c0e1e136c" class="genre scanme" scan=true style="color: #e42860; top: 426px; left: 417px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7iytnylpLyViDpvyIYGoH0", "Schizoid", this);" title="e.g. Schizoid "Now I Wanna Sniff Some Glue"">Schizoid<a class=navlink href="artistprofile.cgi?id=0gs9oukjBB54XvFOvkZa9z" 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/db7ab7b3d7a49bb35df6c03ce7fa4ab6c983d2c7" class="genre scanme" scan=true style="color: #f44b64; top: 265px; left: 743px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2kiaVhSJjcTWnJNiwZsjL9", "Julie D:stroy", this);" title="e.g. Julie D:stroy "Bikini Killa"">Julie D:stroy<a class=navlink href="artistprofile.cgi?id=46mcBcZzwCOycteWC27v5e" 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/33b02c579f0485ae6c208e88a8b4b174404e4e52" class="genre scanme" scan=true style="color: #b847c4; top: 522px; left: 207px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("26cRANWqfsST9PzY7daZBL", "DJ 6666", this);" title="e.g. DJ 6666 "Dead Nation"">DJ 6666<a class=navlink href="artistprofile.cgi?id=0Q3RBFgmFU1kc32k2meisC" 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/1e9a0ef08f3f3777cf410dc5e6634fd640560d8b" class="genre scanme" scan=true style="color: #e4365e; top: 466px; left: 578px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6TP2CFlfgBfqWe91nraxJd", "F_Noise", this);" title="e.g. F_Noise "Sabotage"">F_Noise<a class=navlink href="artistprofile.cgi?id=3HENstBxfCwdetJc5Pk2fP" 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/8287036f586fd66bc1ed5263797fb827a16f8f2f" class="genre scanme" scan=true style="color: #c9869c; top: 4px; left: 1400px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0Y7YVb03PjuheObs9fGML7", "DJ Mowgly", this);" title="e.g. DJ Mowgly "Cook 2"">DJ Mowgly<a class=navlink href="artistprofile.cgi?id=2h0u9IOH8KvEsOOG7y02dG" 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/799fcef7bc4fb3cbf2ab28d252ccc74516759bee" class="genre scanme" scan=true style="color: #e746a2; top: 136px; left: 792px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1jZXYQWoflyKGROJ30BZTK", "All Out Assault", this);" title="e.g. All Out Assault "Time to Stand (DJ Sniper)"">All Out Assault<a class=navlink href="artistprofile.cgi?id=0KUjd4eWgbLwZrCwVZbY53" 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/cd35cbf7c10753eebdc9c1a2887a865248cb44c9" class="genre scanme" scan=true style="color: #db5569; top: 125px; left: 1095px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1e4qhblGY57kE6k76bh8tu", "DK Dance", this);" title="e.g. DK Dance "Gapin' Above the Day Dream"">DK Dance<a class=navlink href="artistprofile.cgi?id=37N7rLGUtLTSFa3Zypu9Ot" 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/1e811d7c2a5c73bed7326b7deb1922328dede40c" class="genre scanme" scan=true style="color: #d73661; top: 330px; left: 414px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4HNoA2NZtYBvVhNSkkmjsH", "Extasick", this);" title="e.g. Extasick "Noise is Life"">Extasick<a class=navlink href="artistprofile.cgi?id=2WGdlwv5Lm40SScf1b3oWU" 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/8f36162803c007c3026bc15d1c832d6fa7f5b59f" class="genre scanme" scan=true style="color: #9e5998; top: 781px; left: 476px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3tlll0PwKlnNTKfiH2sCy3", "She Satellites", this);" title="e.g. She Satellites "Black Cyclone"">She Satellites<a class=navlink href="artistprofile.cgi?id=2pkVTJ6hiDcnmWfnEfqEE4" 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/20e7a8cbd20c67e9b93e0102f3b23402a37c8c84" class="genre scanme" scan=true style="color: #ea3a60; top: 313px; left: 693px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2xbVfguPWrlFsyswhlAwqd", "Phallus Über Alles", this);" title="e.g. Phallus Über Alles "Show Me Your Tits - Biggie Shorty Mix"">Phallus Über Alles<a class=navlink href="artistprofile.cgi?id=41XUi3Jcxcv51sOMq1d31o" 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/e5333e9c0fb72168cc0f79a00701de845f5921c3" class="genre scanme" scan=true style="color: #cc5c96; top: 349px; left: 1226px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("15GnrEdmSclk2DrhnAYAjP", "Knar", this);" title="e.g. Knar "I Tried"">Knar<a class=navlink href="artistprofile.cgi?id=3izcm7FdsTynxjEnjU7Hsx" 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/6df46cbdd7ea8140ee0a6e8f896c1969a1fb5c8f" class="genre scanme" scan=true style="color: #db3e7e; top: 336px; left: 266px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0eSJxWfFJboh6zqfDqJykG", "DHC Meinhof", this);" title="e.g. DHC Meinhof "Anarchist Revolution!!!"">DHC Meinhof<a class=navlink href="artistprofile.cgi?id=7MGJzVIGjJEeb7fno6wsF9" 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/c5049d5d08c23e55f5a041c801b50ef25e637fb7" class="genre scanme" scan=true style="color: #ed39c0; top: 318px; left: 450px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("72JAferpcHI8qtveQ6DSBh", "DJ Jesus Christ", this);" title="e.g. DJ Jesus Christ "Beat the Meat"">DJ Jesus Christ<a class=navlink href="artistprofile.cgi?id=5hx08zvX8JDHoXK5s6p0kY" 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/09186d560932a681156120d3f86da9460de92b29" class="genre scanme" scan=true style="color: #a76bae; top: 269px; left: 358px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6tTM0cyMIx0lIaW2ltCa90", "The Secret Life of Teenage Girls", this);" title="e.g. The Secret Life of Teenage Girls "Soviet Bloc Party"">The Secret Life of Teenage Girls<a class=navlink href="artistprofile.cgi?id=1M078hr0cdnW3RpSBTQAzS" 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/06e0fa52337b25acb339ace14e092e6760dd20ad" class="genre scanme" scan=true style="color: #dd3662; top: 535px; left: 828px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1IBe5O5BB1qAzFocINXeTM", "Heartworm", this);" title="e.g. Heartworm "Triplesix Is Gonna Kill Me If I Don't Finish This Song Soon"">Heartworm<a class=navlink href="artistprofile.cgi?id=1HQVnwAsikw5oSmwLRv1WV" 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/bb04714458a93540c7dfda0a3a6cc3eae3a69619" class="genre scanme" scan=true style="color: #db6b2c; top: 294px; left: 486px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1AQZEITLat5eeLyHZUZdFl", "You Love Her Coz She's Dead", this);" title="e.g. You Love Her Coz She's Dead "Lilya Forever"">You Love Her Coz She's Dead<a class=navlink href="artistprofile.cgi?id=7s38f8JamnQAx51YsYRvPN" 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/18b16f13fcce140221ff1474fdcab467ce9bc871" class="genre scanme" scan=true style="color: #d05967; top: 257px; left: 401px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4wWL4XI2BZt2Phn1YQXruz", "Babylon Disco", this);" title="e.g. Babylon Disco "Kill All Humans!"">Babylon Disco<a class=navlink href="artistprofile.cgi?id=33jZUy5ou1lEoH6MBrswdk" 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/2dd9c93549b6c9b394933dd6118e1c9f4c352fb0" class="genre scanme" scan=true style="color: #b4349f; top: 589px; left: 769px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7vuhQanvTccgtvyuWD9sPt", "Faux Pride", this);" title="e.g. Faux Pride "Holla Back Grrl"">Faux Pride<a class=navlink href="artistprofile.cgi?id=0KV2PwAD0NYp1AXbtAL3hV" 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/9ccf92e1da45b9bd4d0ff9ecb04acbcbe9570aed" class="genre scanme" scan=true style="color: #e23325; top: 352px; left: 463px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("35LnY2AEBNEsWx15LEjsFJ", "Bastards United", this);" title="e.g. Bastards United "Anti American"">Bastards United<a class=navlink href="artistprofile.cgi?id=3Fb224VD74QxSm5eO60xby" 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/6043568a2f55df41d42c3bc4dbc107c00d3c81e3" class="genre scanme" scan=true style="color: #e13db6; top: 341px; left: 79px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7AZwZuLHrk81zPzjydxZBJ", "Mind Disruption", this);" title="e.g. Mind Disruption "The Void"">Mind Disruption<a class=navlink href="artistprofile.cgi?id=3v7cktA6m7n5teQEc7EO1m" 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/86d800c7a5b8a5a99824825ed41d02eb5e87a094" class="genre scanme" scan=true style="color: #d03d32; top: 588px; left: 460px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4UX2uIPcIBDZyI9jhWbAVw", "No Brigade", this);" title="e.g. No Brigade "World Famous"">No Brigade<a class=navlink href="artistprofile.cgi?id=7npoh42DYywHkdmhiHwvNM" 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/2d9facb85bcbd77a3f3b35780bb22633ca9015f0" class="genre scanme" scan=true style="color: #e419c3; top: 364px; left: 312px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4N8WyB7Tgv6UnFe2xcE2YD", "John Merrick's Project", this);" title="e.g. John Merrick's Project "The Only Good Human"">John Merrick's Project<a class=navlink href="artistprofile.cgi?id=4y3ZcH4FQLBsQvCLm4ZEGI" 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/08a46a37c1fc255d9e000fab2601faabec410dd1" class="genre scanme" scan=true style="color: #c16ba0; top: 525px; left: 693px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("74nvpVC8D5NTil6raD5SFI", "NoCore", this);" title="e.g. NoCore "U.S. Fade Out"">NoCore<a class=navlink href="artistprofile.cgi?id=37wkm9A5oF8nVcRfUggDbl" 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 557px 16px 557px;"> <div class=canvas style="width: 384px; height: 336px; border: 1px solid gray; background: #FCFCFC; top: 64px"> <div id=nearbyitem1 preview_url="https://p.scdn.co/mp3-preview/d26352307d0460c0377d997efa77632cc191a9a2" class="genre" scan=true style="color: #d45a6e; top: 102px; left: 93px; font-size: 240%" 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="everynoise1d-digitalhardcore.html" role=button tabindex=0 onKeyDown="kb(event);" onclick="event.stopPropagation();" >»</a> </div> <div id=nearbyitem2 preview_url="https://p.scdn.co/mp3-preview/c8cf98befeca6f8584324f5ad74bf9fa2286de9b" class="genre" scan=true style="color: #c96792; top: 131px; left: 300px; font-size: 111%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5taH4EtIKoVksnO8zomhrk", "breakcore", this);" title="e.g. Ladyscraper "My Gums Bleed For This Type Of Shit"">breakcore<a class=navlink href="engenremap-breakcore.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: 18px; left: 114px; font-size: 105%" 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/4f91393173d530eb4d347f7c281c50ee25a3d68f" class="genre" scan=true style="color: #ce6e95; top: 131px; left: 149px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0BvNSKAxmJ9lQtAuANbYEu", "glitchbreak", this);" title="e.g. Harmful Logic "100PERCENTFEELINGS"">glitchbreak<a class=navlink href="engenremap-glitchbreak.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/34ea920800494cea6df2dbcda64aab915e53b749" class="genre" scan=true style="color: #d97065; top: 0px; left: 75px; font-size: 102%" 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=nearbyitem6 preview_url="https://p.scdn.co/mp3-preview/e775a13fabb5c7172b542fe7b7aabd2005c166db" class="genre" scan=true style="color: #c16660; top: 77px; left: 154px; font-size: 102%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1d3iQh4fTm5D6iRtgrZPZ9", "industrial rock", this);" title="e.g. KMFDM "Megalomaniac"">industrial rock<a class=navlink href="engenremap-industrialrock.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/38a3538a05ec8f832f9aadf25b9ba69bff7883cf" class="genre" scan=true style="color: #c8695c; top: 168px; left: 0px; font-size: 101%" 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=nearbyitem8 preview_url="https://p.scdn.co/mp3-preview/be1f9feb9b45448ca9c8aa51d1ad547841f590ba" class="genre" scan=true style="color: #cd65a3; top: 143px; left: 117px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("5UNItgrSfVfaFOimnZQTTK", "extratone", this);" title="e.g. Coakira "Balalaika"">extratone<a class=navlink href="engenremap-extratone.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/4922b7d1da8aee837d5a53101438979e73ed1ef8" class="genre" scan=true style="color: #c3665a; top: 195px; left: 135px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("72f3lxZoBqtgNasIAopOVy", "synth punk", this);" title="e.g. Powerplant "Dungen"">synth punk<a class=navlink href="engenremap-synthpunk.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/c3547dec1f0964a59135d280e2a028ad3a4c5e13" class="genre" scan=true style="color: #d76476; top: 90px; left: 230px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("67eouqMP5Y40ZqmzeZPswm", "mashcore", this);" title="e.g. Shoebill "improvised mashcore"">mashcore<a class=navlink href="engenremap-mashcore.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/16de328e5a02c06dc8e4ce5b3117f468816e0173" class="genre" scan=true style="color: #c17754; top: 156px; left: 92px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1d57cUhNz6lK3HrJodNwJi", "gotico brasileiro", this);" title="e.g. 1983 "Baile de Máscaras"">gotico brasileiro<a class=navlink href="engenremap-goticobrasileiro.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/ce17cd93ba8b9eff2d5e5514300ed9d086cae67e" class="genre" scan=true style="color: #c26646; top: 242px; left: 69px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7o97NghWle7U2C2xL6N1oh", "korean metal", this);" title="e.g. Remnants of the Fallen "Hel"">korean metal<a class=navlink href="engenremap-koreanmetal.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/e15e677d91032f9a526b31e885c7fc06456a38e6" class="genre" scan=true style="color: #c97453; top: 31px; left: 68px; font-size: 100%" 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=nearbyitem14 preview_url="https://p.scdn.co/mp3-preview/80325276de481e327df350977113bef467bba1ac" class="genre" scan=true style="color: #d1614b; top: 300px; left: 145px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4QPKK7fJ1b6IAZEiJ02nkl", "alternative hardcore", this);" title="e.g. On The Outside "Breathe Again"">alternative hardcore<a class=navlink href="engenremap-alternativehardcore.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/5efe16cd96fbb2c320332c1ba8f120909db22d21" class="genre" scan=true style="color: #d65c23; top: 254px; left: 14px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7CpbhqKUedOIrcvc94p60Y", "alternative metal", this);" title="e.g. Drowning Pool "Bodies"">alternative metal<a class=navlink href="engenremap-alternativemetal.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/9897c707fbd289ad6bfb5118a146e22620857e5c" class="genre" scan=true style="color: #bd6e6c; top: 266px; left: 75px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4eG3baYLqVE2469qS6C7fI", "american post-punk", this);" title="e.g. Lithics "Excuse Generator"">american post-punk<a class=navlink href="engenremap-americanpostpunk.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/65c332d8b05c373ab3bbee46ceafe2d1a55059da" class="genre" scan=true style="color: #b9792d; top: 187px; left: 92px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("3exMduVgbfvLO7FiKgO3tk", "anime", this);" title="e.g. 亜咲花 "SHINY DAYS"">anime<a class=navlink href="engenremap-anime.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/a6fab079a9a22597da45f6fb0fbea49ce1708653" class="genre" scan=true style="color: #bc7740; top: 168px; left: 131px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7DpjzwMD1nsdcIMyUR47ZQ", "anime cv", this);" title="e.g. 双海真美 (CV.下田麻美) "フリースタイル・トップアイドル!"">anime cv<a class=navlink href="engenremap-animecv.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/d8abf32593ad76e1b03edca8f011c0ed93ab191b" class="genre" scan=true style="color: #b17d69; top: 214px; left: 70px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6n2qxYPFTwsk1kQbhh9mFf", "anime game", this);" title="e.g. 愛宕(CV.茅野愛衣) "逆鱗乱舞!!"">anime game<a class=navlink href="engenremap-animegame.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/6754ee8bd8a530a66a4b8b919e4e457af00a0ef6" class="genre" scan=true style="color: #c07730; top: 226px; left: 73px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4YqMZjyquThffMA5M0fu1m", "bogor indie", this);" title="e.g. Hidden Message "Rasa Ini Takkan Pernah Mati"">bogor indie<a class=navlink href="engenremap-bogorindie.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/c21f7ad51707060d36fea6343da63bba6a179aa6" class="genre" scan=true style="color: #cf643b; top: 281px; left: 13px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7AYQD0WxGhSgZpCYm8qI6v", "bolivian metal", this);" title="e.g. Track "Ave Fenix"">bolivian metal<a class=navlink href="engenremap-bolivianmetal.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 557px 16px 557px;"> <div class=canvas style="width: 384px; height: 339px; border: 1px solid gray; background: #404040; top: 64px"> <div id=mirroritem1 preview_url="https://p.scdn.co/mp3-preview/891c064fab1efb9369546620b34805390f101d11" class="genre" scan=true style="color: #b0cb68; top: 154px; left: 102px; font-size: 160%" 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=mirroritem2 preview_url="https://p.scdn.co/mp3-preview/2b89aeb19f1f752d910251a10330ae29c9cae546" class="genre" scan=true style="color: #b7c871; top: 123px; left: 203px; font-size: 133%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("12IvB4UVKYAjqgzoEcpJvL", "malawian folk", this);" title="e.g. Namadingo "Maury"">malawian folk<a class=navlink href="engenremap-malawianfolk.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/e233266f22c39ffd5a6ef48ab1fa77ebba3d8ff0" class="genre" scan=true style="color: #b1ca77; top: 0px; left: 102px; font-size: 129%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("1hOo75JYtzwnTAphgSXKCG", "barnemusikk", this);" title="e.g. Anne Brændeland "Ole Brumm"">barnemusikk<a class=navlink href="engenremap-barnemusikk.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/ab5b0a8cb3d14289828b6d69088e40653d9ee026" class="genre" scan=true style="color: #acc56b; top: 173px; left: 203px; font-size: 127%" 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=mirroritem5 preview_url="https://p.scdn.co/mp3-preview/d5b41a06d3817dde848e326abd437fcbed63efb2" class="genre" scan=true style="color: #b2c96c; top: 95px; left: 193px; font-size: 123%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0dTDQ5a34LqYqqPgFPckO1", "muzika l'yeladim", this);" title="e.g. Effi Ben Israel "אני"">muzika l'yeladim<a class=navlink href="engenremap-muzikalyeladim.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/624070199ae13e2ebca9f85d96d4d91a4e82feac" class="genre" scan=true style="color: #b6ca6f; top: 265px; left: 112px; font-size: 120%" 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=mirroritem7 preview_url="https://p.scdn.co/mp3-preview/42263de837e848d832d010b2c98457c09427bf3e" class="genre" scan=true style="color: #bac998; top: 139px; left: 104px; font-size: 119%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0zXR77X03NKuehNjDpiPxm", "musica andina", this);" title="e.g. Mallku De Los Andes "Flor Hermosa"">musica andina<a class=navlink href="engenremap-musicaandina.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/cd0362aa3cba814eb3bcfcfdae91fda4a5a77eb9" class="genre" scan=true style="color: #b6cb99; top: 214px; left: 214px; font-size: 116%" 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=mirroritem9 preview_url="https://p.scdn.co/mp3-preview/a73a0b78d5d6dd78170779e4c249e4839b26ceb4" class="genre" scan=true style="color: #b1cb76; top: 228px; left: 253px; font-size: 115%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6YRoYR5IShPHP83B17ffTu", "musica nublensina", this);" title="e.g. Victor Jara "El Cigarrito - 2001 Digital Remaster"">musica nublensina<a class=navlink href="engenremap-musicanublensina.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/28f343a00399636b7c6b240951ceaa1473b05079" class="genre" scan=true style="color: #b4cb89; top: 24px; left: 185px; font-size: 114%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("4TJZTIVcuAHNuVD2lZRSDo", "musica infantil catala", this);" title="e.g. Pep Puigdemont "Sol solet"">musica infantil catala<a class=navlink href="engenremap-musicainfantilcatala.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/d79ed2bb406b649f01532165d4bd7163fd1563db" class="genre" scan=true style="color: #aec86e; top: 267px; left: 42px; font-size: 113%" 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=mirroritem12 preview_url="https://p.scdn.co/mp3-preview/06ef80e38a94630fb30219fee6581702d9cea2df" class="genre" scan=true style="color: #afce74; top: 186px; left: 0px; font-size: 109%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("70ig40aEN4esNMLSOAQWlR", "deep brazilian pop", this);" title="e.g. Zé Miguel Wisnik "Saudade da Saudade"">deep brazilian pop<a class=navlink href="engenremap-deepbrazilianpop.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/0f7b10d57cb86cfa12905dc152cffc21fd5bcf44" class="genre" scan=true style="color: #b4c568; top: 82px; left: 224px; font-size: 107%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("7yGVXyBQBqzjCMM45XN82t", "barnalog", this);" title="e.g. Olga Guðrún Árnadóttir "Ryksugulag"">barnalog<a class=navlink href="engenremap-barnalog.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/2e2545e44d68612a1ceeafde889349a8ef7a69bb" class="genre" scan=true style="color: #b7c978; top: 228px; left: 110px; font-size: 107%" 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 id=mirroritem15 preview_url="https://p.scdn.co/mp3-preview/dba21a2da14b7585d5400434a052617b96889c85" class="genre" scan=true style="color: #b4c998; top: 37px; left: 159px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("6RAt5KUqAzW3XT8pVHTuTT", "ainu folk", this);" title="e.g. OKI "Yaykatekar Dub (Love Dub)"">ainu folk<a class=navlink href="engenremap-ainufolk.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/52c149d9b73b71494b3f754c1848606506739f24" class="genre" scan=true style="color: #b1cc63; top: 173px; left: 31px; font-size: 104%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("0BahlpByK40AGq3eoOQfp2", "trova mexicana", this);" title="e.g. Adrián Gil "¿sabes?"">trova mexicana<a class=navlink href="engenremap-trovamexicana.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/2ef33e2d148466583872acd02d3213bddd92d367" class="genre" scan=true style="color: #adc783; top: 110px; left: 300px; font-size: 103%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2qWK67avb4EndczgysMkxu", "barnmusik", this);" title="e.g. Truls Söderman Carlberg "Du käre lille snickerbo"">barnmusik<a class=navlink href="engenremap-barnmusik.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/bdf25230c3e8c0b867c4c162570debb859618805" class="genre" scan=true style="color: #b0ca73; top: 253px; left: 26px; font-size: 102%" 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=mirroritem19 preview_url="https://p.scdn.co/mp3-preview/3ac485fa92732adebc463f4077b5604cb87464cf" class="genre" scan=true style="color: #b3c56d; top: 202px; left: 8px; font-size: 100%" role=button tabindex=0 onKeyDown="kb(event);" onclick="playx("2vaa0nnDnNTlxCh7fCmjsr", "shanty", this);" title="e.g. Sean Dagher "Leave Her Johnny"">shanty<a class=navlink href="engenremap-shanty.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/1f3cdd51f44d4dd65628f01531f0f04000107ab2" class="genre" scan=true style="color: #accc75; top: 300px; left: 81px; font-size: 100%" 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></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 557px; width: 384px; 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>