<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" lang="en">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" lang="en">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" lang="en">
<![endif]-->
<!--[if !(IE 6) & !(IE 7) & !(IE 8)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>
Documentary Evidence | a mute records blog by Mat Smith	</title>
<link rel="profile" href="https://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="https://s2.wp.com/wp-content/themes/pub/twentyeleven/style.css?m=1741693348i&amp;ver=20190507" />
<link rel="pingback" href="https://429harrowroad.com/xmlrpc.php">
<!--[if lt IE 9]>
<script src="https://s2.wp.com/wp-content/themes/pub/twentyeleven/js/html5.js?m=1394055389i&amp;ver=3.7.0" type="text/javascript"></script>
<![endif]-->
<meta name='robots' content='max-image-preview:large' />

<!-- Async WordPress.com Remote Login -->
<script id="wpcom_remote_login_js">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}

// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}

		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );

			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src = '/remote-login.php?wpcom_remote_login=validate'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
					+ '//' + window.location.hostname
					+ '&postid=2176'
					+ '&is_singular=';
				document.body.appendChild( script );
			}

			return;
		}

		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
			return;
		}

		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );

			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );

			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';

			return;
		}

		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );

			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}

			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}

			if ( private_window ) {
				console.log( 'private window' );
				return;
			}

			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );

			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';

			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );

			document.body.appendChild( iframe );
		}

		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );

// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly80MjloYXJyb3dyb2FkLmNvbQ%3D%3D"
		+ "&wpcomid=65288150"
		+ "&time=" + Math.floor( Date.now() / 1000 );
	document.body.appendChild( iframe );
}, false );
</script>
<link rel='dns-prefetch' href='//s2.wp.com' />
<link rel='dns-prefetch' href='//s1.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="Documentary Evidence &raquo; Feed" href="https://429harrowroad.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Documentary Evidence &raquo; Comments Feed" href="https://429harrowroad.com/comments/feed/" />
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='/_static/??-eJxtzE0OQDAQQOELqUEIFuIsUiXDdNqYNuL2/mJn+SUvD3avtONgOICNylOckQUIVyOwmOAHvapHqRZJ4D//wtcgkcG6MdL1QJ6QMRglenNEn49719sur+uszauyKZYTbsEzZw==&cssminify=yes' type='text/css' media='all' />
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}

/*# sourceURL=/wp-content/plugins/gutenberg-core/v22.9.0/build/styles/block-library/common.min.css */
</style>
<style id="wp-block-embed-inline-css">
.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-height:240px;min-width:320px}.wp-block-group.is-layout-flex .wp-block-embed{flex:1 1 0%;min-width:0}.wp-block-embed{overflow-wrap:break-word}.wp-block-embed :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}
/*# sourceURL=https://s0.wp.com/wp-content/plugins/gutenberg-core/v22.9.0/build/styles/block-library/embed/style.min.css */
</style>
<style id="wp-block-embed-theme-inline-css">
.wp-block-embed :where(figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed :where(figcaption){color:#ffffffa6}.wp-block-embed{margin:0 0 1em}
/*# sourceURL=https://s0.wp.com/wp-content/plugins/gutenberg-core/v22.9.0/build/styles/block-library/embed/theme.min.css */
</style>
<style id="wp-block-image-inline-css">
.wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;backdrop-filter:blur(16px) saturate(180%);background-color:#5a5a5a40;border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto #5a5a5a40;outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:#5a5a5a40;border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .wp-lightbox-close-button{align-items:center;cursor:pointer;display:flex;font-family:inherit;gap:8px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 4px;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .wp-lightbox-close-button:focus,.wp-lightbox-overlay .wp-lightbox-close-button:hover,.wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .wp-lightbox-close-button:has(.wp-lightbox-close-text:not([hidden])) .wp-lightbox-close-icon svg{height:1em;width:1em}.wp-lightbox-overlay .wp-lightbox-close-icon svg{display:block}.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{align-items:center;bottom:16px;cursor:pointer;display:flex;font-family:inherit;gap:4px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 8px;position:absolute;z-index:2000002}.wp-lightbox-overlay .wp-lightbox-navigation-button-next[hidden],.wp-lightbox-overlay .wp-lightbox-navigation-button-prev[hidden]{display:none}@media (min-width:960px){.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{bottom:50%;transform:translateY(-50%)}}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background),.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background){background:none;border:none;padding:0 8px}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg{display:block;height:1.5em;width:1.5em}.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{left:calc(env(safe-area-inset-left) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-button-next{right:calc(env(safe-area-inset-right) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-icon svg{vertical-align:middle}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:2000001}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}
/*# sourceURL=https://s0.wp.com/wp-content/plugins/gutenberg-core/v22.9.0/build/styles/block-library/image/style.min.css */
</style>
<style id="wp-block-image-theme-inline-css">
:root :where(.wp-block-image figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme :root :where(.wp-block-image figcaption){color:#ffffffa6}.wp-block-image{margin:0 0 1em}
/*# sourceURL=https://s0.wp.com/wp-content/plugins/gutenberg-core/v22.9.0/build/styles/block-library/image/theme.min.css */
</style>
<style id="wp-block-paragraph-inline-css">
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
/*# sourceURL=https://s0.wp.com/wp-content/plugins/gutenberg-core/v22.9.0/build/styles/block-library/paragraph/style.min.css */
</style>
<style id="wp-block-library-inline-css-extra">
.has-text-align-justify {
	text-align:justify;
}
.has-text-align-justify{text-align:justify;}
/*# sourceURL=wp-block-library-inline-css */
</style>

<style id="classic-theme-styles-inline-css">
.wp-block-button__link{background-color:#32373c;border-radius:9999px;box-shadow:none;color:#fff;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-file__button{background:#32373c;color:#fff}.wp-block-accordion-heading{margin:0}.wp-block-accordion-heading__toggle{background-color:inherit!important;color:inherit!important}.wp-block-accordion-heading__toggle:not(:focus-visible){outline:none}.wp-block-accordion-heading__toggle:focus,.wp-block-accordion-heading__toggle:hover{background-color:inherit!important;border:none;box-shadow:none;color:inherit;padding:var(--wp--preset--spacing--20,1em) 0;text-decoration:none}.wp-block-accordion-heading__toggle:focus-visible{outline:auto;outline-offset:0}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v22.9.0/build/styles/block-library/classic.min.css */
</style>

<link crossorigin='anonymous' rel='stylesheet' id='all-css-8-1' href='/_static/??-eJx9jEEOAiEQBD/kQECjeDC+ZWEnijIwYWA3/l72op689KFTVXplCCU3zE1z6reYRYfiUwlP0VYZpwxIJE4IFRd10HOU9iFA2iuhCiI7/ROiDt9WxfETT20jCOc4YUIa2D9t5eGA91xRBMZS7ATtPkTZvCtdzNEZt7f2fHq8Afl7R7w=&cssminify=yes' type='text/css' media='all' />
<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #fff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--blue: #1982d1;--wp--preset--color--dark-gray: #373737;--wp--preset--color--medium-gray: #666;--wp--preset--color--light-gray: #e2e2e2;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}.wp-block-button{--wp--preset--dimension--25: 25%;--wp--preset--dimension--50: 50%;--wp--preset--dimension--75: 75%;--wp--preset--dimension--100: 100%;}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-blue-color{color: var(--wp--preset--color--blue) !important;}.has-dark-gray-color{color: var(--wp--preset--color--dark-gray) !important;}.has-medium-gray-color{color: var(--wp--preset--color--medium-gray) !important;}.has-light-gray-color{color: var(--wp--preset--color--light-gray) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-blue-background-color{background-color: var(--wp--preset--color--blue) !important;}.has-dark-gray-background-color{background-color: var(--wp--preset--color--dark-gray) !important;}.has-medium-gray-background-color{background-color: var(--wp--preset--color--medium-gray) !important;}.has-light-gray-background-color{background-color: var(--wp--preset--color--light-gray) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-blue-border-color{border-color: var(--wp--preset--color--blue) !important;}.has-dark-gray-border-color{border-color: var(--wp--preset--color--dark-gray) !important;}.has-medium-gray-border-color{border-color: var(--wp--preset--color--medium-gray) !important;}.has-light-gray-border-color{border-color: var(--wp--preset--color--light-gray) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
/*# sourceURL=global-styles-inline-css */
</style>

<link crossorigin='anonymous' rel='stylesheet' id='all-css-10-1' href='/_static/??-eJyNj+8KwjAMxF/IGvwzhx/EZ9lqVrulaVlSx97eCgoTYfgtv3B33MGUjI2syAp6x4ACKbegU3nMSPhAhpaiHWRrRTbwh1x0JjRTsjH8eEI2ibLzLDBiyXXldFBUC1wzOYymtGnUR/4C01HjxzVrj5oaO7wZJDOEeMtUJnjuPHtFI3aMRJ9ly1Wv5Gu47OrqsK/Pp2PVPwEJU3bA&cssminify=yes' type='text/css' media='all' />
<style id="jetpack-global-styles-frontend-style-inline-css">
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
/*# sourceURL=jetpack-global-styles-frontend-style-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-12-1' href='/_static/??-eJyNjcsKAjEMRX/IGgaqgwvxU6TTlDZjmhTTIv69D9yIG3f3wOUcuDUXVXqSDnW4xiOTGKyptxAvHwYbAlVxcDKwEq4JA+L9PUnyNppt4G/RmSTCMogRTCMFdqxZ7Qt+lL2k+owXD5l1Cfw6nOpxmme/837aH9YHfvpKpw==&cssminify=yes' type='text/css' media='all' />
<script id="wpcom-actionbar-placeholder-js-extra">
var actionbardata = {"siteID":"65288150","postID":"0","siteURL":"https://429harrowroad.com","xhrURL":"https://429harrowroad.com/wp-admin/admin-ajax.php","nonce":"2deb5990ad","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https://s0.wp.com/wp-content/js/wpcom-proxy-request.js?m=1513050504i&amp;ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your \u003Ca href=\"https://wordpress.com/reader\"\u003EReader\u003C/a\u003E","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","shortLinkCopied":"Shortlink copied to clipboard."}};
//# sourceURL=wpcom-actionbar-placeholder-js-extra
</script>
<script id="jetpack-mu-wpcom-settings-js-before">
var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https://s1.wp.com/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/sun/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/"};
//# sourceURL=jetpack-mu-wpcom-settings-js-before
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/js/rlt-proxy.js?m=1720530689i'></script>
<script id="rlt-proxy-js-after">
	rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
//# sourceURL=rlt-proxy-js-after
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://429harrowroad.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='https://wp.me/4pWqG' />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Documentary Evidence" />
<meta property="og:description" content="a mute records blog by Mat Smith" />
<meta property="og:url" content="https://429harrowroad.com/" />
<meta property="og:site_name" content="Documentary Evidence" />
<meta property="og:image" content="https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=147" />
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:creator" content="@DocEvidence" />
<meta name="twitter:site" content="@DocEvidence" />

<!-- End Jetpack Open Graph Tags -->
<link rel='openid.server' href='https://429harrowroad.com/?openidserver=1' />
<link rel='openid.delegate' href='https://429harrowroad.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="https://429harrowroad.com/osd.xml" title="Documentary Evidence" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>		<style type="text/css">
			.recentcomments a {
				display: inline !important;
				padding: 0 !important;
				margin: 0 !important;
			}

			table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
				border: 0px;
				margin: 0;
			}

			table.recentcommentsavatartop a, table.recentcommentsavatarend a {
				border: 0px !important;
				background-color: transparent !important;
			}

			td.recentcommentsavatarend, td.recentcommentsavatartop {
				padding: 0px 0px 1px 0px;
				margin: 0px;
			}

			td.recentcommentstextend {
				border: none !important;
				padding: 0px 0px 2px 10px;
			}

			.rtl td.recentcommentstextend {
				padding: 0px 10px 2px 0px;
			}

			td.recentcommentstexttop {
				border: none;
				padding: 0px 0px 0px 10px;
			}

			.rtl td.recentcommentstexttop {
				padding: 0px 10px 0px 0px;
			}
		</style>
		<meta name="description" content="a mute records blog by Mat Smith" />
<link rel="icon" href="https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=32" sizes="32x32" />
<link rel="icon" href="https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=147" sizes="192x192" />
<link rel="apple-touch-icon" href="https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=147" />
<meta name="msapplication-TileImage" content="https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=147" />
			<link rel="stylesheet" id="custom-css-css" type="text/css" href="https://s0.wp.com/?custom-css=1&#038;csblog=4pWqG&#038;cscache=6&#038;csrev=15" />
			<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-5' href='/_static/??-eJydjssKwjAQRX/IdIyCXYmfIulkKNNOHmQSin9vxQe4EXV5LpfDgSUbTLFSrBCaydJGjgoT1exwfjBoi3DmiDBIwllBF85UOlTdwNeCkHwTUkBXUlOS1+c5/Oi7BzUWv+KgWDhXTuv3jbrA8c/QykLejE6EyuUT3fyncLR9bw92v7W76QpPRIHJ&cssminify=yes' type='text/css' media='all' />

</head>

<body class="home blog wp-embed-responsive wp-theme-pubtwentyeleven customizer-styles-applied single-author two-column right-sidebar jetpack-reblog-enabled">
<div class="skip-link"><a class="assistive-text" href="#content">Skip to primary content</a></div><div class="skip-link"><a class="assistive-text" href="#secondary">Skip to secondary content</a></div><div id="page" class="hfeed">
	<header id="branding">
			<hgroup>
				<h1 id="site-title"><span><a href="https://429harrowroad.com/" rel="home">Documentary Evidence</a></span></h1>
				<h2 id="site-description">a mute records blog by Mat Smith</h2>
			</hgroup>

						<a href="https://429harrowroad.com/">
									<img src="https://429harrowroad.com/wp-content/uploads/2018/10/cropped-siliconteens2-copy.jpg" width="1000" height="288" alt="Documentary Evidence" />
								</a>
			
									<form method="get" id="searchform" action="https://429harrowroad.com/">
		<label for="s" class="assistive-text">Search</label>
		<input type="text" class="field" name="s" id="s" placeholder="Search" />
		<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
	</form>
			
			<nav id="access">
				<h3 class="assistive-text">Main menu</h3>
				<div class="menu"><ul>
<li class="current_page_item"><a href="https://429harrowroad.com/">Home</a></li><li class="page_item page-item-1"><a href="https://429harrowroad.com/about/">About Documentary Evidence</a></li>
<li class="page_item page-item-1894"><a href="https://429harrowroad.com/muteresponse/">MuteResponse</a></li>
<li class="page_item page-item-1891"><a href="https://429harrowroad.com/stumm433-blog/">STUMM433 Blog</a></li>
</ul></div>
			</nav><!-- #access -->
	</header><!-- #branding -->


	<div id="main">

		<div id="primary">
			<div id="content" role="main">

			
							<nav id="nav-above">
				<h3 class="assistive-text">Post navigation</h3>
				<div class="nav-previous"><a href="https://429harrowroad.com/page/2/" ><span class="meta-nav">&larr;</span> Older posts</a></div>
				<div class="nav-next"></div>
			</nav><!-- #nav-above -->
			
				
					
	<article id="post-2176" class="post-2176 post type-post status-publish format-standard hentry category-interviews tag-daniel-miller tag-dave-ball tag-depeche-mode tag-fad-gadget tag-frank-tovey tag-leeds tag-marc-almond tag-mute tag-mute-records tag-silicon-teens tag-soft-cell tag-some-bizarre tag-the-normal">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/" rel="bookmark">Dave Ball (2019&nbsp;Interview)</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/" title="19:08" rel="bookmark"><time class="entry-date" datetime="2025-11-13T19:08:02+00:00">November 13, 2025</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/#respond"><span class="leave-reply">Reply</span></a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			<div class="wp-block-image">
<figure class="aligncenter size-large"><img data-attachment-id="2175" data-permalink="https://429harrowroad.com/dave-ball-1-high-res-credit-mike-owen/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2025/11/dave-ball-1-high-res-credit-mike-owen.jpg" data-orig-size="3680,2456" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;5.6&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;NIKON D800&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1618926110&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;85&quot;,&quot;iso&quot;:&quot;640&quot;,&quot;shutter_speed&quot;:&quot;0.008&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="dave ball 1 (high res, credit mike owen)" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2025/11/dave-ball-1-high-res-credit-mike-owen.jpg?w=584" width="1024" height="683" src="https://429harrowroad.com/wp-content/uploads/2025/11/dave-ball-1-high-res-credit-mike-owen.jpg?w=1024" alt="" class="wp-image-2175" srcset="https://429harrowroad.com/wp-content/uploads/2025/11/dave-ball-1-high-res-credit-mike-owen.jpg?w=1024 1024w, https://429harrowroad.com/wp-content/uploads/2025/11/dave-ball-1-high-res-credit-mike-owen.jpg?w=2048 2048w, https://429harrowroad.com/wp-content/uploads/2025/11/dave-ball-1-high-res-credit-mike-owen.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2025/11/dave-ball-1-high-res-credit-mike-owen.jpg?w=300 300w, https://429harrowroad.com/wp-content/uploads/2025/11/dave-ball-1-high-res-credit-mike-owen.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2025/11/dave-ball-1-high-res-credit-mike-owen.jpg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Dave Ball (photo: Mike Evans)</figcaption></figure>
</div>


<p class="MsoNormal wp-block-paragraph"><em>On 9 February 2019, I had my one and only conversation with <strong>Soft Cell</strong>’s <strong>Dave Ball</strong>. The intention was to use this in a project I was working on at the time that ultimately never got finished.</em></p>



<p class="MsoNormal wp-block-paragraph"><em>On the sad occasion of Ball’s passing, I decided to revisit the conversation. I remember it was a Saturday afternoon, and took place during the halftime break of a football match he was watching on television. This was before I regularly used video conferencing for music interviews and so I just called the mobile number that his PR contact had passed over to me.</em></p>



<p class="MsoNormal wp-block-paragraph"><strong>On Frank Tovey and Leeds Polytechnic</strong></p>



<p class="MsoNormal wp-block-paragraph">I knew <strong>Frank Tovey</strong> before he started <strong>Fad Gadget</strong>. He was a student at Leeds Poly. I was in the first year and he was in the third year. This was 1977, when I joined.</p>



<p class="MsoNormal wp-block-paragraph">The new kids used to hang out with the older students, and I remember Frank being a performance artist and very intense guy. He was southern, from London, and there was a North-South divide among the students. That really pissed him off. I used to see him around Leeds Poly a lot. There was one performance he did called <em>Berg</em>, which I can vaguely remember going along to watch.</p>



<p class="MsoNormal wp-block-paragraph">There was a small recording room at Leeds Poly. It was mostly designed for people that studied performance art to make soundtracks. Before I got a synthesiser, I used to muck about in there with a guitar and an echo chamber. And one day I was in there and there was an Crumar Compac electric piano. I thought, ‘Fucking hell, I’m going to have a fiddle around with it,’ and I put it through my effects pedals and recorded some bits and then put the piano back to how I’d found it.</p>



<p class="MsoNormal wp-block-paragraph">Frank heard what I’d been doing and said, ‘Where did you get that keyboard sound from?’ And I said, “Oh, it was from this electric piano that was in the studio.’ And he said, ‘That’s my keyboard! You never fucking asked me if you could use it!’ He hated me for a while because of that. We didn’t really hit it off, and I imagine it was was because I’d used his electric piano.</p>



<p class="MsoNormal wp-block-paragraph">He was probably the reason I bought a synthesiser because I thought, ‘I won’t bother using his one again!’ It pricked up my ears to messing about with electronic music.</p>



<p class="MsoNormal wp-block-paragraph"><strong>On performance art and the origins of Soft Cell</strong></p>



<p class="MsoNormal wp-block-paragraph">Leeds Poly was very encouraging of people who wanted to do performance art as opposed to acting. Quite a lot of the lecturers there did performance art. I don’t know what you would call it – it was radically different theatre, using your bodies as art, almost like living human sculptures. I mean, I was never that much interested in it.</p>



<p class="MsoNormal wp-block-paragraph">I started working with <strong>Marc Almond</strong> at Leeds just after I got my synthesiser. He’d heard me doing these bleeps and sounds, and he asked me if I do some music to go with his performances. And so, originally, I was just doing the sounds for Marc’s performance art pieces, and then that evolved into Soft Cell.</p>



<p class="MsoNormal wp-block-paragraph">It was mostly just sounds. There were a few songs in these early performances of Marc’s. I was writing these funny little quirky songs at the time. Marc heard some, and he said, ‘Can I have a go at singing some of these?’ And I said, ‘Yeah. Why not?’</p>



<p class="MsoNormal wp-block-paragraph">This developed, and it sounded much better with him singing than me. I wasn’t a singer. And then he said, ‘Can I write some lyrics? Some new ones?’ And I said, ‘Of course,’ so then the relationship developed as a writing partnership. And then we talked about calling it something, and it became Soft Cell. It was The Soft Cell, originally, but we decided to drop The.</p>



<p class="MsoNormal wp-block-paragraph"><strong>On his first synth</strong></p>



<p class="MsoNormal wp-block-paragraph">It was a Mini Korg 800DV. I still have it. I got it just after I’d started at Leeds Poly.</p>



<p class="MsoNormal wp-block-paragraph">Before I got it, it had belonged to the drummer out of the band Jethro Tull. It’s quite ironic, really, because Marc’s been working with Ian Anderson, the singer from Jethro Tull. I grew up in Blackpool, and Ian’s also from Blackpool. That’s where I found the synthesiser, in a music shop in Blackpool.</p>



<p class="MsoNormal wp-block-paragraph">It cost me £400 second-hand, which was a lot of money. My dad had just died and I&#8217;d been left some money. Originally I’d played guitar but I wasn’t very good, but then I heard Kraftwerk, so I did a part exchange for this synth with my Fender Telecaster guitar. I lugged it back to Leeds and it was a it was a permanent feature in the little sound recording room. I mastered how to use that synth over the next few weeks.</p>



<p class="MsoNormal wp-block-paragraph"><strong>On Mute Records</strong></p>



<p class="MsoNormal wp-block-paragraph">Apart from seeing Frank’s performance of <em>Berg</em>, the next thing I remember about him was a post-punk college band, and he was the singer. I can’t remember the name. There was a few of them in the band, and they were mostly the London students. They did a couple of shows. They weren’t that good. I remember saying to Frank before he went on, ‘Are you nervous?’ And he just glared at me and said, ‘Fuck off!’</p>



<p class="MsoNormal wp-block-paragraph">Marc kept in touch with him. After he’d left Leeds, we heard that he’d put a record out with this new label called Mute. This was ‘Back To Nature’. Marc and I heard that and thought it was brilliant.</p>



<p class="MsoNormal wp-block-paragraph">There used to be a punk club in Leeds called The Warehouse, where loads of really amazing bands used to play and I saw tons of stuff there. Frank did a gig as Fad Gadget. He’d totally gone away from the New Wave band he’d been singing with at Leeds. He had his keyboard, and he was wearing what looked like a karate outfit. He had this microphone which was plugged into a length of grey plastic drain pipe. He was shouting into it and he was jumping up and down on his keyboard and throwing himself around. He was like an electronic Iggy Pop. He was quite wiry, and tall, and sinewy, so he was very agile, and very fit. And that was a great performance. That was one of his first gigs in Leeds as Fad Gadget. It was the only time I ever saw him live.</p>



<p class="MsoNormal wp-block-paragraph">Marc had given Frank a Soft Cell demo, and asked if he could pass it on to <strong>Daniel Miller</strong> at <strong>Mute</strong>. We&#8217;d heard his single as <strong>The Normal</strong>, and then we’d heard ‘Back To Nature’. He did ‘Ricky’s Hand’ with Frank, and then Daniel had done the <strong>Silicon Teens</strong> album. We thought, ‘This guy sounds fantastic!’</p>



<p class="MsoNormal wp-block-paragraph">It was just before <strong>Depeche Mode</strong> signed to Mute. So we said to <strong>Some Bizarre</strong>, who we were working with, ‘Can we get Daniel to produce Soft Cell?’ And because of that we did end up working with Daniel. We did ‘Memorabilia’, our first proper single, with Daniel. And the original demo of ‘Tainted Love’ was done with him. We did a load of backing tracks with with him for our live shows at the time, which people probably didn’t know he’d worked on with us.</p>



<p class="MsoNormal wp-block-paragraph">When we signed to Phonogram, they decided they wanted to get a different producer in, which was Mike Thorne. Daniel was great, but I think he was a bit too techno for us at the time, with the benefit of hindsight. His style was suited to Depeche Mode with that sequenced techno-pop sound. Whereas with Soft Cell, it was still meant to sound like a group – it was just a group that was made up from synthesisers.</p>



<p class="MsoNormal wp-block-paragraph">I don’t know – our sound was, I don’t like using the word, but more organic. The Human League were using Roland Micro Composer. Daniel was using an ARP sequencer. They were very machine-driven productions. We used a drum machine, but I just used to have to play it as tight as possible. You can hear it. It&#8217;s very tight, but I still had to play it by hand. It’s like having a bass player playing the bass, but instead of playing a guitar, they’re playing the bass on the keyboard, and still using their hands.</p>



<p class="MsoNormal wp-block-paragraph"><em>In memory of Dave Ball, 3 May 1959 – 22 October 2025.</em></p>



<p class="MsoNormal wp-block-paragraph"><em>With thanks to Debbie, Barbara and Paul.</em></p>



<p class="MsoNormal wp-block-paragraph">Interview: Mat Smith</p>



<p class="MsoNormal wp-block-paragraph">(c) 2019 – 2025 Documentary Evidence </p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2176"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2176"
				>
				<span id="sharing-twitter-2176" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2176"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2176"
				>
				<span id="sharing-facebook-2176" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2176"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20Dave%20Ball%20%282019%20Interview%29&#038;body=https%3A%2F%2F429harrowroad.com%2F2025%2F11%2F13%2Fdave-ball-2019-interview%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2176"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="d90ea5cca6" data-email-share-track-url="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/?share=email">
				<span id="sharing-email-2176" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2176"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2176"
				>
				<span id="sharing-print-2176" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2176"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2176"
				>
				<span id="sharing-reddit-2176" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2176"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2176"
				>
				<span id="sharing-tumblr-2176" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2176"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2176"
				>
				<span id="sharing-pinterest-2176" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2176-69e3c318898fb' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2176&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2176-69e3c318898fb&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2176-69e3c318898fb' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/interviews/" rel="category tag">Interviews</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/daniel-miller/" rel="tag">Daniel Miller</a>, <a href="https://429harrowroad.com/tag/dave-ball/" rel="tag">Dave Ball</a>, <a href="https://429harrowroad.com/tag/depeche-mode/" rel="tag">Depeche Mode</a>, <a href="https://429harrowroad.com/tag/fad-gadget/" rel="tag">Fad Gadget</a>, <a href="https://429harrowroad.com/tag/frank-tovey/" rel="tag">Frank Tovey</a>, <a href="https://429harrowroad.com/tag/leeds/" rel="tag">Leeds</a>, <a href="https://429harrowroad.com/tag/marc-almond/" rel="tag">Marc Almond</a>, <a href="https://429harrowroad.com/tag/mute/" rel="tag">Mute</a>, <a href="https://429harrowroad.com/tag/mute-records/" rel="tag">Mute Records</a>, <a href="https://429harrowroad.com/tag/silicon-teens/" rel="tag">Silicon Teens</a>, <a href="https://429harrowroad.com/tag/soft-cell/" rel="tag">Soft Cell</a>, <a href="https://429harrowroad.com/tag/some-bizarre/" rel="tag">Some Bizarre</a>, <a href="https://429harrowroad.com/tag/the-normal/" rel="tag">The Normal</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/#respond"><span class="leave-reply">Leave a reply</span></a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2176 -->

				
					
	<article id="post-2173" class="post-2173 post type-post status-publish format-standard has-post-thumbnail hentry category-film-and-dvd-reviews tag-andrew-fletcher tag-christian-eigner tag-clash tag-dave-gahan tag-depeche-mode tag-depeche-mode-m tag-fernando-frias tag-fletch tag-martin-gore tag-martin-l-gore tag-mute tag-mute-records tag-peter-gordeno">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/" rel="bookmark">Depeche Mode: M (Clash&nbsp;review)</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/" title="18:04" rel="bookmark"><time class="entry-date" datetime="2025-10-24T18:04:45+01:00">October 24, 2025</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/#respond"><span class="leave-reply">Reply</span></a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			<div class="wp-block-image">
<figure class="aligncenter size-large"><img data-attachment-id="2172" data-permalink="https://429harrowroad.com/depechemode-27x40/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2025/10/depechemode-27x40-1.jpg" data-orig-size="3888,5760" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="depechemode-27&amp;#215;40" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2025/10/depechemode-27x40-1.jpg?w=584" width="691" height="1023" src="https://429harrowroad.com/wp-content/uploads/2025/10/depechemode-27x40-1.jpg?w=691" alt="Depeche Mode: M poster " class="wp-image-2172" srcset="https://429harrowroad.com/wp-content/uploads/2025/10/depechemode-27x40-1.jpg?w=691 691w, https://429harrowroad.com/wp-content/uploads/2025/10/depechemode-27x40-1.jpg?w=1382 1382w, https://429harrowroad.com/wp-content/uploads/2025/10/depechemode-27x40-1.jpg?w=101 101w, https://429harrowroad.com/wp-content/uploads/2025/10/depechemode-27x40-1.jpg?w=203 203w, https://429harrowroad.com/wp-content/uploads/2025/10/depechemode-27x40-1.jpg?w=768 768w" sizes="(max-width: 691px) 100vw, 691px" /></figure>
</div>


<p class="wp-block-paragraph">Last night, I attended a London screening of <em>Depeche Mode: M</em>, the new <strong>Fernando Frias</strong> film surveying the three nights that <strong>Depeche Mode</strong> played at Foro Sol, Mexico City in 2023. </p>



<p class="wp-block-paragraph">Read my review for <em>Clash</em> <a href="https://www.clashmusic.com/reviews/depeche-mode-m-is-a-searingly-powerful-watch/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p class="wp-block-paragraph">Words: Mat Smith</p>



<p class="wp-block-paragraph">(c) 2025 Mat Smith / Documentary Evidence for Clash</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2173"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2173"
				>
				<span id="sharing-twitter-2173" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2173"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2173"
				>
				<span id="sharing-facebook-2173" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2173"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20Depeche%20Mode%3A%20M%20%28Clash%20review%29&#038;body=https%3A%2F%2F429harrowroad.com%2F2025%2F10%2F24%2Fdepeche-mode-m-clash-review%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2173"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="b9f199db90" data-email-share-track-url="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/?share=email">
				<span id="sharing-email-2173" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2173"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2173"
				>
				<span id="sharing-print-2173" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2173"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2173"
				>
				<span id="sharing-reddit-2173" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2173"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2173"
				>
				<span id="sharing-tumblr-2173" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2173"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2173"
				>
				<span id="sharing-pinterest-2173" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2173-69e3c3188b53e' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2173&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2173-69e3c3188b53e&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2173-69e3c3188b53e' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/film-and-dvd-reviews/" rel="category tag">Film and DVD reviews</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/andrew-fletcher/" rel="tag">Andrew Fletcher</a>, <a href="https://429harrowroad.com/tag/christian-eigner/" rel="tag">Christian Eigner</a>, <a href="https://429harrowroad.com/tag/clash/" rel="tag">Clash</a>, <a href="https://429harrowroad.com/tag/dave-gahan/" rel="tag">Dave Gahan</a>, <a href="https://429harrowroad.com/tag/depeche-mode/" rel="tag">Depeche Mode</a>, <a href="https://429harrowroad.com/tag/depeche-mode-m/" rel="tag">Depeche Mode: M</a>, <a href="https://429harrowroad.com/tag/fernando-frias/" rel="tag">Fernando Frias</a>, <a href="https://429harrowroad.com/tag/fletch/" rel="tag">Fletch</a>, <a href="https://429harrowroad.com/tag/martin-gore/" rel="tag">Martin Gore</a>, <a href="https://429harrowroad.com/tag/martin-l-gore/" rel="tag">Martin L. Gore</a>, <a href="https://429harrowroad.com/tag/mute/" rel="tag">Mute</a>, <a href="https://429harrowroad.com/tag/mute-records/" rel="tag">Mute Records</a>, <a href="https://429harrowroad.com/tag/peter-gordeno/" rel="tag">Peter Gordeno</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/#respond"><span class="leave-reply">Leave a reply</span></a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2173 -->

				
					
	<article id="post-2168" class="post-2168 post type-post status-publish format-standard hentry category-non-mute-related tag-edvard-graham-lewis tag-electronic tag-graham-lewis tag-guitars tag-he-said tag-lvu tag-mortality-tables tag-mute tag-mute-records tag-rupert-lally tag-sketching-venus tag-wire">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/" rel="bookmark">Sketching Venus &#8211; lvu (Edvard Graham Lewis&nbsp;Venursion)</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/" title="19:25" rel="bookmark"><time class="entry-date" datetime="2025-03-29T19:25:05+00:00">March 29, 2025</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/#respond"><span class="leave-reply">Reply</span></a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			<div class="wp-block-image">
<figure class="aligncenter size-large"><img data-attachment-id="2170" data-permalink="https://429harrowroad.com/img_0004-1/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2025/03/img_0004-1.jpg" data-orig-size="700,700" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_0004-1" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2025/03/img_0004-1.jpg?w=584" width="700" height="700" src="https://429harrowroad.com/wp-content/uploads/2025/03/img_0004-1.jpg?w=700" class="wp-image-2170" srcset="https://429harrowroad.com/wp-content/uploads/2025/03/img_0004-1.jpg 700w, https://429harrowroad.com/wp-content/uploads/2025/03/img_0004-1.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2025/03/img_0004-1.jpg?w=300 300w" sizes="(max-width: 700px) 100vw, 700px" /></figure>
</div>


<p class="wp-block-paragraph">One of the great pleasures of my <strong>Mortality Tables</strong> collaborative projects is being able to collaborate with artists who’ve released material through <strong>Mute</strong>. So far I’ve worked with <strong>Vince Clarke</strong>, <strong>Simon Fisher Turner</strong>, <strong>Gareth Jones</strong> and <strong>Maps</strong>, and there are several more collaborations in the works. </p>



<p class="wp-block-paragraph">Yesterday, I released a new / old release which included a completely new version by <strong>Edvard Graham Lewis</strong> (<strong>Wire</strong> / <strong>He Said </strong>/ <strong>Dome</strong> etc). </p>



<p class="wp-block-paragraph">Full press release details below.</p>



<p class="wp-block-paragraph">///</p>



<p class="wp-block-paragraph">In 2000, I made an album under the alias <strong>Sketching Venus</strong>. Hardly anyone heard it, and that&#8217;s how it should probably stay.</p>



<p class="wp-block-paragraph">While revisiting and archiving old files, I came upon one track from the album, &#8216;lvu&#8217;, which stood out, and which I felt like I needed to do something with. It is unique, in the sense that it is the only song where you&#8217;ll hear me singing. It is also unique within the sound pieces that I&#8217;ve made over the years, in that every highly processed sound was made with a guitar.</p>



<p class="wp-block-paragraph">Specifically, it was my ex-girlfriend&#8217;s guitar who I&#8217;d messily broken up with during the Millennium celebrations. &#8216;lvu&#8217; was made at the very start of a new relationship, with my future wife. I think of it as a reflection on endings and beginnings.</p>



<p class="wp-block-paragraph">Around this time, I was listening to a lot of Wire. My lyrics and vocals were a crude attempt to channel the band&#8217;s songwriter, bassist and occasional vocalist Edvard Graham Lewis, who has created a new version of &#8216;lvu&#8217; that includes his own vocals.</p>



<p class="wp-block-paragraph">The single is rounded out by a hypnotic remix by frequent Mortality Tables collaborator Rupert Lally.</p>



<p class="wp-block-paragraph">Available at&nbsp;&nbsp;<a href="https://mortalitytables.bandcamp.com">mortalitytables.bandcamp.com</a></p>



<p class="wp-block-paragraph">[1] lvu (Original Version)<br>[2] lvu (Rupert Lally Remix)<br>[3] lvu (Edvard Graham Lewis Venursion)</p>



<p class="wp-block-paragraph">‘lvu&#8217; originally appeared on the mostly unavailable Sketching Venus album <em>svUTLD01abm</em> (NominalMusics, 2000).</p>



<p class="wp-block-paragraph">released March 28 2025&nbsp;</p>



<p class="wp-block-paragraph">[1] Written and produced by Mat Smith (2000)&nbsp;<br>[2} Additional production and remix by Rupert Lally (2024)&nbsp;<br>[3] Additional production and vocals by Edvard Graham Lewis (2025). Edvard Graham Lewis appears courtesy of Upp Records.&nbsp;</p>



<p class="wp-block-paragraph">Mastered by James Edward Armstrong&nbsp;</p>



<p class="wp-block-paragraph">Original photography by unknown photographer, Orlando, FL on 5 September 2001&nbsp;</p>



<p class="wp-block-paragraph">[1] Design and image processing by alka&nbsp;<br />[2 + 3] Design and image processing by Andrew Brenza&nbsp;<br />[3] Image re-processing by alka&nbsp;</p>



<p class="wp-block-paragraph">A Mortality Tables Product&nbsp;<br>MTP38</p>



<p class="wp-block-paragraph">Words: Mat Smith</p>



<p class="wp-block-paragraph">(c) 2025 Mortality Tables / Documentary Evidende</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2168"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2168"
				>
				<span id="sharing-twitter-2168" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2168"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2168"
				>
				<span id="sharing-facebook-2168" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2168"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20Sketching%20Venus%20-%20lvu%20%28Edvard%20Graham%20Lewis%20Venursion%29&#038;body=https%3A%2F%2F429harrowroad.com%2F2025%2F03%2F29%2Fsketching-venus-lvu-edvard-graham-lewis-venursion%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2168"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="35732e60ca" data-email-share-track-url="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/?share=email">
				<span id="sharing-email-2168" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2168"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2168"
				>
				<span id="sharing-print-2168" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2168"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2168"
				>
				<span id="sharing-reddit-2168" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2168"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2168"
				>
				<span id="sharing-tumblr-2168" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2168"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2168"
				>
				<span id="sharing-pinterest-2168" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2168-69e3c3188d895' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2168&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2168-69e3c3188d895&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2168-69e3c3188d895' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/non-mute-related/" rel="category tag">Non-Mute / Related</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/edvard-graham-lewis/" rel="tag">Edvard Graham Lewis</a>, <a href="https://429harrowroad.com/tag/electronic/" rel="tag">Electronic</a>, <a href="https://429harrowroad.com/tag/graham-lewis/" rel="tag">Graham Lewis</a>, <a href="https://429harrowroad.com/tag/guitars/" rel="tag">Guitars</a>, <a href="https://429harrowroad.com/tag/he-said/" rel="tag">He Said</a>, <a href="https://429harrowroad.com/tag/lvu/" rel="tag">lvu</a>, <a href="https://429harrowroad.com/tag/mortality-tables/" rel="tag">Mortality Tables</a>, <a href="https://429harrowroad.com/tag/mute/" rel="tag">Mute</a>, <a href="https://429harrowroad.com/tag/mute-records/" rel="tag">Mute Records</a>, <a href="https://429harrowroad.com/tag/rupert-lally/" rel="tag">Rupert Lally</a>, <a href="https://429harrowroad.com/tag/sketching-venus/" rel="tag">Sketching Venus</a>, <a href="https://429harrowroad.com/tag/wire/" rel="tag">Wire</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/#respond"><span class="leave-reply">Leave a reply</span></a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2168 -->

				
					
	<article id="post-2010" class="post-2010 post type-post status-publish format-standard hentry category-features tag-adrian-morris tag-al-spx tag-alan-wilder tag-alison-moyet tag-andrew-fletcher tag-andy-bell tag-ben-frost tag-blast-first tag-caspar-brotzmann tag-cold-specks tag-credible-sexy-units tag-dave-gahan tag-dave-the-keys tag-david-baker tag-depeche-mode tag-echoboy tag-erasure tag-f-m-einheit tag-fortran-5 tag-goldfrapp tag-holger-hiller tag-i-start-counting tag-james-chapman tag-josh-t-pearson tag-komputer tag-ladan-hussein tag-laibach tag-looper tag-m83 tag-maps tag-martin-l-gore tag-mute tag-mute-artists tag-mute-records tag-muteresponse tag-nick-cave-the-bad-seeds tag-on-dead-waves tag-piney-gir tag-polly-scattergood tag-richard-hawley tag-short-break-operator tag-sonic-youth tag-the-knife tag-the-normal tag-the-residents tag-throbbing-gristle tag-vic-twenty tag-vince-clarke tag-yazoo">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/" rel="bookmark">I&#8217;m Dreaming Of A Mute&nbsp;Christmas</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/" title="00:03" rel="bookmark"><time class="entry-date" datetime="2024-12-24T00:03:16+00:00">December 24, 2024</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/#respond"><span class="leave-reply">Reply</span></a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			<div class="wp-block-image">
<figure class="aligncenter size-large"><a href="https://429harrowroad.com/wp-content/uploads/2020/12/muteman_xmas.jpg"><img data-attachment-id="2011" data-permalink="https://429harrowroad.com/muteman_xmas/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2020/12/muteman_xmas.jpg" data-orig-size="821,511" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="muteman_xmas" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2020/12/muteman_xmas.jpg?w=584" loading="lazy" width="821" height="511" src="https://429harrowroad.com/wp-content/uploads/2020/12/muteman_xmas.jpg?w=821" alt="" class="wp-image-2011" srcset="https://429harrowroad.com/wp-content/uploads/2020/12/muteman_xmas.jpg 821w, https://429harrowroad.com/wp-content/uploads/2020/12/muteman_xmas.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2020/12/muteman_xmas.jpg?w=300 300w, https://429harrowroad.com/wp-content/uploads/2020/12/muteman_xmas.jpg?w=768 768w" sizes="(max-width: 821px) 100vw, 821px" /></a></figure>
</div>


<p class="wp-block-paragraph">It’s that special time of the year where the sounds of well-worn Christmas hits from yesteryear fill playlists and people begin to debate whether &#8216;Fairytale&nbsp;Of New York&#8217; really is the best Christmas song of all time.</p>



<p class="wp-block-paragraph">With some help from my good friend and <strong>Mute</strong> afficionado Jorge Punaro, I here present a trawl through the back catalogues of Mute artists past and present to deliver an alternative compilation of seasonal songs; songs that range from the traditional, the just plain festive and on to the downright tenuous. Jorge has meticulously prepared <a href="https://open.spotify.com/playlist/2iyGh8GEUdehTVjDq1P7UG?si=IxBJn3hTRFOrrhBFXJYBOQ" target="_blank" rel="noreferrer noopener">a Spotify playlist</a> containing everything we could get our hands on (and many more songs than I&#8217;ve covered here). For your optimal listening experience, Jorge&#8217;s should be listened to while drinking one of the cocktails from <strong>Erasure</strong>’s <em>Snow Globe</em> box set. </p>



<p class="wp-block-paragraph">I often think of Erasure at Christmas, mostly because I remember receiving a 7&#8243; of &#8216;You Surround Me&#8217; in 1989 in my stocking. The year before, <strong>Vince Clarke</strong> and <strong>Andy Bell</strong> narrowly missed securing the coveted Christmas number one slot with <em>Crackers International</em>, an EP which led with &#8216;Stop!&#8217; but also included the moving &#8216;She Won&#8217;t Be Home&#8217; (renamed &#8216;Lonely Christmas&#8217; on the slightly dubious <em>The Erasure Christmas Gift</em> 7&#8243;); elsewhere on the EP, the duo delivered a spooky version of the traditional carol &#8216;God Rest Ye Merry Gentlemen&#8217; complete with authentic choir-boy vocals from Bell, while two years before the pair did a relatively throwaway take on &#8216;Silent Night&#8217; for the US <em>Yulesville </em>promo LP (the same year that Clarke’s former <strong>Yazoo</strong> band mate <strong>Alison Moyet</strong> had contributed ‘The Coventry Carol’ to the compilation A Very Special Christmas). The limited formats of Erasure’s ‘Am I Right’ EP (1991) featured a festive Me Company design of Christmas trees with a photo of a young boy holding presents, while Andy Bell co-hosted Channel 4&#8217;s <em><a href="https://429harrowroad.com/2018/12/24/camp-christmas-channel-4-broadcast-24-december-1993/">Camp Christmas</a></em> in 1993, with musical accompaniment from Vince. Andy also featured in a short film called <em>I Hate Christmas </em>as a market stall worker. </p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><a href="https://429harrowroad.com/wp-content/uploads/2020/12/erasure-snow-globe.jpg"><img data-attachment-id="2017" data-permalink="https://429harrowroad.com/erasure-snow-globe/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2020/12/erasure-snow-globe.jpg" data-orig-size="500,500" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="erasure-snow-globe" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2020/12/erasure-snow-globe.jpg?w=500" loading="lazy" width="500" height="500" src="https://429harrowroad.com/wp-content/uploads/2020/12/erasure-snow-globe.jpg?w=500" alt="" class="wp-image-2017" srcset="https://429harrowroad.com/wp-content/uploads/2020/12/erasure-snow-globe.jpg 500w, https://429harrowroad.com/wp-content/uploads/2020/12/erasure-snow-globe.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2020/12/erasure-snow-globe.jpg?w=300 300w" sizes="(max-width: 500px) 100vw, 500px" /></a></figure>
</div>


<p class="wp-block-paragraph">2013 was the year that Erasure went all-out Christmas with the celebrated release of&nbsp;<em>Snow Globe</em>. The album collected a number of classic Christmas songs, including ‘Silent Night’ and ‘God Rest Ye Merry Gentlemen’ in updated splendour, as well as some of Vince and Andy&#8217;s own tracks. The limited-edition box – or should I say the&nbsp;<em>obligatory&nbsp;</em>limited-edition box, since if Mute did one thing in 2013 it was to ensure that their avid fans went without their turkey after spending out a small country&#8217;s GDP on ever more elaborate and expensive box sets – included a bauble, balloon, a packet of sweets and some Erasure-themed cocktail recipes.&nbsp;</p>



<p class="wp-block-paragraph">Other artists who&#8217;ve covered Christmas songs include <strong>Echoboy</strong>, who released a special split EP with Six By Seven for a Christmas show in Nottingham in 1999 which included a very alternative version of &#8216;Silent Night&#8217;. <strong>Richard Hawley</strong> also delivered a very easy listening take on &#8216;Silent Night&#8217; for a special one-track CD given away to people who attended his show in Sheffield in December 2006, a track that was also included on his 2008 live album <em>Live At The Devil&#8217;s Arse</em>; during winter gigs and on radio Hawley has also covered &#8216;Blue Christmas&#8217;, made famous by Elvis Presley, but I haven&#8217;t heard a recording of that yet (if anyone feels charitable enough at this time of giving to send me one in the name of research, please get in touch).</p>



<p class="wp-block-paragraph">In the wake of their 2008 album&nbsp;<em>Seventh Tree</em>,&nbsp;<strong>Goldfrapp&nbsp;</strong>found time to record a beautifully jaunty version of &#8216;Winter Wonderland&#8217; for a US Starbucks compilation, while former&nbsp;<strong>Blast First</strong>&nbsp;act&nbsp;<strong>Sonic Youth</strong>&nbsp;recorded a sketchy and somewhat unpleasant version of Martin Mull&#8217;s &#8216;Santa Doesn&#8217;t Cop Out&nbsp;On&nbsp;Dope&#8217; for a 1996 compilation, which is definitely one for completists only.&nbsp;</p>



<p class="wp-block-paragraph">For <strong>Can</strong> completists, the veteran Krautrockers put out an ultra-twee take on &#8216;Silent Night&#8217; way back in 1976 on Virgin in the UK. <strong>The Residents</strong> launched their audacious avant-garde music career with <em>Santa Dog</em> in 1972, a double 7&#8243; single mailed out to various people featuring four tracks by various pseudonymous artists, all of whom were actually The Residents themselves (whoever <em>they</em> are). The band have released several other versions of <em>Santa Dog</em> since 1972 – in 1978, 1998, 1992 (&#8216;Show Us Your Ugly&#8217;), 1999 (<em>Refused</em>), 2006, 2012 (<em>SD12</em>) and a fiftieth anniversary version in 2022. Way back in 1956, occasional Blast First artist <strong>Sun Ra</strong> co-opted the alias <strong>The Qualities</strong> and issued the doo wop 7-inch &#8216;It&#8217;s Christmas Time&#8217;. Backed with the sincere blues of &#8216;Happy New Year To You!&#8217; this curiosity remains one of the most surprisingly accessible pop releases in the expansive Ra catalogue, and proof that they celebrate the holidays on Saturn just like they do here on Ra&#8217;s adopted home.</p>


<div class="wp-block-image is-resized">
<figure class="aligncenter size-large"><a href="https://429harrowroad.com/wp-content/uploads/2019/12/can_silentnightgermany.jpg"><img data-attachment-id="1785" data-permalink="https://429harrowroad.com/2019/12/06/can-silent-night/can_silentnightgermany/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2019/12/can_silentnightgermany.jpg" data-orig-size="630,629" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="can_silentnightgermany" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2019/12/can_silentnightgermany.jpg?w=584" loading="lazy" width="630" height="629" src="https://429harrowroad.com/wp-content/uploads/2019/12/can_silentnightgermany.jpg?w=630" alt="" class="wp-image-1785" srcset="https://429harrowroad.com/wp-content/uploads/2019/12/can_silentnightgermany.jpg 630w, https://429harrowroad.com/wp-content/uploads/2019/12/can_silentnightgermany.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2019/12/can_silentnightgermany.jpg?w=300 300w" sizes="(max-width: 630px) 100vw, 630px" /></a></figure>
</div>


<p class="wp-block-paragraph"><strong>Einstürzende Neubauten</strong> stalwart <strong>F.M. Einheit</strong> and <strong>Caspar Brötzmann</strong> recorded an album called <em>Merry Christmas</em> which <strong>Paul Smith</strong>&#8216;s label put out in 1994, but it isn&#8217;t at all festive and, besides, it was released in May that year. Still, the album&#8217;s sleeve of a hand-drawn tank reminds me of troops putting down arms during World War II, so maybe there&#8217;s a connection to the festive season somewhere on this album after all. Mute US duo <strong>The Knife</strong> recorded a song called &#8216;Reindeer&#8217; for their eponymous album in 2001; as if the song wasn&#8217;t festive enough already with its lyrics about Santa, The Knife issued a version with Christmas bells (renamed &#8216;Christmas Reindeer&#8217;) in 2006 as a free download. In 2023, The Knife’s <strong>Karin Dreijer</strong> (<strong>Fever Ray</strong>) released a new album, <em>Radical Romantics</em>, featuring the track ‘North’. Jorge and I like to think she was referring to the North Pole.</p>



<p class="wp-block-paragraph">Holger Hiller’s eponymous last album for Mute in 2000 included the track ‘Once I Built A Snowman’, while <strong>Ben Frost</strong>’s 2017 album <em>Music From Fortitude</em> opened with ‘This Is Not Christmas’. <strong>Andreas Dorau</strong>, he of one-time Mute group <strong>Die Doraus Und Die Marinas</strong>, has recorded two Christmas songs. &#8216;Weihnachten Ist Auch Nicht Mehr Das Was Es Mal War&#8217; is a bouncy electropop track that appeared on Staatsakt&#8217;s <em>Santo Klaus</em> sampler in 2016, and just over ten years earlier, he released the track &#8216;Weihnachten Im Wald&#8217; as a limited-edition of 100 CDs for a Carhartt jeans promotion.</p>



<p class="wp-block-paragraph"><strong>The Jon Spencer Blues Explosion</strong>&#8216;s 1992 Sub Pop Singles Club 7-inch paired together two  excellent tracks &#8211; the wild rockabilly gestures of &#8216;Big Yule Log Boogie&#8217; and the &#8216;Blue Christmas&#8217;-esque &#8216;My Christmas Wish&#8217;.<strong> Josh T. Pearson</strong> became the first Mute artist to deliver a whole EP of Christmas songs, with his maudlin <em>Rough Trade Bonus</em> disc getting released in 2011 as a Rough Trade shop exclusive accompanying his Mute debut, <em>Last Of The Country Gentlemen</em>. This year, Pearson issued a new song, ‘2020&#8217;s Silent Night Hindsight’ straight to YouTube, and a more perfectly cynical take on a shit year you will be hard-pressed to find. </p>



<p class="wp-block-paragraph">In 2012, Canada’s <strong>Ladan Hussein</strong>, variously known as <strong>Al Spx</strong> and later <strong>Cold Specks</strong> covered Mary Margaret O&#8217;Hara&#8217;s &#8216;Christmas Evermore&#8217; for a Christmas compilation, complete with brass and obligatory messages of peace and hope and a bit of <strong>Diamanda Galás</strong>-esque tremulous wailing. The debut Cold Specks album, <em>I Predict A Beautiful Expulsion</em> (2012) also features the stirring track &#8216;Winter Solstice&#8217;. </p>



<p class="wp-block-paragraph"><strong>Looper</strong>&#8216;s 2003 album <em>The Snare</em> features the haunting and evocative &#8216;New York Snow&#8217;, while the &#8216;Intro&#8217; track on <strong>M83</strong>&#8216;s <em>Hurry Up, We&#8217;re Dreaming</em> has dreamy lyrics about walking in snow. Way back in 1982, Yazoo&#8217;s <em>Upstairs At Eric</em>&#8216;s included the sparse &#8216;Winter Kills&#8217; and an orchestral version of &#8216;Only You&#8217; was used in a Boots TV ad in 2017. A year before <em>Upstairs At Eric&#8217;s</em>, future Mute artists <strong>A Certain Ratio</strong> recorded the irrepressable long-form funk track &#8216;Winter Hill&#8217; for their <em>To Each</em> album, while, some twenty years later, <strong>Nick Cave</strong> <strong>&amp; The Bad Seeds </strong>released the wintery &#8216;Fifteen Feet Of Pure White Snow&#8217; in 2001, regrettably the closest the songwriter has yet come to recording a seasonal song. Surely there’s a Christmas album in St. Nick somewhere? <strong>Moby</strong>&#8216;s never <em>officially</em> done a Christmas track either, though he did remix the late arch-crooner Tony Bennett&#8217;s &#8216;I&#8217;m Coming Home For Christmas&#8217; in 2007, but the track was only ever released as a promo. </p>


<div class="wp-block-image is-resized">
<figure class="aligncenter size-large"><a href="https://429harrowroad.com/wp-content/uploads/2020/12/short-break-operator-short-break-operator.jpg"><img data-attachment-id="2020" data-permalink="https://429harrowroad.com/short-break-operator-short-break-operator/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2020/12/short-break-operator-short-break-operator.jpg" data-orig-size="600,588" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="short-break-operator-short-break-operator" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2020/12/short-break-operator-short-break-operator.jpg?w=584" loading="lazy" width="600" height="588" src="https://429harrowroad.com/wp-content/uploads/2020/12/short-break-operator-short-break-operator.jpg?w=600" alt="" class="wp-image-2020" srcset="https://429harrowroad.com/wp-content/uploads/2020/12/short-break-operator-short-break-operator.jpg 600w, https://429harrowroad.com/wp-content/uploads/2020/12/short-break-operator-short-break-operator.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2020/12/short-break-operator-short-break-operator.jpg?w=300 300w" sizes="(max-width: 600px) 100vw, 600px" /></a></figure>
</div>


<p class="wp-block-paragraph"><strong>Maps</strong>, known to his parents as <strong>James Chapman</strong>, kicked off his pre-Mute career as <strong>Short Break Operator</strong>, including the haunting ‘Some Winter Song’ as the first track on his debut EP from 2003. In fact, of all the Mute roster, Maps is easily the most prolific Christmas-loving artists. He recorded the frosty &#8216;Sparks In The Snow&#8217; for his second single, went on to cover East 17&#8217;s &#8216;Stay Another Day&#8217; for a promo CDr and released &#8216;Merry Christmas (My Friend)&#8217; straight to Soundcloud in 2013, which is among the most atmospheric things Chapman has ever recorded. (Shameless plug: in 2024, I wrote a short story inspired by &#8216;Sparks In The Snow&#8217;. You can find that <a href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/">here</a>.)</p>



<p class="wp-block-paragraph">Later still, 2016 Chapman’s collaboration with former Mute artist <strong>Polly Scattergood</strong>, <strong>On Dead Waves</strong>, yielded two Christmas songs in the form of a cover of ‘In The Bleak Midwinter’ and the track ‘Winter’s Child’ that closed the duo’s only album together. In 2022, Polly Scattergood released her own Christmas track, ‘Snowburden’, which followed this year’s career-defining and intensely personal album <em>In This Moment</em>. The new song found the singer somewhere between Laurie Anderson-esque sound art and sensitive balladeering. </p>



<p class="wp-block-paragraph">In 2020, one of Mute’s longest-serving sons, <strong>David Baker</strong> – one half of <strong>I Start Counting</strong>, <strong>Fortran 5</strong> and <strong>Komputer</strong> – released ‘The Lights Of The Pub’, a charity single under his Joanna-tinkling alias <strong>Dave The Keys</strong> in aid of his local London boozer, The Lamb on Holloway Road. Dave (now working as <strong>lonelyklown</strong>) unwrapped another Christmas treat in 2022 with the emotive &#8216;Winter In London&#8217;, and in 2023 popped ‘I Believe In Snow’ under your burgeoning Mute Christmas tree. For 2024, Baker offered the rather lovely &#8216;Solstice Song&#8217;. With his seasonal deliveries, Baker is fast becoming as dependable at Christmas as Quality Street, speeches from the Monarch and really nasty hangovers.</p>



<figure class="wp-block-embed aligncenter is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<span class="embed-youtube" style="text-align:center; display: block;"><iframe loading="lazy" class="youtube-player" width="584" height="329" src="https://www.youtube.com/embed/_F--fpoMB6Y?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></span>
</div></figure>



<p class="wp-block-paragraph">Speaking of charity, here’s a shameless plug: in 2012, <em>Documentary Evidence</em> compiled <em>MuteResponse</em>, a double download charity compilation album intended as a tribute to Mute&#8217;s legacy, and also to rule off the first ten years of writing this very site. On <em>MuteResponse #1</em>, I was able to include one-time <strong>Credible Sexy Units</strong> act <strong>Vic Twenty</strong>&#8216;s &#8216;Christmas In Korea (New Year In Japan)&#8217;. <strong>Angela &#8216;Piney Gir&#8217; Penhaligon</strong> and <strong>Adrian Morris</strong> recorded the track years ago but it was never officially released until the <em>MuteResponse</em> compilation. I first heard this track years ago during an interview with Morris, and I always wanted to make sure that others would get to hear it, and so I was delighted to let the song see the light of day. Incidentally, Piney&#8217;s done plenty of other Christmas songs, one of my personal favourites being the lovely &#8216;For The Love Of Others&#8217; in 2009. You can find <em>MuteResponse </em>over at <a href="https://nominalmusics.bandcamp.com/album/muteresponse-1" target="_blank" rel="noreferrer noopener">Bandcamp</a>. </p>



<p class="wp-block-paragraph">So we&#8217;ve surveyed the traditional and the festive – what about the tenuous? Look no further than Mute&#8217;s most bankable act, <strong>Depeche Mode</strong>, whose only obvious Christmas connection was Dave Gahan delivering a festive message on the aforementioned <em>Yulesville </em>compilation. However, a year earlier, Depeche&#8217;s <strong>Alan Wilder</strong> and <strong>Martin Gore</strong> penned the track &#8216;Christmas Island&#8217; as the B-side to &#8216;A Question Of Lust&#8217;; it isn&#8217;t remotely festive, it was released in May that year, it&#8217;s named after an island in the Indian Ocean, but it&#8217;s got the word Christmas in the title and so, dubious though it is, onto the <em>Dreaming Of A Mute Christmas</em> playlist it goes. Sticking with the theme of tenuousness, former Depeche member <strong>Alan Wilder</strong> (<strong>Recoil</strong>) included a track called ‘Freeze’ on 1992’ s <em>Bloodline</em>. And what do you know? Vocals on that track were provided by Moby. In 2024, Jorge added &#8216;Life On The Line&#8217; by first Mute signing <strong>Fad Gadget</strong>. If you are wondering why, check out the outro of the track, where, if you use a bit of imagination, that twee little synth hook sounds a lot like &#8216;Jingle Bells&#8217;. I&#8217;m advised by a very reliable source that it was a little accidental, hence including it here in the tenuous section&#8230;</p>



<p class="wp-block-paragraph">Another member of the extended Mute alumni family, <strong>Beth Jeans Houghton</strong> (<strong>Du Blonde</strong>) dropped the misanthropic ‘It’s Christmas And I’m Crying’ in 2023, a track that even Ebenezer Scrooge would find miserable. But hey! Christmas is supposed to be fun, and so here&#8217;s a version of <strong>The Normal</strong>’s &#8216;Warm Leatherette&#8217; by The Bombshelter Brigade, re-titled &#8216;Merry Christmas&#8217; and taken from the 1988 compilation <em>Christmas At The Bombshelter</em>.</p>



<iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F31055279&auto_play=false&hide_related=false&visual=false&show_comments=true&show_user=true&show_reposts=false&color=ff5500"></iframe>
<div style="font-size:10px;color:#cccccc;overflow:hidden;font-family:Interstate, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Garuda, Verdana, Tahoma, sans-serif;font-weight:100"><a href="https://soundcloud.com/djformaldehyde" title="DJFormaldehyde" target="_blank" style="color:#cccccc;text-decoration:none">DJFormaldehyde</a> · <a href="https://soundcloud.com/djformaldehyde/merry-christmas-the" title="Merry Christmas - The Bombshelter Brigade" target="_blank" style="color:#cccccc;text-decoration:none">Merry Christmas &#8211; The Bombshelter Brigade</a></div>



<p class="wp-block-paragraph">In 2024, Mute delivered two festive treats in the form of <strong>Laibach</strong>&#8216;s collaboration with Silence, &#8216;White Christmas&#8217; (backed with &#8216;Silence Night&#8217;; LOL). It seems remarkable &#8211; but strangely fitting &#8211; that a band that have been disrupting convention since 1980 should finally offer their characteristically obtuse take on a Christmas classic. In what represented a bumper year for Mute acts offering up &#8211; er &#8211; festive cheer, A Certain Ratio landed their second place in the playlist with a seasonal EP, <em>Christmasville UK</em>.</p>


<iframe width="100%" height="120" style="position: relative; display: block; width: 100%; height: 120px;" src="//bandcamp.com/EmbeddedPlayer/v=2/album=3358025151/size=large/bgcol=ffffff/linkcol=0687f5/tracklist=false/artwork=small/" allowtransparency="true" frameborder="0"></iframe>



<p class="wp-block-paragraph">Like the good Mute elf that he is, Jorge has done an exemplary job of fattening the Christmas turkey in 2024 with tracks we&#8217;d missed from Andreas Dorau (&#8216;Mein englischer Winter&#8217; from 2023), Ben Frost (&#8216;Thundersnow&#8217; from 2018; heck, with that surname, his whole catalogue should be in this playlist!) and my all-time favourite anonymous art punks <strong>The Residents</strong>, whose full 1995 <em>Gingerbread Man </em>album could have been added here; instead, Jorge opted for &#8216;The Gingerbread Man&#8217; from the <em>Icky Flix</em> OST.</p>



<p class="wp-block-paragraph">Next year, if you&#8217;re very good and <em>very</em> <em>friendly </em>children, we might include <strong>Throbbing Gristle</strong>&#8216;s Christmas Eve Eve concert from Derek Jarman&#8217;s Butler&#8217;s Wharf pad on 23 December 1979. After all, that set featured &#8216;The First Noel&#8217; and concluded with &#8216;Throbbing Gristlemas&#8217;. Who says TG lacked a sense of humour?</p>



<p class="wp-block-paragraph">Happy Christmas to Mute fans everywhere.&nbsp;</p>



<figure class="wp-block-embed is-type-rich is-provider-spotify wp-block-embed-spotify wp-embed-aspect-21-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-spotify"><iframe title="Spotify Embed: Dreaming of a Mute Christmas" style="border-radius: 12px" width="100%" height="352" frameborder="0" allowfullscreen allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy" src="https://open.spotify.com/embed/playlist/2iyGh8GEUdehTVjDq1P7UG?si=IxBJn3hTRFOrrhBFXJYBOQ&#038;utm_source=oembed"></iframe></div>
</div></figure>



<p class="wp-block-paragraph">Words: Mat Smith&nbsp;<br>Spotify playlist and Mute Navidad nous: Jorge Punaro&nbsp;</p>



<p class="wp-block-paragraph">(c) 2023 Documentary Evidence &amp; Jorge Punaro. Earlier versions of this feature were published in 2012, 2013, 2020, 2022, 2023 and 2024. <em>If we’ve missed anything let us know and we’ll get them added in.</em></p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2010"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2010"
				>
				<span id="sharing-twitter-2010" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2010"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2010"
				>
				<span id="sharing-facebook-2010" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2010"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20I%27m%20Dreaming%20Of%20A%20Mute%20Christmas&#038;body=https%3A%2F%2F429harrowroad.com%2F2024%2F12%2F24%2Fim-dreaming-of-a-mute-christmas%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2010"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="8bce9dd293" data-email-share-track-url="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/?share=email">
				<span id="sharing-email-2010" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2010"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2010"
				>
				<span id="sharing-print-2010" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2010"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2010"
				>
				<span id="sharing-reddit-2010" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2010"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2010"
				>
				<span id="sharing-tumblr-2010" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2010"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2010"
				>
				<span id="sharing-pinterest-2010" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2010-69e3c318926f3' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2010&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2010-69e3c318926f3&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2010-69e3c318926f3' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/features/" rel="category tag">Features</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/adrian-morris/" rel="tag">Adrian Morris</a>, <a href="https://429harrowroad.com/tag/al-spx/" rel="tag">Al Spx</a>, <a href="https://429harrowroad.com/tag/alan-wilder/" rel="tag">Alan Wilder</a>, <a href="https://429harrowroad.com/tag/alison-moyet/" rel="tag">Alison Moyet</a>, <a href="https://429harrowroad.com/tag/andrew-fletcher/" rel="tag">Andrew Fletcher</a>, <a href="https://429harrowroad.com/tag/andy-bell/" rel="tag">Andy Bell</a>, <a href="https://429harrowroad.com/tag/ben-frost/" rel="tag">Ben Frost</a>, <a href="https://429harrowroad.com/tag/blast-first/" rel="tag">Blast First</a>, <a href="https://429harrowroad.com/tag/caspar-brotzmann/" rel="tag">Caspar Brötzmann</a>, <a href="https://429harrowroad.com/tag/cold-specks/" rel="tag">Cold Specks</a>, <a href="https://429harrowroad.com/tag/credible-sexy-units/" rel="tag">Credible Sexy Units</a>, <a href="https://429harrowroad.com/tag/dave-gahan/" rel="tag">Dave Gahan</a>, <a href="https://429harrowroad.com/tag/dave-the-keys/" rel="tag">Dave The Keys</a>, <a href="https://429harrowroad.com/tag/david-baker/" rel="tag">David Baker</a>, <a href="https://429harrowroad.com/tag/depeche-mode/" rel="tag">Depeche Mode</a>, <a href="https://429harrowroad.com/tag/echoboy/" rel="tag">Echoboy</a>, <a href="https://429harrowroad.com/tag/erasure/" rel="tag">Erasure</a>, <a href="https://429harrowroad.com/tag/f-m-einheit/" rel="tag">F.M. Einheit</a>, <a href="https://429harrowroad.com/tag/fortran-5/" rel="tag">Fortran 5</a>, <a href="https://429harrowroad.com/tag/goldfrapp/" rel="tag">Goldfrapp</a>, <a href="https://429harrowroad.com/tag/holger-hiller/" rel="tag">Holger Hiller</a>, <a href="https://429harrowroad.com/tag/i-start-counting/" rel="tag">I Start Counting</a>, <a href="https://429harrowroad.com/tag/james-chapman/" rel="tag">James Chapman</a>, <a href="https://429harrowroad.com/tag/josh-t-pearson/" rel="tag">Josh T. Pearson</a>, <a href="https://429harrowroad.com/tag/komputer/" rel="tag">Komputer</a>, <a href="https://429harrowroad.com/tag/ladan-hussein/" rel="tag">Ladan Hussein</a>, <a href="https://429harrowroad.com/tag/laibach/" rel="tag">Laibach</a>, <a href="https://429harrowroad.com/tag/looper/" rel="tag">Looper</a>, <a href="https://429harrowroad.com/tag/m83/" rel="tag">M83</a>, <a href="https://429harrowroad.com/tag/maps/" rel="tag">Maps</a>, <a href="https://429harrowroad.com/tag/martin-l-gore/" rel="tag">Martin L. Gore</a>, <a href="https://429harrowroad.com/tag/mute/" rel="tag">Mute</a>, <a href="https://429harrowroad.com/tag/mute-artists/" rel="tag">Mute Artists</a>, <a href="https://429harrowroad.com/tag/mute-records/" rel="tag">Mute Records</a>, <a href="https://429harrowroad.com/tag/muteresponse/" rel="tag">MuteResponse</a>, <a href="https://429harrowroad.com/tag/nick-cave-the-bad-seeds/" rel="tag">Nick Cave &amp; The Bad Seeds</a>, <a href="https://429harrowroad.com/tag/on-dead-waves/" rel="tag">On Dead Waves</a>, <a href="https://429harrowroad.com/tag/piney-gir/" rel="tag">Piney Gir</a>, <a href="https://429harrowroad.com/tag/polly-scattergood/" rel="tag">Polly Scattergood</a>, <a href="https://429harrowroad.com/tag/richard-hawley/" rel="tag">Richard Hawley</a>, <a href="https://429harrowroad.com/tag/short-break-operator/" rel="tag">Short Break Operator</a>, <a href="https://429harrowroad.com/tag/sonic-youth/" rel="tag">Sonic Youth</a>, <a href="https://429harrowroad.com/tag/the-knife/" rel="tag">The Knife</a>, <a href="https://429harrowroad.com/tag/the-normal/" rel="tag">The Normal</a>, <a href="https://429harrowroad.com/tag/the-residents/" rel="tag">The Residents</a>, <a href="https://429harrowroad.com/tag/throbbing-gristle/" rel="tag">Throbbing Gristle</a>, <a href="https://429harrowroad.com/tag/vic-twenty/" rel="tag">Vic Twenty</a>, <a href="https://429harrowroad.com/tag/vince-clarke/" rel="tag">Vince Clarke</a>, <a href="https://429harrowroad.com/tag/yazoo/" rel="tag">Yazoo</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/#respond"><span class="leave-reply">Leave a reply</span></a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2010 -->

				
					
	<article id="post-2158" class="post-2158 post type-post status-publish format-standard hentry category-fiction tag-fiction tag-james-chapman tag-lifefiles tag-maps tag-mortality-tables tag-mute tag-mute-records tag-sparks-in-the-soul">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/" rel="bookmark">Maps &#8211; Sparks In The Snow (Short Story,&nbsp;2024)</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/" title="17:18" rel="bookmark"><time class="entry-date" datetime="2024-12-23T17:18:40+00:00">December 23, 2024</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/#comments">1</a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			<div class="wp-block-image">
<figure class="aligncenter size-large"><img data-attachment-id="2157" data-permalink="https://429harrowroad.com/img_1122-1/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2024/12/img_1122-1.jpg" data-orig-size="600,592" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_1122-1" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2024/12/img_1122-1.jpg?w=584" loading="lazy" width="600" height="592" src="https://429harrowroad.com/wp-content/uploads/2024/12/img_1122-1.jpg?w=600" alt="" class="wp-image-2157" srcset="https://429harrowroad.com/wp-content/uploads/2024/12/img_1122-1.jpg 600w, https://429harrowroad.com/wp-content/uploads/2024/12/img_1122-1.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2024/12/img_1122-1.jpg?w=300 300w" sizes="(max-width: 600px) 100vw, 600px" /></figure>
</div>


<p class="wp-block-paragraph">It’s been a while, but I’ve written another short story inspired by the music and songwriting of <strong>Maps</strong> (<strong>James Chapman</strong>). As I’ve said before, there’s something indefinable in the emotional dynamics of James’s music that really inspires me to write short fiction. This time the track is ‘Sparks In The Snow’, the B-side of his second single ‘Lost My Soul’. </p>



<p class="wp-block-paragraph">This is the fourth of these I’ve written, and when completed, the collection will be published as <em>A Small Book Of Maps</em> through my Mortality Tables collaborative project. </p>



<p class="wp-block-paragraph">It is bundled with a collaboration with Maps that kicked off the <strong>Mortality Tables</strong> releases for 2024, ‘LF15 / A 4’33” Walk To Woburn Sands Station’. This formed part of Season 02 of the <em>LIFEFILES</em> series, where artists respond to my extremely basic lo-fi field recordings. In this case it was the sounds of the walk from my house to my local station, a walk that coincidentally takes 4’33”. I spoke to James about his versions of the John Cage piece for my other Mute blog, stumm433.com. You can read that interview <a href="https://stumm433.com/2019/11/12/39-48-james-chapman-maps-ondeadwaves/" target="_blank" rel="noreferrer noopener">here</a>. </p>



<p class="wp-block-paragraph">‘Sparks In The Snow’ is available through the Mortality Tables Bandcamp site <a href="https://mortalitytables.bandcamp.com/merch/a-small-book-of-maps-sparks-in-the-snow-short-story-by-mat-smith" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p class="wp-block-paragraph">(c) 2024 Mat Smith / Mortality Tables</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2158"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2158"
				>
				<span id="sharing-twitter-2158" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2158"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2158"
				>
				<span id="sharing-facebook-2158" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2158"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20Maps%20-%20Sparks%20In%20The%20Snow%20%28Short%20Story%2C%202024%29&#038;body=https%3A%2F%2F429harrowroad.com%2F2024%2F12%2F23%2Fmaps-sparks-in-the-snow-short-story-2024%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2158"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="cdc70324c8" data-email-share-track-url="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/?share=email">
				<span id="sharing-email-2158" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2158"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2158"
				>
				<span id="sharing-print-2158" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2158"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2158"
				>
				<span id="sharing-reddit-2158" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2158"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2158"
				>
				<span id="sharing-tumblr-2158" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2158"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2158"
				>
				<span id="sharing-pinterest-2158" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2158-69e3c3189504b' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2158&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2158-69e3c3189504b&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2158-69e3c3189504b' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/fiction/" rel="category tag">Fiction</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/fiction/" rel="tag">Fiction</a>, <a href="https://429harrowroad.com/tag/james-chapman/" rel="tag">James Chapman</a>, <a href="https://429harrowroad.com/tag/lifefiles/" rel="tag">LIFEFILES</a>, <a href="https://429harrowroad.com/tag/maps/" rel="tag">Maps</a>, <a href="https://429harrowroad.com/tag/mortality-tables/" rel="tag">Mortality Tables</a>, <a href="https://429harrowroad.com/tag/mute/" rel="tag">Mute</a>, <a href="https://429harrowroad.com/tag/mute-records/" rel="tag">Mute Records</a>, <a href="https://429harrowroad.com/tag/sparks-in-the-soul/" rel="tag">Sparks In The Soul</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/#comments"><b>1</b> Reply</a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2158 -->

				
					
	<article id="post-2142" class="post-2142 post type-post status-publish format-standard hentry category-miscellaneous category-veryrecords tag-all-the-t-shirts-i-wore-in-lockdown tag-mortality-tables tag-new-york tag-reed-caroline tag-reed-hays tag-vince-clarke tag-xqui">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/" rel="bookmark">A Tale Of Two&nbsp;T-shirts</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/" title="05:16" rel="bookmark"><time class="entry-date" datetime="2023-11-07T05:16:48+00:00">November 7, 2023</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/#respond"><span class="leave-reply">Reply</span></a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			<div class="wp-block-image">
<figure class="aligncenter size-large"><img data-attachment-id="2145" data-permalink="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/img_7358/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/11/img_7358.jpg" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.8&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone SE (3rd generation)&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1698906891&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.99&quot;,&quot;iso&quot;:&quot;320&quot;,&quot;shutter_speed&quot;:&quot;0.03030303030303&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_7358" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/11/img_7358.jpg?w=584" loading="lazy" width="1024" height="768" src="https://429harrowroad.com/wp-content/uploads/2023/11/img_7358.jpg?w=1024" alt="" class="wp-image-2145" srcset="https://429harrowroad.com/wp-content/uploads/2023/11/img_7358.jpg?w=1024 1024w, https://429harrowroad.com/wp-content/uploads/2023/11/img_7358.jpg?w=2048 2048w, https://429harrowroad.com/wp-content/uploads/2023/11/img_7358.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2023/11/img_7358.jpg?w=300 300w, https://429harrowroad.com/wp-content/uploads/2023/11/img_7358.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/11/img_7358.jpg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p class="wp-block-paragraph">24 May 2018, evening.</p>



<p class="wp-block-paragraph">I walked south from my hotel on W57 Street in Manhattan. I was wearing a Jason Laurits-designed t-shirt from his Paste gallery. It carried a print of the outline of a t-shirt emblazoned with the ubiquitous I Heart NY logo. A t-shirt, with a print of a t-shirt.</p>



<p class="wp-block-paragraph">My destination was Chelsea Market, where I’d bought the t-shirt the year before. My route took me through Times Square. I tried desperately to make out the drones of Max Neuhaus’s sub-sidewalk installation beneath the louder drone of tourism and commerce, but failed. <a href="https://furtherdot.com/2020/04/08/grate-expectations-max-neuhaus-times-square-1977/" target="_blank" rel="noreferrer noopener">I’d visited Neuhaus’ ‘Times Square’ early one morning with my friend Reed the previous year.</a> Coincidentally, I was walking downtown to watch Reed &amp; Caroline, Reed’s duo with Caroline Schutz, perform at Pianos on Ludlow Street in the Lower East Side.</p>



<p class="wp-block-paragraph">At Chelsea Market, I ate a vegan burger from Creamline and, with time to kill, wandered into the Posman book store. I bought a copy of ‘Howl’ by Allen Ginsberg and Jonathan Lethem’s survey of Talking Heads’ <em>Fear Of Music</em>.</p>



<p class="wp-block-paragraph">“Neat shirt,” said the cashier. “Where did you buy that from?”</p>



<p class="wp-block-paragraph">“At a shop on the ground floor,” I replied. I think I may have made a downward pointing gesture as if trying to make her see the Paste gallery that was literally below where she was standing.</p>



<p class="wp-block-paragraph">“Neat,” she said again. “That’s so meta.”</p>



<p class="wp-block-paragraph">I had no idea what she meant.</p>



<p class="wp-block-paragraph">I mulled this over while walking to a sports bar a couple of doors down from Pianos, where I met V for a couple of pints of Stella before the gig. The lady behind the bar pouring our drinks was wearing the same grey Muppets t-shirt that I’d bought from Walt Disney World on a family vacation maybe a couple of years before. I contemplated saying, “Nice shirt,” but decided that maybe that would be perceived as flirtatious.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img data-attachment-id="2143" data-permalink="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/2018-05-24-19-45-53-1/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-19.45.53-1.jpg" data-orig-size="3024,4032" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone 6s&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1527191153&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.15&quot;,&quot;iso&quot;:&quot;500&quot;,&quot;shutter_speed&quot;:&quot;0.066666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="2018-05-24 19.45.53-1" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-19.45.53-1.jpg?w=584" loading="lazy" width="768" height="1024" src="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-19.45.53-1.jpg?w=768" alt="" class="wp-image-2143" srcset="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-19.45.53-1.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-19.45.53-1.jpg?w=1536 1536w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-19.45.53-1.jpg?w=113 113w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-19.45.53-1.jpg?w=225 225w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-19.45.53-1.jpg?w=1440 1440w" sizes="(max-width: 768px) 100vw, 768px" /></figure>
</div>


<p class="wp-block-paragraph">V and I went down the street to Pianos. I offered him a drink, noting that the bar served Stella.</p>



<p class="wp-block-paragraph">“The Stella’s not good here,” he said. “It tastes sort of soapy.”</p>



<p class="wp-block-paragraph">We had a pint each anyway.</p>



<p class="wp-block-paragraph">After the gig, V and I helped Reed pack his equipment into an Uber. While Reed went  back inside to grab his cello, I asked V if he ever got recognised at gigs like this.</p>



<p class="wp-block-paragraph">“Nah,” he said.</p>



<p class="wp-block-paragraph">Moments later, someone tapped him on the shoulder with a pile of records to sign with a Sharpie. Perhaps fearing that another fan would collar him for autographs, we walked back down to the sports bar, leaving Reed to wonder where his assistants had disappeared to. We had another drink at exactly the same spot where we’d stood before Reed &amp; Caroline’s set. The lady with the Muppets t-shirt was still serving behind the bar. I don’t think she had even noticed we’d left.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img data-attachment-id="2146" data-permalink="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/2018-05-24-20-26-15-1/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-20.26.15-1.jpg" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone 6s&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1527193575&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.15&quot;,&quot;iso&quot;:&quot;320&quot;,&quot;shutter_speed&quot;:&quot;0.066666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="2018-05-24 20.26.15-1" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-20.26.15-1.jpg?w=584" loading="lazy" width="1024" height="768" src="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-20.26.15-1.jpg?w=1024" alt="" class="wp-image-2146" srcset="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-20.26.15-1.jpg?w=1024 1024w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-20.26.15-1.jpg?w=2048 2048w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-20.26.15-1.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-20.26.15-1.jpg?w=300 300w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-20.26.15-1.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-20.26.15-1.jpg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p class="wp-block-paragraph">V’s Uber arrived and I headed back uptown on the Subway, still a little confused by what the cashier in the bookstore had meant by her assertion that my t-shirt was “meta”.</p>



<p class="wp-block-paragraph">At the hotel bar, I took a stool and ordered an Old Fashioned, and then a second, and then a third. The third one tasted weird – not soapy, just weird – and I asked the server to check it. It turned out that she had made it with iced tea instead of whiskey. I ordered a fourth one, even though I really shouldn’t have. I sank that just as a massive crowd came in, and went to my room.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img data-attachment-id="2144" data-permalink="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/2018-05-24-22-30-20-1/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-22.30.20-1.jpg" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.2&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone 6s&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1527201020&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;4.15&quot;,&quot;iso&quot;:&quot;500&quot;,&quot;shutter_speed&quot;:&quot;0.066666666666667&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="2018-05-24 22.30.20-1" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-22.30.20-1.jpg?w=584" loading="lazy" width="1024" height="768" src="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-22.30.20-1.jpg?w=1024" alt="" class="wp-image-2144" srcset="https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-22.30.20-1.jpg?w=1024 1024w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-22.30.20-1.jpg?w=2048 2048w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-22.30.20-1.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-22.30.20-1.jpg?w=300 300w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-22.30.20-1.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/11/2018-05-24-22.30.20-1.jpg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p class="wp-block-paragraph">After opening the door, my room promptly span violently and I vomited into the toilet. For some reason, in that moment while I was bent over the toilet, my dad’s Alzheimer’s diagnosis forced itself into the forefront of my thoughts. He had been diagnosed in the January of that year but I realised, there and then, that I hadn’t accepted it, or even begun to process it, or remotely acknowledged what it meant. The journey to come to terms with it all began in that hotel bathroom, in New York, there and then.</p>



<p class="wp-block-paragraph">Whenever I see either that Jason Laurits or grey Muppets t-shirt in my wardrobe, I’m reminded of that night.</p>



<p class="wp-block-paragraph"><em>Both t-shirts mentioned in this piece form part of ‘All The T-Shirts I Wore In Lockdown’, a Mortality Tables collaboration with the superpolar Taïps label and anonymous sound artist Xqui.</em></p>



<p class="wp-block-paragraph"><em>Available on limited edition cassette single from <a href="https://superpolar.bandcamp.com/album/all-the-t-shirts-i-wore-in-lockdown-cassingle-35" target="_blank" rel="noreferrer noopener">superpolar.bandcamp.com</a>, with digital editions from <a href="https://mortalitytables.bandcamp.com/album/all-the-t-shirts-i-wore-in-lockdown" target="_blank" rel="noreferrer noopener">mortalitytables.bandcamp.com</a> and <a href="https://xqui.bandcamp.com/" target="_blank" rel="noreferrer noopener">xqui.bandcamp.com</a></em></p>



<p class="wp-block-paragraph">All proceeds from sales of this release will go to CALM – the Campaign Against Living Miserably – and Kölner Tafel.</p>



<p class="wp-block-paragraph">Words: Mat Smith</p>



<p class="wp-block-paragraph">(c) 2023 Documentary Evidence</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2142"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2142"
				>
				<span id="sharing-twitter-2142" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2142"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2142"
				>
				<span id="sharing-facebook-2142" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2142"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20A%20Tale%20Of%20Two%20T-shirts&#038;body=https%3A%2F%2F429harrowroad.com%2F2023%2F11%2F07%2Fa-tale-of-two-t-shirts%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2142"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="966ea2c081" data-email-share-track-url="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/?share=email">
				<span id="sharing-email-2142" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2142"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2142"
				>
				<span id="sharing-print-2142" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2142"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2142"
				>
				<span id="sharing-reddit-2142" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2142"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2142"
				>
				<span id="sharing-tumblr-2142" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2142"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2142"
				>
				<span id="sharing-pinterest-2142" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2142-69e3c31898822' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2142&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2142-69e3c31898822&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2142-69e3c31898822' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/miscellaneous/" rel="category tag">Miscellaneous</a>, <a href="https://429harrowroad.com/category/veryrecords/" rel="category tag">VeryRecords</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/all-the-t-shirts-i-wore-in-lockdown/" rel="tag">All The T-shirts I Wore In Lockdown</a>, <a href="https://429harrowroad.com/tag/mortality-tables/" rel="tag">Mortality Tables</a>, <a href="https://429harrowroad.com/tag/new-york/" rel="tag">New York</a>, <a href="https://429harrowroad.com/tag/reed-caroline/" rel="tag">Reed &amp; Caroline</a>, <a href="https://429harrowroad.com/tag/reed-hays/" rel="tag">Reed Hays</a>, <a href="https://429harrowroad.com/tag/vince-clarke/" rel="tag">Vince Clarke</a>, <a href="https://429harrowroad.com/tag/xqui/" rel="tag">Xqui</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/#respond"><span class="leave-reply">Leave a reply</span></a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2142 -->

				
					
	<article id="post-2135" class="post-2135 post type-post status-publish format-standard hentry category-miscellaneous tag-audio-obscura tag-counter-melodies tag-james-chapman tag-lifefiles tag-maps tag-mortality-tables tag-mute tag-neil-stringfellow tag-sft tag-simon-fisher-turner tag-the-naming-of-storms">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/" rel="bookmark">Maps &#8211; Lack Of Sleep (Short Story,&nbsp;2023)</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/" title="11:21" rel="bookmark"><time class="entry-date" datetime="2023-09-18T11:21:35+01:00">September 18, 2023</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/#respond"><span class="leave-reply">Reply</span></a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			<div class="wp-block-image">
<figure class="aligncenter size-large"><img data-attachment-id="2137" data-permalink="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/img_7022/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/09/img_7022.jpg" data-orig-size="700,700" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_7022" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/09/img_7022.jpg?w=584" loading="lazy" width="700" height="700" src="https://429harrowroad.com/wp-content/uploads/2023/09/img_7022.jpg?w=700" alt="" class="wp-image-2137" srcset="https://429harrowroad.com/wp-content/uploads/2023/09/img_7022.jpg 700w, https://429harrowroad.com/wp-content/uploads/2023/09/img_7022.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2023/09/img_7022.jpg?w=300 300w" sizes="(max-width: 700px) 100vw, 700px" /></figure>
</div>


<p class="wp-block-paragraph">To coincide with the release of <em>Counter Melodies</em> by <strong>Maps</strong> earlier this year. I wrote a short story inspired by the track ‘Lack Of Sleep’. You can read this <a href="https://429harrowroad.com/wp-content/uploads/2023/09/lack-of-sleep-inspired-by-maps-202303.pdf" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p class="wp-block-paragraph">This is the third short story I’ve written inspired by Maps tracks, following ‘Sophia’ (2019) and ‘A.M.A.’ (2013).</p>



<p class="wp-block-paragraph">‘Lack Of Sleep’ refers to a storm which adds to the insomnia that the narrator experiences. This was Storm Eunice. In parallel to writing the story, I made some field recordings of the storm, initially from the top floor of our house and then as I repaired the damage to our shed in its aftermath.</p>



<p class="wp-block-paragraph">These recordings, along with several others, were then used as the basis for <em>The Naming Of Storms</em> by <strong>Audio Obscura</strong> (Neil Stringfellow).</p>



<p class="wp-block-paragraph">This is the 11th release in the <em>LIFEFILES</em> series, part of the <strong>Mortality Tables</strong> collaborative project that I began in 2019. The <em>LIFEFILES</em> series has also included four pieces from <strong>Mute</strong> artist <strong>Simon Fisher Turner</strong>. </p>



<p class="wp-block-paragraph"><em>The Naming Of Storms </em>by Audio Obscura was released September 15 2023. Listen, download and follow Mortality Tables at <a href="http://www.mortality-tables.com/" target="_blank" rel="noreferrer noopener">mortality-tables.com</a></p>



<figure class="wp-block-image size-large"><img data-attachment-id="2138" data-permalink="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/img_6914/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/09/img_6914.jpg" data-orig-size="1200,1200" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_6914" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/09/img_6914.jpg?w=584" loading="lazy" width="1024" height="1024" src="https://429harrowroad.com/wp-content/uploads/2023/09/img_6914.jpg?w=1024" alt="" class="wp-image-2138" srcset="https://429harrowroad.com/wp-content/uploads/2023/09/img_6914.jpg?w=1024 1024w, https://429harrowroad.com/wp-content/uploads/2023/09/img_6914.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2023/09/img_6914.jpg?w=300 300w, https://429harrowroad.com/wp-content/uploads/2023/09/img_6914.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/09/img_6914.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">(c) 2023 Documentary Evidence</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2135"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2135"
				>
				<span id="sharing-twitter-2135" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2135"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2135"
				>
				<span id="sharing-facebook-2135" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2135"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20Maps%20-%20Lack%20Of%20Sleep%20%28Short%20Story%2C%202023%29&#038;body=https%3A%2F%2F429harrowroad.com%2F2023%2F09%2F18%2Fmaps-lack-of-sleep-short-story-2023%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2135"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="816ccf1c73" data-email-share-track-url="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/?share=email">
				<span id="sharing-email-2135" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2135"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2135"
				>
				<span id="sharing-print-2135" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2135"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2135"
				>
				<span id="sharing-reddit-2135" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2135"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2135"
				>
				<span id="sharing-tumblr-2135" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2135"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2135"
				>
				<span id="sharing-pinterest-2135" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2135-69e3c3189afdf' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2135&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2135-69e3c3189afdf&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2135-69e3c3189afdf' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/miscellaneous/" rel="category tag">Miscellaneous</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/audio-obscura/" rel="tag">Audio Obscura</a>, <a href="https://429harrowroad.com/tag/counter-melodies/" rel="tag">Counter Melodies</a>, <a href="https://429harrowroad.com/tag/james-chapman/" rel="tag">James Chapman</a>, <a href="https://429harrowroad.com/tag/lifefiles/" rel="tag">LIFEFILES</a>, <a href="https://429harrowroad.com/tag/maps/" rel="tag">Maps</a>, <a href="https://429harrowroad.com/tag/mortality-tables/" rel="tag">Mortality Tables</a>, <a href="https://429harrowroad.com/tag/mute/" rel="tag">Mute</a>, <a href="https://429harrowroad.com/tag/neil-stringfellow/" rel="tag">Neil Stringfellow</a>, <a href="https://429harrowroad.com/tag/sft/" rel="tag">SFT</a>, <a href="https://429harrowroad.com/tag/simon-fisher-turner/" rel="tag">Simon Fisher Turner</a>, <a href="https://429harrowroad.com/tag/the-naming-of-storms/" rel="tag">The Naming Of Storms</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/#respond"><span class="leave-reply">Leave a reply</span></a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2135 -->

				
					
	<article id="post-2133" class="post-2133 post type-post status-publish format-standard hentry category-album-reviews tag-blast-first tag-comicide tag-head-of-david tag-stephen-ah-burroughs tag-the-smeared-cloth-2012-2018-unearthed tag-tunnels-of-ah">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/" rel="bookmark">Tunnels Of Āh &#8211; The Smeared Cloth (2012 – 2018&nbsp;Unearthed)</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/" title="22:00" rel="bookmark"><time class="entry-date" datetime="2023-06-28T22:00:36+01:00">June 28, 2023</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/#respond"><span class="leave-reply">Reply</span></a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			
<div class="wp-block-image"><figure class="aligncenter size-large"><img data-attachment-id="2132" data-permalink="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/img_0900/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/06/img_0900.jpg" data-orig-size="700,700" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_0900" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/06/img_0900.jpg?w=584" loading="lazy" width="700" height="700" src="https://429harrowroad.com/wp-content/uploads/2023/06/img_0900.jpg?w=700" alt="" class="wp-image-2132" srcset="https://429harrowroad.com/wp-content/uploads/2023/06/img_0900.jpg 700w, https://429harrowroad.com/wp-content/uploads/2023/06/img_0900.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2023/06/img_0900.jpg?w=300 300w" sizes="(max-width: 700px) 100vw, 700px" /></figure></div>



<p class="wp-block-paragraph"><em>The Smeared Cloth </em>collates together previously unreleased material from <strong>Stephen Āh Burroughs</strong>’s <strong>Tunnels Of Āh</strong>. Burroughs was formerly a founding member of <strong>Blast First</strong> unit <strong>Head Of David</strong>, a group that grew out of the <a rel="noreferrer noopener" href="https://429harrowroad.com/2019/04/24/comicide-moral-improvement-live-1984ce-cruel-nature-album-2019/" target="_blank">Comicide</a> duo.</p>



<p class="wp-block-paragraph">Like those other projects, Tunnels Of Āh is brooding and impenetrable. My first play of this was through earphones on a crowded Northern Line train on a busy Monday morning; its sinister, grainy textures and harsh, enveloping blanket of dirty, primal sound left me looking at the world around me in a manifestly different way. It was almost as if these pieces allowed me to see through the veil of cheerful optimism that my fellow commuters had shrouded themselves with, revealing instead a swirling mass of uncertainty, paranoia and fear.</p>



<p class="wp-block-paragraph">With the possible exception of the final track, ‘White Distribution’, which has a sort of springy euphoria to its unpredictable clusters of electronic echoes, this is a uniformly dark collection. I was reluctant to draw comparisons with anything I’d heard before, but I was unintentionally reminded of <strong>Coil</strong> here, specifically their unused work for Clive Barker’s <em>Hellraiser</em>. Pieces like ‘Aceldama’ and ‘To The Paschal Victim’ share a similarly ritualistic edge to the unused Coil cues, brutally forcing you to stare deeply into an abyss of swirling, tempting, unending darkness. These pieces find Burroughs intoning mysterious, oblique verse over undulating drones, intense, head-cleaning bass, scratchy percussion and hissing, sibilant sounds that seem to gnaw away at you ceaselessly. One of the highlights, ‘Multi-Storey’, occupies an interstitial zone of high-pitched whining, gravelly distortion, slowly-fluttering metallic drones and muted, crashing sounds. Taken together, these interventions feel like the macroscopic, slowed-down exploration of a car crashing headlong into the concrete wall of an abandoned, dimly-lit inner city carpark.</p>



<p class="wp-block-paragraph">Other pieces like ‘Amorphophallus’ and ‘Fountains Of Light’ might, at least nominally, fall into a dark ambient category, but it is an uneasy and uncomfortable association. Dark ambient is often characterised by a feeling of foreboding and tension, whereas these pieces feel like that tension has abruptly snapped, replaced by a sort of clawing, incessant acquiescence and surrender.</p>



<p class="wp-block-paragraph">In case it wasn’t obvious, this is not an easy listen, and one that definitely isn’t for the feint-hearted. These tunnels that Burroughs has constructed bore deep into sinister, uncomfortable territory, pathways to a twisted, savage part of our collective psyches that we rarely choose to acknowledge. When the first passengers took to the nascent, smoke-clogged Tube in London, they felt like they were being confronted with a hellish inversion of Victorian progress. Perhaps Tunnels Of Āh’s music was always there in those tight, constrained pathways beneath the surface, waiting for the right moment to be drawn out from behind their blackened and grimy brick walls.</p>


<iframe width="100%" height="120" style="position: relative; display: block; width: 100%; height: 120px;" src="//bandcamp.com/EmbeddedPlayer/v=2/album=3096516305/size=large/bgcol=ffffff/linkcol=0687f5/tracklist=false/artwork=small/" allowtransparency="true" frameborder="0"></iframe>



<p class="wp-block-paragraph"><em>The Smeared Cloth (2012 – 2018 Unearthed) by Tunnels Of Āh was released 16 June 2023 by Cruel Nature and Zoharum. Thanks to Steve.</em></p>



<p class="wp-block-paragraph">Words: Mat Smith</p>



<p class="wp-block-paragraph">(c) 2023 Documentary Evidence</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2133"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2133"
				>
				<span id="sharing-twitter-2133" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2133"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2133"
				>
				<span id="sharing-facebook-2133" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2133"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20Tunnels%20Of%20%C4%80h%20-%20The%20Smeared%20Cloth%20%282012%20%E2%80%93%202018%20Unearthed%29&#038;body=https%3A%2F%2F429harrowroad.com%2F2023%2F06%2F28%2Ftunnels-of-ah-the-smeared-cloth-2012-2018-unearthed%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2133"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="1275a24390" data-email-share-track-url="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/?share=email">
				<span id="sharing-email-2133" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2133"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2133"
				>
				<span id="sharing-print-2133" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2133"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2133"
				>
				<span id="sharing-reddit-2133" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2133"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2133"
				>
				<span id="sharing-tumblr-2133" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2133"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2133"
				>
				<span id="sharing-pinterest-2133" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2133-69e3c3189d3e3' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2133&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2133-69e3c3189d3e3&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2133-69e3c3189d3e3' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/album-reviews/" rel="category tag">Album reviews</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/blast-first/" rel="tag">Blast First</a>, <a href="https://429harrowroad.com/tag/comicide/" rel="tag">Comicide</a>, <a href="https://429harrowroad.com/tag/head-of-david/" rel="tag">Head Of David</a>, <a href="https://429harrowroad.com/tag/stephen-ah-burroughs/" rel="tag">Stephen Àh Burroughs</a>, <a href="https://429harrowroad.com/tag/the-smeared-cloth-2012-2018-unearthed/" rel="tag">The Smeared Cloth (2012 – 2018 Unearthed)</a>, <a href="https://429harrowroad.com/tag/tunnels-of-ah/" rel="tag">Tunnels Of Āh</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/#respond"><span class="leave-reply">Leave a reply</span></a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2133 -->

				
					
	<article id="post-2126" class="post-2126 post type-post status-publish format-standard hentry category-uncategorized tag-alison-goldfrapp tag-here tag-outernet tag-the-love-invention">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/" rel="bookmark">Alison Goldfrapp &#8211; HERE at Outernet, London&nbsp;18.05.2023</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/" title="21:35" rel="bookmark"><time class="entry-date" datetime="2023-05-19T21:35:20+01:00">May 19, 2023</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/#respond"><span class="leave-reply">Reply</span></a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			
<figure class="wp-block-image size-large"><img data-attachment-id="2122" data-permalink="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/63d9eb6b-8bb0-4824-88f4-f22dce892313/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/05/63d9eb6b-8bb0-4824-88f4-f22dce892313.jpg" data-orig-size="1280,1600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="63d9eb6b-8bb0-4824-88f4-f22dce892313" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/05/63d9eb6b-8bb0-4824-88f4-f22dce892313.jpg?w=584" loading="lazy" width="819" height="1023" src="https://429harrowroad.com/wp-content/uploads/2023/05/63d9eb6b-8bb0-4824-88f4-f22dce892313.jpg?w=819" alt="" class="wp-image-2122" srcset="https://429harrowroad.com/wp-content/uploads/2023/05/63d9eb6b-8bb0-4824-88f4-f22dce892313.jpg?w=819 819w, https://429harrowroad.com/wp-content/uploads/2023/05/63d9eb6b-8bb0-4824-88f4-f22dce892313.jpg?w=120 120w, https://429harrowroad.com/wp-content/uploads/2023/05/63d9eb6b-8bb0-4824-88f4-f22dce892313.jpg?w=240 240w, https://429harrowroad.com/wp-content/uploads/2023/05/63d9eb6b-8bb0-4824-88f4-f22dce892313.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/05/63d9eb6b-8bb0-4824-88f4-f22dce892313.jpg 1280w" sizes="(max-width: 819px) 100vw, 819px" /><figcaption class="wp-element-caption">Photo: Justin Gliddon</figcaption></figure>



<p class="wp-block-paragraph">Following the release of <em>The Love Invention</em>, her debut solo album, <strong>Alison Goldfrapp</strong> played HERE at Outernet in London’s redeveloped Charing Cross / Tottenham Court Road quarter. A mix of tracks from the album and favourites from her time working with <strong>Will Gregory</strong> as <strong>Goldfrapp</strong>, the set was a mix of glitz and hits, full of the irrepressible energy that’s made <em>The Love Invention</em> such an impactful album.</p>



<p class="wp-block-paragraph">Read my review of <em>The Love Invention </em>for <em>Clash</em> <a href="https://www.clashmusic.com/reviews/alison-goldfrapp-the-love-invention/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p class="wp-block-paragraph"><strong>Set list</strong></p>



<p class="wp-block-paragraph">Hotel<br>Love Invention<br>Believer<br>Digging Deeper<br>Electric Blue<br>NeverStop<br>Number 1<br>Beat Divine<br>Impossible<br>Anymore<br>SloFlo<br>Gatto Gelato<br>Strict Machine<br>Rocket</p>



<p class="wp-block-paragraph"><em>Encore</em></p>



<p class="wp-block-paragraph">So Hard So Hot<br>Ride A White Horse<br>Fever</p>



<figure class="wp-block-image size-large"><img data-attachment-id="2121" data-permalink="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/66582793-45c3-4a1f-b778-8507fb31759f/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/05/66582793-45c3-4a1f-b778-8507fb31759f.jpg" data-orig-size="1504,1600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="66582793-45c3-4a1f-b778-8507fb31759f" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/05/66582793-45c3-4a1f-b778-8507fb31759f.jpg?w=584" loading="lazy" width="963" height="1024" src="https://429harrowroad.com/wp-content/uploads/2023/05/66582793-45c3-4a1f-b778-8507fb31759f.jpg?w=963" alt="" class="wp-image-2121" srcset="https://429harrowroad.com/wp-content/uploads/2023/05/66582793-45c3-4a1f-b778-8507fb31759f.jpg?w=963 963w, https://429harrowroad.com/wp-content/uploads/2023/05/66582793-45c3-4a1f-b778-8507fb31759f.jpg?w=141 141w, https://429harrowroad.com/wp-content/uploads/2023/05/66582793-45c3-4a1f-b778-8507fb31759f.jpg?w=282 282w, https://429harrowroad.com/wp-content/uploads/2023/05/66582793-45c3-4a1f-b778-8507fb31759f.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/05/66582793-45c3-4a1f-b778-8507fb31759f.jpg?w=1440 1440w, https://429harrowroad.com/wp-content/uploads/2023/05/66582793-45c3-4a1f-b778-8507fb31759f.jpg 1504w" sizes="(max-width: 963px) 100vw, 963px" /><figcaption class="wp-element-caption">Photo: Justin Gliddon</figcaption></figure>



<figure class="wp-block-image size-large"><img data-attachment-id="2120" data-permalink="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/05/bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f.jpg" data-orig-size="1280,1600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/05/bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f.jpg?w=584" loading="lazy" width="819" height="1023" src="https://429harrowroad.com/wp-content/uploads/2023/05/bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f.jpg?w=819" alt="" class="wp-image-2120" srcset="https://429harrowroad.com/wp-content/uploads/2023/05/bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f.jpg?w=819 819w, https://429harrowroad.com/wp-content/uploads/2023/05/bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f.jpg?w=120 120w, https://429harrowroad.com/wp-content/uploads/2023/05/bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f.jpg?w=240 240w, https://429harrowroad.com/wp-content/uploads/2023/05/bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/05/bc0e80c1-42c9-4d5f-8184-5b558b7bdb3f.jpg 1280w" sizes="(max-width: 819px) 100vw, 819px" /><figcaption class="wp-element-caption">Photo: Justin Gliddon</figcaption></figure>



<figure class="wp-block-image size-large"><img data-attachment-id="2123" data-permalink="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/9c90b770-9ca8-47ee-9191-717ea79c7388/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/05/9c90b770-9ca8-47ee-9191-717ea79c7388.jpg" data-orig-size="1362,1600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="9c90b770-9ca8-47ee-9191-717ea79c7388" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/05/9c90b770-9ca8-47ee-9191-717ea79c7388.jpg?w=584" loading="lazy" width="872" height="1024" src="https://429harrowroad.com/wp-content/uploads/2023/05/9c90b770-9ca8-47ee-9191-717ea79c7388.jpg?w=872" alt="" class="wp-image-2123" srcset="https://429harrowroad.com/wp-content/uploads/2023/05/9c90b770-9ca8-47ee-9191-717ea79c7388.jpg?w=872 872w, https://429harrowroad.com/wp-content/uploads/2023/05/9c90b770-9ca8-47ee-9191-717ea79c7388.jpg?w=128 128w, https://429harrowroad.com/wp-content/uploads/2023/05/9c90b770-9ca8-47ee-9191-717ea79c7388.jpg?w=255 255w, https://429harrowroad.com/wp-content/uploads/2023/05/9c90b770-9ca8-47ee-9191-717ea79c7388.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/05/9c90b770-9ca8-47ee-9191-717ea79c7388.jpg 1362w" sizes="(max-width: 872px) 100vw, 872px" /><figcaption class="wp-element-caption">Photo: Justin Gliddon</figcaption></figure>



<figure class="wp-block-image size-large"><img data-attachment-id="2124" data-permalink="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/9b802032-b816-43e5-8ae2-797bcd4d9639/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/05/9b802032-b816-43e5-8ae2-797bcd4d9639.jpg" data-orig-size="1416,1600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="9b802032-b816-43e5-8ae2-797bcd4d9639" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/05/9b802032-b816-43e5-8ae2-797bcd4d9639.jpg?w=584" loading="lazy" width="906" height="1023" src="https://429harrowroad.com/wp-content/uploads/2023/05/9b802032-b816-43e5-8ae2-797bcd4d9639.jpg?w=906" alt="" class="wp-image-2124" srcset="https://429harrowroad.com/wp-content/uploads/2023/05/9b802032-b816-43e5-8ae2-797bcd4d9639.jpg?w=906 906w, https://429harrowroad.com/wp-content/uploads/2023/05/9b802032-b816-43e5-8ae2-797bcd4d9639.jpg?w=133 133w, https://429harrowroad.com/wp-content/uploads/2023/05/9b802032-b816-43e5-8ae2-797bcd4d9639.jpg?w=266 266w, https://429harrowroad.com/wp-content/uploads/2023/05/9b802032-b816-43e5-8ae2-797bcd4d9639.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/05/9b802032-b816-43e5-8ae2-797bcd4d9639.jpg 1416w" sizes="(max-width: 906px) 100vw, 906px" /><figcaption class="wp-element-caption">Photo: Justin Gliddon</figcaption></figure>



<figure class="wp-block-image size-large"><img data-attachment-id="2125" data-permalink="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/292db440-4f2c-4add-b987-d1ccc7a5efd1/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/05/292db440-4f2c-4add-b987-d1ccc7a5efd1.jpg" data-orig-size="1024,574" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="292db440-4f2c-4add-b987-d1ccc7a5efd1" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/05/292db440-4f2c-4add-b987-d1ccc7a5efd1.jpg?w=584" loading="lazy" width="1024" height="574" src="https://429harrowroad.com/wp-content/uploads/2023/05/292db440-4f2c-4add-b987-d1ccc7a5efd1.jpg?w=1024" alt="" class="wp-image-2125" srcset="https://429harrowroad.com/wp-content/uploads/2023/05/292db440-4f2c-4add-b987-d1ccc7a5efd1.jpg 1024w, https://429harrowroad.com/wp-content/uploads/2023/05/292db440-4f2c-4add-b987-d1ccc7a5efd1.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2023/05/292db440-4f2c-4add-b987-d1ccc7a5efd1.jpg?w=300 300w, https://429harrowroad.com/wp-content/uploads/2023/05/292db440-4f2c-4add-b987-d1ccc7a5efd1.jpg?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Photo: Andy Sturmey</figcaption></figure>



<p class="wp-block-paragraph"><em>Thanks to Justin, Andy and Chris. Sorry to have missed you Shaun. </em></p>



<p class="wp-block-paragraph">(c) 2023 Documentary Evidence</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2126"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2126"
				>
				<span id="sharing-twitter-2126" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2126"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2126"
				>
				<span id="sharing-facebook-2126" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2126"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20Alison%20Goldfrapp%20-%20HERE%20at%20Outernet%2C%20London%2018.05.2023&#038;body=https%3A%2F%2F429harrowroad.com%2F2023%2F05%2F19%2Falison-goldfrapp-here-at-outernet-london-18-05-2023%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2126"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="f9e573dd76" data-email-share-track-url="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/?share=email">
				<span id="sharing-email-2126" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2126"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2126"
				>
				<span id="sharing-print-2126" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2126"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2126"
				>
				<span id="sharing-reddit-2126" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2126"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2126"
				>
				<span id="sharing-tumblr-2126" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2126"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2126"
				>
				<span id="sharing-pinterest-2126" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2126-69e3c318a4f2a' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2126&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2126-69e3c318a4f2a&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2126-69e3c318a4f2a' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/uncategorized/" rel="category tag">Uncategorized</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/alison-goldfrapp/" rel="tag">Alison Goldfrapp</a>, <a href="https://429harrowroad.com/tag/here/" rel="tag">HERE</a>, <a href="https://429harrowroad.com/tag/outernet/" rel="tag">Outernet</a>, <a href="https://429harrowroad.com/tag/the-love-invention/" rel="tag">The Love Invention</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/#respond"><span class="leave-reply">Leave a reply</span></a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2126 -->

				
					
	<article id="post-2119" class="post-2119 post type-post status-publish format-standard hentry category-live-reviews tag-follow-the-cyborg tag-lafayette tag-margaret-sohn tag-miss-grit tag-mute">
		<header class="entry-header">
						<h1 class="entry-title"><a href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/" rel="bookmark">Miss Grit &#8211; Lafayette, London&nbsp;04.04.2023</a></h1>
			
						<div class="entry-meta">
				<span class="sep">Posted on </span><a href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/" title="10:00" rel="bookmark"><time class="entry-date" datetime="2023-04-05T10:00:00+01:00">April 5, 2023</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="https://429harrowroad.com/author/429harrowroad/" title="View all posts by 429harrowroad" rel="author">429harrowroad</a></span></span>			</div><!-- .entry-meta -->
			
						<div class="comments-link">
				<a href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/#respond"><span class="leave-reply">Reply</span></a>			</div>
					</header><!-- .entry-header -->

				<div class="entry-content">
			
<figure class="wp-block-image size-large"><img data-attachment-id="2117" data-permalink="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/img_4535/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/04/img_4535.jpg" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.8&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone SE (3rd generation)&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1680639848&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.99&quot;,&quot;iso&quot;:&quot;400&quot;,&quot;shutter_speed&quot;:&quot;0.027777777777778&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_4535" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/04/img_4535.jpg?w=584" loading="lazy" width="1024" height="768" src="https://429harrowroad.com/wp-content/uploads/2023/04/img_4535.jpg?w=1024" class="wp-image-2117" srcset="https://429harrowroad.com/wp-content/uploads/2023/04/img_4535.jpg?w=1024 1024w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4535.jpg?w=2048 2048w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4535.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4535.jpg?w=300 300w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4535.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4535.jpg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph"><strong>Miss Grit </strong>(New York’s <strong>Margaret Sohn</strong>) played a set at Lafayette in London’s Kings Cross, supporting Bartees Strange.</p>



<p class="wp-block-paragraph">Consisting of tracks taken from the excellent debut Miss Grit album for <strong>Mute</strong>, <em>Follow The Cyborg</em>, Sohn seems to embody a certain captivating impassivity in their performance. It’s almost as if Sohn is playing the cyborg character that dominates the theming of their album: movements are scant, they cradle their white guitar like it’s another limb and there is a sort of emotionlessness etched on their face, even as the music on a track like ‘Follow The Cyborg’ reaches a climactic, feverish intensity.</p>



<figure class="wp-block-image size-large"><img data-attachment-id="2118" data-permalink="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/img_4534/" data-orig-file="https://429harrowroad.com/wp-content/uploads/2023/04/img_4534.jpg" data-orig-size="4032,3024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.8&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone SE (3rd generation)&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1680638485&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.99&quot;,&quot;iso&quot;:&quot;500&quot;,&quot;shutter_speed&quot;:&quot;0.033333333333333&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_4534" data-image-description="" data-image-caption="" data-large-file="https://429harrowroad.com/wp-content/uploads/2023/04/img_4534.jpg?w=584" loading="lazy" width="1024" height="768" src="https://429harrowroad.com/wp-content/uploads/2023/04/img_4534.jpg?w=1024" class="wp-image-2118" srcset="https://429harrowroad.com/wp-content/uploads/2023/04/img_4534.jpg?w=1024 1024w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4534.jpg?w=2048 2048w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4534.jpg?w=150 150w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4534.jpg?w=300 300w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4534.jpg?w=768 768w, https://429harrowroad.com/wp-content/uploads/2023/04/img_4534.jpg?w=1440 1440w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Watching their guitar playing on ‘Like You’ is utterly mesmerising. Sohn is adept at affixing big, snarling riffs onto their songs in a style not dissimilar to Robert Fripp’s work on Bowie’s ‘Fashion’. These riffs arrive with an abruptness and intensity that’s often at odds with either Sohn’s vocals or their electronic arrangements, much as their smile at the end of a piece seemed incompatible with the detachment of the performance itself, or the philosophical gravity of the lyrics. The movements of Sohn’s hands along the neck of their guitar on ‘Like You’ was subtle, robotic almost, in spite of the noisy, grubby distorted blast of all-encompassing noise it produced.</p>



<p class="wp-block-paragraph">The set concluded with ‘Syncing’, one of the many highlights from Follow The Cyborg. Here it was imbued with heavy emotion in spite of its stateliness and subtlety, the phrase ‘people change twice a year’ seeming to hang in the atmosphere of Lafayette like both a reassuring salve and futile acknowledgment of human weakness.</p>



<p class="wp-block-paragraph"><em>Thanks to Zoe and Paul.</em></p>



<p class="wp-block-paragraph">Words: Mat Smith</p>



<p class="wp-block-paragraph">(c) 2023 Documentary Evidence</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-twitter-2119"
				class="share-twitter sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/?share=twitter"
				target="_blank"
				aria-labelledby="sharing-twitter-2119"
				>
				<span id="sharing-twitter-2119" hidden>Share on X (Opens in new window)</span>
				<span>X</span>
			</a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-facebook-2119"
				class="share-facebook sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/?share=facebook"
				target="_blank"
				aria-labelledby="sharing-facebook-2119"
				>
				<span id="sharing-facebook-2119" hidden>Share on Facebook (Opens in new window)</span>
				<span>Facebook</span>
			</a></li><li class="share-email"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-email-2119"
				class="share-email sd-button share-icon no-text"
				href="mailto:?subject=%5BShared%20Post%5D%20Miss%20Grit%20-%20Lafayette%2C%20London%2004.04.2023&#038;body=https%3A%2F%2F429harrowroad.com%2F2023%2F04%2F05%2Fmiss-grit-lafayette-london-04-04-2023%2F&#038;share=email"
				target="_blank"
				aria-labelledby="sharing-email-2119"
				data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="5b7742bc68" data-email-share-track-url="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/?share=email">
				<span id="sharing-email-2119" hidden>Email a link to a friend (Opens in new window)</span>
				<span>Email</span>
			</a></li><li><a href="#" class="sharing-anchor sd-button share-more"><span>More</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-print"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-print-2119"
				class="share-print sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/?share=print"
				target="_blank"
				aria-labelledby="sharing-print-2119"
				>
				<span id="sharing-print-2119" hidden>Print (Opens in new window)</span>
				<span>Print</span>
			</a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-reddit-2119"
				class="share-reddit sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/?share=reddit"
				target="_blank"
				aria-labelledby="sharing-reddit-2119"
				>
				<span id="sharing-reddit-2119" hidden>Share on Reddit (Opens in new window)</span>
				<span>Reddit</span>
			</a></li><li class="share-tumblr"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-tumblr-2119"
				class="share-tumblr sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/?share=tumblr"
				target="_blank"
				aria-labelledby="sharing-tumblr-2119"
				>
				<span id="sharing-tumblr-2119" hidden>Share on Tumblr (Opens in new window)</span>
				<span>Tumblr</span>
			</a></li><li class="share-pinterest"><a rel="nofollow noopener noreferrer"
				data-shared="sharing-pinterest-2119"
				class="share-pinterest sd-button share-icon no-text"
				href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/?share=pinterest"
				target="_blank"
				aria-labelledby="sharing-pinterest-2119"
				>
				<span id="sharing-pinterest-2119" hidden>Share on Pinterest (Opens in new window)</span>
				<span>Pinterest</span>
			</a></li><li class="share-end"></li></ul></div></div></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-65288150-2119-69e3c318a8b48' data-src='//widgets.wp.com/likes/index.html?ver=20260418#blog_id=65288150&amp;post_id=2119&amp;origin=429harrowroad.wordpress.com&amp;obj_id=65288150-2119-69e3c318a8b48&amp;domain=429harrowroad.com' data-name='like-post-frame-65288150-2119-69e3c318a8b48' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>					</div><!-- .entry-content -->
		
		<footer class="entry-meta">
			
									<span class="cat-links">
					<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="https://429harrowroad.com/category/live-reviews/" rel="category tag">Live reviews</a>			</span>
							
									<span class="sep"> | </span>
								<span class="tag-links">
					<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="https://429harrowroad.com/tag/follow-the-cyborg/" rel="tag">Follow The Cyborg</a>, <a href="https://429harrowroad.com/tag/lafayette/" rel="tag">Lafayette</a>, <a href="https://429harrowroad.com/tag/margaret-sohn/" rel="tag">Margaret Sohn</a>, <a href="https://429harrowroad.com/tag/miss-grit/" rel="tag">Miss Grit</a>, <a href="https://429harrowroad.com/tag/mute/" rel="tag">Mute</a>			</span>
							
									<span class="sep"> | </span>
						<span class="comments-link"><a href="https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/#respond"><span class="leave-reply">Leave a reply</span></a></span>
			
					</footer><!-- .entry-meta -->
	</article><!-- #post-2119 -->

				
							<nav id="nav-below">
				<h3 class="assistive-text">Post navigation</h3>
				<div class="nav-previous"><a href="https://429harrowroad.com/page/2/" ><span class="meta-nav">&larr;</span> Older posts</a></div>
				<div class="nav-next"></div>
			</nav><!-- #nav-above -->
			
			
			</div><!-- #content -->
		</div><!-- #primary -->

		<div id="secondary" class="widget-area" role="complementary">
					<aside id="search-2" class="widget widget_search">	<form method="get" id="searchform" action="https://429harrowroad.com/">
		<label for="s" class="assistive-text">Search</label>
		<input type="text" class="field" name="s" id="s" placeholder="Search" />
		<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
	</form>
</aside>
		<aside id="recent-posts-2" class="widget widget_recent_entries">
		<h3 class="widget-title">Recent Posts</h3>
		<ul>
											<li>
					<a href="https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/">Dave Ball (2019&nbsp;Interview)</a>
									</li>
											<li>
					<a href="https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/">Depeche Mode: M (Clash&nbsp;review)</a>
									</li>
											<li>
					<a href="https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/">Sketching Venus &#8211; lvu (Edvard Graham Lewis&nbsp;Venursion)</a>
									</li>
											<li>
					<a href="https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/">I&#8217;m Dreaming Of A Mute&nbsp;Christmas</a>
									</li>
											<li>
					<a href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/">Maps &#8211; Sparks In The Snow (Short Story,&nbsp;2024)</a>
									</li>
					</ul>

		</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h3 class="widget-title">Recent Comments</h3>				<table class="recentcommentsavatar" cellspacing="0" cellpadding="0" border="0">
					<tr><td title="Stuart Allen Neal" class="recentcommentsavatartop" style="height:48px; width:48px;"><img referrerpolicy="no-referrer" alt='Stuart Allen Neal&#039;s avatar' src='https://2.gravatar.com/avatar/2d23e51cbc64cf901e4819b23189def50fbf1da45ac173f115cfa2ed22c635e0?s=48&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/2d23e51cbc64cf901e4819b23189def50fbf1da45ac173f115cfa2ed22c635e0?s=48&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/2d23e51cbc64cf901e4819b23189def50fbf1da45ac173f115cfa2ed22c635e0?s=72&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/2d23e51cbc64cf901e4819b23189def50fbf1da45ac173f115cfa2ed22c635e0?s=96&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/2d23e51cbc64cf901e4819b23189def50fbf1da45ac173f115cfa2ed22c635e0?s=144&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/2d23e51cbc64cf901e4819b23189def50fbf1da45ac173f115cfa2ed22c635e0?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></td><td class="recentcommentstexttop" style="">Stuart Allen Neal on <a href="https://429harrowroad.com/2019/12/24/its-a-wonderful-serious-of-snakes/comment-page-1/#comment-8977">It’s A Wonderful Serious Of&hellip;</a></td></tr><tr><td title="Bucketlist Becky" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="https://www.bucketlistbecky.com/" rel="nofollow"><img referrerpolicy="no-referrer" alt='Bucketlist Becky&#039;s avatar' src='https://1.gravatar.com/avatar/73d64999271b06a0d1faeebf3352ed8ddb08bfadc9eea677847eebd4d48a0a79?s=48&#038;d=identicon&#038;r=G' srcset='https://1.gravatar.com/avatar/73d64999271b06a0d1faeebf3352ed8ddb08bfadc9eea677847eebd4d48a0a79?s=48&#038;d=identicon&#038;r=G 1x, https://1.gravatar.com/avatar/73d64999271b06a0d1faeebf3352ed8ddb08bfadc9eea677847eebd4d48a0a79?s=72&#038;d=identicon&#038;r=G 1.5x, https://1.gravatar.com/avatar/73d64999271b06a0d1faeebf3352ed8ddb08bfadc9eea677847eebd4d48a0a79?s=96&#038;d=identicon&#038;r=G 2x, https://1.gravatar.com/avatar/73d64999271b06a0d1faeebf3352ed8ddb08bfadc9eea677847eebd4d48a0a79?s=144&#038;d=identicon&#038;r=G 3x, https://1.gravatar.com/avatar/73d64999271b06a0d1faeebf3352ed8ddb08bfadc9eea677847eebd4d48a0a79?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="https://www.bucketlistbecky.com/" rel="nofollow">Bucketlist Becky</a> on <a href="https://429harrowroad.com/2019/05/08/maps-clash-feature-2019/comment-page-1/#comment-8975">Maps (Clash feature,&nbsp;2019&hellip;</a></td></tr><tr><td title="Tommy S" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="https://www.tommysanford.com/" rel="nofollow"><img referrerpolicy="no-referrer" alt='Tommy S&#039;s avatar' src='https://0.gravatar.com/avatar/0807d306637e9bc7770f9c3e83cc146ad24535203ce24df6da7b5506eae588f1?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/0807d306637e9bc7770f9c3e83cc146ad24535203ce24df6da7b5506eae588f1?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/0807d306637e9bc7770f9c3e83cc146ad24535203ce24df6da7b5506eae588f1?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/0807d306637e9bc7770f9c3e83cc146ad24535203ce24df6da7b5506eae588f1?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/0807d306637e9bc7770f9c3e83cc146ad24535203ce24df6da7b5506eae588f1?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/0807d306637e9bc7770f9c3e83cc146ad24535203ce24df6da7b5506eae588f1?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="https://www.tommysanford.com/" rel="nofollow">Tommy S</a> on <a href="https://429harrowroad.com/2019/12/06/can-silent-night/comment-page-1/#comment-8974">Can &#8211; Silent&nbsp;Night</a></td></tr><tr><td title="I&#8217;m Dreaming Of A Mute Christmas | Documentary Evidence" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="https://429harrowroad.com/2023/12/18/im-dreaming-of-a-mute-christmas/" rel="nofollow"><img referrerpolicy="no-referrer" alt='Unknown&#039;s avatar' src='https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=48' srcset='https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=48 1x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=72 1.5x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=96 2x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=144 3x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=147 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="https://429harrowroad.com/2023/12/18/im-dreaming-of-a-mute-christmas/" rel="nofollow">I&#8217;m Dreaming O&hellip;</a> on <a href="https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/comment-page-1/#comment-8973">Maps &#8211; Sparks In The Sno&hellip;</a></td></tr><tr><td title="somdjhirelondon" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="http://soundofmusicmobiledisco.wordpress.com" rel="nofollow"><img referrerpolicy="no-referrer" alt='somdjhirelondon&#039;s avatar' src='https://1.gravatar.com/avatar/775e9d5f3b43c2d83b972bcf36d89af386eb6143ea0b4767a58af2e3158e02db?s=48&#038;d=identicon&#038;r=G' srcset='https://1.gravatar.com/avatar/775e9d5f3b43c2d83b972bcf36d89af386eb6143ea0b4767a58af2e3158e02db?s=48&#038;d=identicon&#038;r=G 1x, https://1.gravatar.com/avatar/775e9d5f3b43c2d83b972bcf36d89af386eb6143ea0b4767a58af2e3158e02db?s=72&#038;d=identicon&#038;r=G 1.5x, https://1.gravatar.com/avatar/775e9d5f3b43c2d83b972bcf36d89af386eb6143ea0b4767a58af2e3158e02db?s=96&#038;d=identicon&#038;r=G 2x, https://1.gravatar.com/avatar/775e9d5f3b43c2d83b972bcf36d89af386eb6143ea0b4767a58af2e3158e02db?s=144&#038;d=identicon&#038;r=G 3x, https://1.gravatar.com/avatar/775e9d5f3b43c2d83b972bcf36d89af386eb6143ea0b4767a58af2e3158e02db?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' /></a></td><td class="recentcommentstextend" style=""><a href="http://soundofmusicmobiledisco.wordpress.com" rel="nofollow">somdjhirelondon</a> on <a href="https://429harrowroad.com/2014/07/28/simian-mobile-disco-chris-keating-audacity-of-huge-wichita-2009/comment-page-1/#comment-8972">Simian Mobile Disco &amp; Chri&hellip;</a></td></tr>				</table>
				</aside><aside id="archives-2" class="widget widget_archive"><h3 class="widget-title">Archives</h3>
			<ul>
					<li><a href='https://429harrowroad.com/2025/11/'>November 2025</a></li>
	<li><a href='https://429harrowroad.com/2025/10/'>October 2025</a></li>
	<li><a href='https://429harrowroad.com/2025/03/'>March 2025</a></li>
	<li><a href='https://429harrowroad.com/2024/12/'>December 2024</a></li>
	<li><a href='https://429harrowroad.com/2023/11/'>November 2023</a></li>
	<li><a href='https://429harrowroad.com/2023/09/'>September 2023</a></li>
	<li><a href='https://429harrowroad.com/2023/06/'>June 2023</a></li>
	<li><a href='https://429harrowroad.com/2023/05/'>May 2023</a></li>
	<li><a href='https://429harrowroad.com/2023/04/'>April 2023</a></li>
	<li><a href='https://429harrowroad.com/2022/12/'>December 2022</a></li>
	<li><a href='https://429harrowroad.com/2022/11/'>November 2022</a></li>
	<li><a href='https://429harrowroad.com/2022/09/'>September 2022</a></li>
	<li><a href='https://429harrowroad.com/2022/05/'>May 2022</a></li>
	<li><a href='https://429harrowroad.com/2022/04/'>April 2022</a></li>
	<li><a href='https://429harrowroad.com/2021/05/'>May 2021</a></li>
	<li><a href='https://429harrowroad.com/2021/04/'>April 2021</a></li>
	<li><a href='https://429harrowroad.com/2021/02/'>February 2021</a></li>
	<li><a href='https://429harrowroad.com/2021/01/'>January 2021</a></li>
	<li><a href='https://429harrowroad.com/2020/12/'>December 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/11/'>November 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/10/'>October 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/09/'>September 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/08/'>August 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/07/'>July 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/06/'>June 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/05/'>May 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/04/'>April 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/03/'>March 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/02/'>February 2020</a></li>
	<li><a href='https://429harrowroad.com/2020/01/'>January 2020</a></li>
	<li><a href='https://429harrowroad.com/2019/12/'>December 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/11/'>November 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/10/'>October 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/09/'>September 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/08/'>August 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/07/'>July 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/06/'>June 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/05/'>May 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/04/'>April 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/03/'>March 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/02/'>February 2019</a></li>
	<li><a href='https://429harrowroad.com/2019/01/'>January 2019</a></li>
	<li><a href='https://429harrowroad.com/2018/12/'>December 2018</a></li>
	<li><a href='https://429harrowroad.com/2018/11/'>November 2018</a></li>
	<li><a href='https://429harrowroad.com/2018/10/'>October 2018</a></li>
	<li><a href='https://429harrowroad.com/2018/09/'>September 2018</a></li>
	<li><a href='https://429harrowroad.com/2018/07/'>July 2018</a></li>
	<li><a href='https://429harrowroad.com/2018/06/'>June 2018</a></li>
	<li><a href='https://429harrowroad.com/2018/05/'>May 2018</a></li>
	<li><a href='https://429harrowroad.com/2018/04/'>April 2018</a></li>
	<li><a href='https://429harrowroad.com/2018/03/'>March 2018</a></li>
	<li><a href='https://429harrowroad.com/2017/12/'>December 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/11/'>November 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/10/'>October 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/09/'>September 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/07/'>July 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/06/'>June 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/05/'>May 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/04/'>April 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/03/'>March 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/02/'>February 2017</a></li>
	<li><a href='https://429harrowroad.com/2017/01/'>January 2017</a></li>
	<li><a href='https://429harrowroad.com/2016/12/'>December 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/11/'>November 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/10/'>October 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/09/'>September 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/08/'>August 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/07/'>July 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/06/'>June 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/05/'>May 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/03/'>March 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/02/'>February 2016</a></li>
	<li><a href='https://429harrowroad.com/2016/01/'>January 2016</a></li>
	<li><a href='https://429harrowroad.com/2015/12/'>December 2015</a></li>
	<li><a href='https://429harrowroad.com/2015/11/'>November 2015</a></li>
	<li><a href='https://429harrowroad.com/2015/10/'>October 2015</a></li>
	<li><a href='https://429harrowroad.com/2015/09/'>September 2015</a></li>
	<li><a href='https://429harrowroad.com/2015/05/'>May 2015</a></li>
	<li><a href='https://429harrowroad.com/2015/04/'>April 2015</a></li>
	<li><a href='https://429harrowroad.com/2015/03/'>March 2015</a></li>
	<li><a href='https://429harrowroad.com/2015/02/'>February 2015</a></li>
	<li><a href='https://429harrowroad.com/2015/01/'>January 2015</a></li>
	<li><a href='https://429harrowroad.com/2014/12/'>December 2014</a></li>
	<li><a href='https://429harrowroad.com/2014/10/'>October 2014</a></li>
	<li><a href='https://429harrowroad.com/2014/09/'>September 2014</a></li>
	<li><a href='https://429harrowroad.com/2014/08/'>August 2014</a></li>
	<li><a href='https://429harrowroad.com/2014/07/'>July 2014</a></li>
	<li><a href='https://429harrowroad.com/2014/06/'>June 2014</a></li>
	<li><a href='https://429harrowroad.com/2014/05/'>May 2014</a></li>
	<li><a href='https://429harrowroad.com/2014/04/'>April 2014</a></li>
	<li><a href='https://429harrowroad.com/2014/03/'>March 2014</a></li>
			</ul>

			</aside><aside id="categories-2" class="widget widget_categories"><h3 class="widget-title">Categories</h3>
			<ul>
					<li class="cat-item cat-item-17445"><a href="https://429harrowroad.com/category/album-reviews/">Album reviews</a>
</li>
	<li class="cat-item cat-item-3328"><a href="https://429harrowroad.com/category/book-reviews/">Book reviews</a>
</li>
	<li class="cat-item cat-item-129645500"><a href="https://429harrowroad.com/category/calm-collect/">Calm + Collect</a>
</li>
	<li class="cat-item cat-item-533733908"><a href="https://429harrowroad.com/category/album-reviews/cat-werk-imprint-album-reviews/">Cat Werk Imprint album reviews</a>
</li>
	<li class="cat-item cat-item-534961298"><a href="https://429harrowroad.com/category/album-reviews/central-control-international-albums/">Central Control International albums</a>
</li>
	<li class="cat-item cat-item-534961793"><a href="https://429harrowroad.com/category/single-reviews/central-control-international-singles/">Central Control International singles</a>
</li>
	<li class="cat-item cat-item-561948267"><a href="https://429harrowroad.com/category/features/clash-features/">Clash features</a>
</li>
	<li class="cat-item cat-item-114866634"><a href="https://429harrowroad.com/category/interviews/clash-interviews/">Clash interviews</a>
</li>
	<li class="cat-item cat-item-290347438"><a href="https://429harrowroad.com/category/clash-reviews/">Clash reviews</a>
</li>
	<li class="cat-item cat-item-5412"><a href="https://429harrowroad.com/category/cocktails/">Cocktails</a>
</li>
	<li class="cat-item cat-item-649904443"><a href="https://429harrowroad.com/category/cold-war-night-life-reviews/">Cold War Night Life reviews</a>
</li>
	<li class="cat-item cat-item-58875"><a href="https://429harrowroad.com/category/compilations/">Compilations</a>
</li>
	<li class="cat-item cat-item-505263477"><a href="https://429harrowroad.com/category/interviews/electronic-sound-interviews/">Electronic Sound interviews</a>
</li>
	<li class="cat-item cat-item-66741161"><a href="https://429harrowroad.com/category/electronic-sound-reviews/">Electronic Sound reviews</a>
</li>
	<li class="cat-item cat-item-9548"><a href="https://429harrowroad.com/category/features/">Features</a>
</li>
	<li class="cat-item cat-item-81467491"><a href="https://429harrowroad.com/category/feeder-reviews/">Feeder reviews</a>
</li>
	<li class="cat-item cat-item-1747"><a href="https://429harrowroad.com/category/fiction/">Fiction</a>
</li>
	<li class="cat-item cat-item-66810"><a href="https://429harrowroad.com/category/film-and-dvd-reviews/">Film and DVD reviews</a>
</li>
	<li class="cat-item cat-item-831"><a href="https://429harrowroad.com/category/interviews/">Interviews</a>
</li>
	<li class="cat-item cat-item-44058"><a href="https://429harrowroad.com/category/live-reviews/">Live reviews</a>
</li>
	<li class="cat-item cat-item-34765"><a href="https://429harrowroad.com/category/merchandise/">Merchandise</a>
</li>
	<li class="cat-item cat-item-875"><a href="https://429harrowroad.com/category/miscellaneous/">Miscellaneous</a>
</li>
	<li class="cat-item cat-item-103"><a href="https://429harrowroad.com/category/features/news/">News</a>
</li>
	<li class="cat-item cat-item-227785227"><a href="https://429harrowroad.com/category/non-mute-related/">Non-Mute / Related</a>
</li>
	<li class="cat-item cat-item-304"><a href="https://429harrowroad.com/category/photos/">Photos</a>
</li>
	<li class="cat-item cat-item-7449"><a href="https://429harrowroad.com/category/playlists/">Playlists</a>
</li>
	<li class="cat-item cat-item-163299"><a href="https://429harrowroad.com/category/reissues/">Reissues</a>
</li>
	<li class="cat-item cat-item-66784"><a href="https://429harrowroad.com/category/single-reviews/">Single reviews</a>
</li>
	<li class="cat-item cat-item-635157542"><a href="https://429harrowroad.com/category/album-reviews/tapeworm-reviews/">Tapeworm reviews</a>
</li>
	<li class="cat-item cat-item-574463762"><a href="https://429harrowroad.com/category/the-peoples-electric/">The People&#039;s Electric</a>
</li>
	<li class="cat-item cat-item-290347430"><a href="https://429harrowroad.com/category/this-is-not-retro-reviews/">This Is Not Retro reviews</a>
</li>
	<li class="cat-item cat-item-290347433"><a href="https://429harrowroad.com/category/totalmk-reviews/">TotalMK reviews</a>
</li>
	<li class="cat-item cat-item-1"><a href="https://429harrowroad.com/category/uncategorized/">Uncategorized</a>
</li>
	<li class="cat-item cat-item-505263079"><a href="https://429harrowroad.com/category/very-records-album-reviews/">Very Records album reviews</a>
</li>
	<li class="cat-item cat-item-468869337"><a href="https://429harrowroad.com/category/veryrecords/">VeryRecords</a>
</li>
			</ul>

			</aside><aside id="meta-2" class="widget widget_meta"><h3 class="widget-title">Meta</h3>
		<ul>
			<li><a class="click-register" href="https://wordpress.com/start?ref=wplogin">Create account</a></li>			<li><a href="https://429harrowroad.wordpress.com/wp-login.php">Log in</a></li>
			<li><a href="https://429harrowroad.com/feed/">Entries feed</a></li>
			<li><a href="https://429harrowroad.com/comments/feed/">Comments feed</a></li>

			<li><a href="https://wordpress.com/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.com</a></li>
		</ul>

		</aside><aside id="blog_subscription-2" class="widget widget_blog_subscription jetpack_subscription_widget"><h3 class="widget-title"><label for="subscribe-field">Follow Documentary Evidence by email</label></h3>

			<div class="wp-block-jetpack-subscriptions__container">
			<form
				action="https://subscribe.wordpress.com"
				method="post"
				accept-charset="utf-8"
				data-blog="65288150"
				data-post_access_level="everybody"
				id="subscribe-blog"
			>
				<p>Enter your email address to follow this blog and receive notifications of new posts by email.</p>
				<p id="subscribe-email">
					<label
						id="subscribe-field-label"
						for="subscribe-field"
						class="screen-reader-text"
					>
						Email Address:					</label>

					<input
							type="email"
							name="email"
							autocomplete="email"
							
							style="width: 95%; padding: 1px 10px"
							placeholder="Email Address"
							value=""
							id="subscribe-field"
							required
						/>				</p>

				<p id="subscribe-submit"
									>
					<input type="hidden" name="action" value="subscribe"/>
					<input type="hidden" name="blog_id" value="65288150"/>
					<input type="hidden" name="source" value="https://429harrowroad.com/"/>
					<input type="hidden" name="sub-type" value="widget"/>
					<input type="hidden" name="redirect_fragment" value="subscribe-blog"/>
					<input type="hidden" id="_wpnonce" name="_wpnonce" value="07a8de2882" />					<button type="submit"
													class="wp-block-button__link"
																	>
						Follow					</button>
				</p>
			</form>
							<div class="wp-block-jetpack-subscriptions__subscount">
					Join 77 other subscribers				</div>
						</div>
			
</aside><aside id="search-3" class="widget widget_search">	<form method="get" id="searchform" action="https://429harrowroad.com/">
		<label for="s" class="assistive-text">Search</label>
		<input type="text" class="field" name="s" id="s" placeholder="Search" />
		<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
	</form>
</aside>		</div><!-- #secondary .widget-area -->

	</div><!-- #main -->

	<footer id="colophon">

			

			<div id="site-generator">
				 								<a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a>
			</div>
	</footer><!-- #colophon -->
</div><!-- #page -->

		<script type="text/javascript">
		var infiniteScroll = {"settings":{"id":"content","ajaxurl":"https://429harrowroad.com/?infinity=scrolling","type":"scroll","wrapper":true,"wrapper_class":"infinite-wrap","footer":"page","click_handle":"1","text":"Older posts","totop":"Scroll back to top","currentday":"05.04.23","order":"DESC","scripts":[],"styles":[],"google_analytics":false,"offset":1,"history":{"host":"429harrowroad.com","path":"/page/%d/","use_trailing_slashes":true,"parameters":""},"query_args":{"error":"","m":"","p":0,"post_parent":"","subpost":"","subpost_id":"","attachment":"","attachment_id":0,"name":"","pagename":"","page_id":0,"second":"","minute":"","hour":"","day":0,"monthnum":0,"year":0,"w":0,"category_name":"","tag":"","cat":"","tag_id":"","author":"","author_name":"","feed":"","tb":"","paged":0,"meta_key":"","meta_value":"","preview":"","s":"","sentence":"","title":"","fields":"all","menu_order":"","embed":"","category__in":[],"category__not_in":[],"category__and":[],"post__in":[],"post__not_in":[],"post_name__in":[],"tag__in":[],"tag__not_in":[],"tag__and":[],"tag_slug__in":[],"tag_slug__and":[],"post_parent__in":[],"post_parent__not_in":[],"author__in":[],"author__not_in":[],"search_columns":[],"lazy_load_term_meta":false,"posts_per_page":10,"ignore_sticky_posts":false,"suppress_filters":false,"cache_results":true,"update_post_term_cache":true,"update_menu_item_cache":false,"update_post_meta_cache":true,"post_type":"","nopaging":false,"comments_per_page":"50","no_found_rows":false,"order":"DESC"},"query_before":"2026-04-18 18:44:56","last_post_date":"2023-04-05 10:00:00","body_class":"infinite-scroll neverending","loading_text":"Loading new page","stats":"blog=65288150\u0026v=wpcom\u0026tz=1\u0026user_id=0\u0026arch_home=1\u0026subd=429harrowroad\u0026x_pagetype=infinite"}};
		</script>
		<!--  -->
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/files/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/pub/twentyeleven/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="grofiles-cards-js" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=202616d1133547e8a1f2801609f51cef12522abe7f6647d869e9fbc974fe356a37e613"></script>
<script id="wpgroho-js-extra">
var WPGroHo = {"my_hash":""};
//# sourceURL=wpgroho-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script>

	<script>
		// Initialize and attach hovercards to all gravatars
		( function() {
			function init() {
				if ( typeof Gravatar === 'undefined' ) {
					return;
				}

				if ( typeof Gravatar.init !== 'function' ) {
					return;
				}

				Gravatar.profile_cb = function ( hash, id ) {
					WPGroHo.syncProfileData( hash, id );
				};

				Gravatar.my_hash = WPGroHo.my_hash;
				Gravatar.init(
					'body',
					'#wp-admin-bar-my-account',
					{
						i18n: {
							'Edit your profile →': 'Edit your profile →',
							'View profile →': 'View profile →',
							'Contact': 'Contact',
							'Send money': 'Send money',
							'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
							'Gravatar not found.': 'Gravatar not found.',
							'Too Many Requests.': 'Too Many Requests.',
							'Internal Server Error.': 'Internal Server Error.',
							'Is this you?': 'Is this you?',
							'Claim your free profile.': 'Claim your free profile.',
							'Email': 'Email',
							'Home Phone': 'Home Phone',
							'Work Phone': 'Work Phone',
							'Cell Phone': 'Cell Phone',
							'Contact Form': 'Contact Form',
							'Calendar': 'Calendar',
						},
					}
				);
			}

			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
	</script>

		<div style="display:none">
	<div class="grofile-hash-map-5f17b3e6297174144bbc5e08606ebee4">
	</div>
	<div class="grofile-hash-map-65d873a3017f0decec092fe2cb536846">
	</div>
	<div class="grofile-hash-map-1018ec17bba502ec55a51b7b54a24518">
	</div>
	<div class="grofile-hash-map-04a5e9cd5f6bc9f28dc5da849f4c34ee">
	</div>
	</div>
		<div id="infinite-footer">
			<div class="container">
				<div class="blog-info">
					<a id="infinity-blog-title" href="https://429harrowroad.com/" rel="home">
						Documentary Evidence					</a>
				</div>
				<div class="blog-credits">
					<a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a> 				</div>
			</div>
		</div><!-- #infinite-footer -->
				<div id="actionbar" dir="ltr" style="display: none;"
			class="actnbr-pub-twentyeleven actnbr-has-follow actnbr-has-actions">
		<ul>
								<li class="actnbr-btn actnbr-hidden">
								<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
							<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
							<div class="tip-arrow"></div>
							<div class="tip-inner actnbr-follow-bubble">
															<ul>
											<li class="actnbr-sitename">
			<a href="https://429harrowroad.com">
				<img loading='lazy' alt='' src='https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=50' srcset='https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=50 1x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=75 1.5x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=100 2x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=147 3x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=147 4x' class='avatar avatar-50' height='50' width='50' />				Documentary Evidence			</a>
		</li>
										<div class="actnbr-message no-display"></div>
									<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
																						<div class="actnbr-follow-count">Join 77 other subscribers</div>
																					<div>
										<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" />
										</div>
										<input type="hidden" name="action" value="subscribe" />
										<input type="hidden" name="blog_id" value="65288150" />
										<input type="hidden" name="source" value="https://429harrowroad.com/" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="07a8de2882" />										<div class="actnbr-button-wrap">
											<button type="submit" value="Sign me up">
												Sign me up											</button>
										</div>
									</form>
									<li class="actnbr-login-nudge">
										<div>
											Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252F429harrowroad.com%252F2025%252F11%252F13%252Fdave-ball-2019-interview%252F">Log in now.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</li>
							<li class="actnbr-ellipsis actnbr-hidden">
				<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg>				<div class="actnbr-popover tip tip-top-left actnbr-more">
					<div class="tip-arrow"></div>
					<div class="tip-inner">
						<ul>
								<li class="actnbr-sitename">
			<a href="https://429harrowroad.com">
				<img loading='lazy' alt='' src='https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=50' srcset='https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=50 1x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=75 1.5x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=100 2x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=147 3x, https://429harrowroad.com/wp-content/uploads/2019/01/cropped-docev5.jpg?w=147 4x' class='avatar avatar-50' height='50' width='50' />				Documentary Evidence			</a>
		</li>
								<li class="actnbr-folded-follow">
										<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
								</li>
														<li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
							<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252F429harrowroad.com%252F2025%252F11%252F13%252Fdave-ball-2019-interview%252F">Log in</a></li>
															<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=https://429harrowroad.com" target="_blank" rel="noopener noreferrer">
										Report this content									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/feeds/101943762">
										View site in Reader									</a>
								</li>
															<li class="actnbr-subs">
									<a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
								</li>
																<li class="actnbr-fold"><a href="">Collapse this bar</a></li>
														</ul>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<script>
window.addEventListener( "DOMContentLoaded", function( event ) {
	var link = document.createElement( "link" );
	link.href = "/wp-content/mu-plugins/actionbar/actionbar.css?v=20250116";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );

	var script = document.createElement( "script" );
	script.src = "/wp-content/mu-plugins/actionbar/actionbar.js?v=20250204";
	document.body.appendChild( script );
} );
</script>

			<div id="jp-carousel-loading-overlay">
			<div id="jp-carousel-loading-wrapper">
				<span id="jp-carousel-library-loading">&nbsp;</span>
			</div>
		</div>
		<div class="jp-carousel-overlay" style="display: none;">

		<div class="jp-carousel-container">
			<!-- The Carousel Swiper -->
			<div
				class="jp-carousel-wrap swiper jp-carousel-swiper-container jp-carousel-transitions"
				itemscope
				itemtype="https://schema.org/ImageGallery">
				<div class="jp-carousel swiper-wrapper"></div>
				<div class="jp-swiper-button-prev swiper-button-prev">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12">
							<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskPrev)">
							<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
				<div class="jp-swiper-button-next swiper-button-next">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12">
							<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskNext)">
							<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
			</div>
			<!-- The main close buton -->
			<div class="jp-carousel-close-hint">
				<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
					<mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14">
						<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/>
					</mask>
					<g mask="url(#maskClose)">
						<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/>
					</g>
				</svg>
			</div>
			<!-- Image info, comments and meta -->
			<div class="jp-carousel-info">
				<div class="jp-carousel-info-footer">
					<div class="jp-carousel-pagination-container">
						<div class="jp-swiper-pagination swiper-pagination"></div>
						<div class="jp-carousel-pagination"></div>
					</div>
					<div class="jp-carousel-photo-title-container">
						<h2 class="jp-carousel-photo-caption"></h2>
					</div>
					<div class="jp-carousel-photo-icons-container">
						<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/>
									</mask>
									<g mask="url(#maskInfo)">
										<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
							</span>
						</a>
												<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/>
									</mask>
									<g mask="url(#maskComments)">
										<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>

								<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span>
							</span>
						</a>
											</div>
				</div>
				<div class="jp-carousel-info-extra">
					<div class="jp-carousel-info-content-wrapper">
						<div class="jp-carousel-photo-title-container">
							<h2 class="jp-carousel-photo-title"></h2>
						</div>
						<div class="jp-carousel-comments-wrapper">
															<div id="jp-carousel-comments-loading">
									<span>Loading Comments...</span>
								</div>
								<div class="jp-carousel-comments"></div>
								<div id="jp-carousel-comment-form-container">
									<span id="jp-carousel-comment-form-spinner">&nbsp;</span>
									<div id="jp-carousel-comment-post-results"></div>
																														<form id="jp-carousel-comment-form">
												<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label>
												<textarea
													name="comment"
													class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea"
													id="jp-carousel-comment-form-comment-field"
													placeholder="Write a Comment..."
												></textarea>
												<div id="jp-carousel-comment-form-submit-and-info-wrapper">
													<div id="jp-carousel-comment-form-commenting-as">
																													<fieldset>
																<label for="jp-carousel-comment-form-email-field">Email (Required)</label>
																<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-author-field">Name (Required)</label>
																<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-url-field">Website</label>
																<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" />
															</fieldset>
																											</div>
													<input
														type="submit"
														name="submit"
														class="jp-carousel-comment-form-button"
														id="jp-carousel-comment-form-button-submit"
														value="Post Comment" />
												</div>
											</form>
																											</div>
													</div>
						<div class="jp-carousel-image-meta">
							<div class="jp-carousel-title-and-caption">
								<div class="jp-carousel-photo-info">
									<h3 class="jp-carousel-caption" itemprop="caption description"></h3>
								</div>

								<div class="jp-carousel-photo-description"></div>
							</div>
							<ul class="jp-carousel-image-exif" style="display: none;"></ul>
							<a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="19" height="18">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/>
									</mask>
									<g mask="url(#mask0)">
										<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
								<span class="jp-carousel-download-text"></span>
							</a>
							<div class="jp-carousel-image-map" style="display: none;"></div>
						</div>
					</div>
				</div>
			</div>
		</div>

		</div>
		
	<script type="text/javascript">
		window.WPCOM_sharing_counts = {"https://429harrowroad.com/2025/11/13/dave-ball-2019-interview/":2176,"https://429harrowroad.com/2025/10/24/depeche-mode-m-clash-review/":2173,"https://429harrowroad.com/2025/03/29/sketching-venus-lvu-edvard-graham-lewis-venursion/":2168,"https://429harrowroad.com/2024/12/24/im-dreaming-of-a-mute-christmas/":2010,"https://429harrowroad.com/2024/12/23/maps-sparks-in-the-snow-short-story-2024/":2158,"https://429harrowroad.com/2023/11/07/a-tale-of-two-t-shirts/":2142,"https://429harrowroad.com/2023/09/18/maps-lack-of-sleep-short-story-2023/":2135,"https://429harrowroad.com/2023/06/28/tunnels-of-ah-the-smeared-cloth-2012-2018-unearthed/":2133,"https://429harrowroad.com/2023/05/19/alison-goldfrapp-here-at-outernet-london-18-05-2023/":2126,"https://429harrowroad.com/2023/04/05/miss-grit-lafayette-london-04-04-2023/":2119};
	</script>
						
	<script type="text/javascript">
		(function () {
			var wpcom_reblog = {
				source: 'toolbar',

				toggle_reblog_box_flair: function (obj_id, post_id) {

					// Go to site selector. This will redirect to their blog if they only have one.
					const postEndpoint = `https://wordpress.com/post`;

					// Ideally we would use the permalink here, but fortunately this will be replaced with the 
					// post permalink in the editor.
					const originalURL = `${ document.location.href }?page_id=${ post_id }`; 
					
					const url =
						postEndpoint +
						'?url=' +
						encodeURIComponent( originalURL ) +
						'&is_post_share=true' +
						'&v=5';

					const redirect = function () {
						if (
							! window.open( url, '_blank' )
						) {
							location.href = url;
						}
					};

					if ( /Firefox/.test( navigator.userAgent ) ) {
						setTimeout( redirect, 0 );
					} else {
						redirect();
					}
				},
			};

			window.wpcom_reblog = wpcom_reblog;
		})();
	</script>
<script id="coblocks-loader-js-extra">
var wpcom_coblocks_js = {"coblocks_masonry_js":"https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-masonry.min.js?m=1681832297i","coblocks_lightbox_js":"https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-lightbox.min.js?m=1681832297i","jquery_core_js":"/wp-includes/js/jquery/jquery.min.js","jquery_migrate_js":"/wp-includes/js/jquery/jquery-migrate.min.js","masonry_js":"/wp-includes/js/masonry.min.js","imagesloaded_js":"/wp-includes/js/imagesloaded.min.js"};
var coblocksLigthboxData = {"closeLabel":"Close Gallery","leftLabel":"Previous","rightLabel":"Next"};
//# sourceURL=coblocks-loader-js-extra
</script>
<script id="jetpack-carousel-js-extra">
var jetpackSwiperLibraryPath = {"url":"/wp-content/mu-plugins/jetpack-plugin/sun/_inc/blocks/swiper.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https://429harrowroad.com/wp-admin/admin-ajax.php","nonce":"ec434d745b","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","image_label":"Open image in full-screen.","download_original":"View full size \u003Cspan class=\"photo-size\"\u003E{0}\u003Cspan class=\"photo-size-times\"\u003E\u00d7\u003C/span\u003E{1}\u003C/span\u003E","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https://429harrowroad.wordpress.com/wp-login.php?redirect_to=https%3A%2F%2F429harrowroad.com%2F2025%2F11%2F13%2Fdave-ball-2019-interview%2F","blog_id":"65288150","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=65288150&v=wpcom&tz=1&user_id=0&arch_home=1&subd=429harrowroad","is_public":"1"};
//# sourceURL=jetpack-carousel-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJyNjkEOgjAQRS9kO4AS3BiPYqCMOmWYYqfVeHtdgCaGhcv38/Ly4TEZFyShJBizmThfSBSYBlS4Zcx4baVnjNbrBtZlj2lq3TAzaBY4kTjoMnEPJGcSSmjUxcC88NOOJL/RpehCx8ENCpUt97Y0SuPEaCLe7Q560gT+KxkObf8+uNL7+6RrY8iK/NGWYa4ex0PZNHVVbOui8S9Bo3Hx'></script>
<script data-wp-strategy="defer" defer id="tiled-gallery-js" src="/wp-content/mu-plugins/jetpack-plugin/sun/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js?m=1755011788i&#038;ver=15.8-a.4"></script>
<script id="sharing-js-js-extra">
var sharing_js_options = {"lang":"en","counts":"1","is_stats_active":"1"};
//# sourceURL=sharing-js-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??/wp-content/mu-plugins/carousel-wpcom/carousel-wpcom.js,/wp-content/mu-plugins/jetpack-plugin/sun/_inc/build/sharedaddy/sharing.min.js?m=1761899756j'></script>
<script id="sharing-js-js-after">
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-twitter' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-twitter' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtwitter', 'menubar=1,resizable=1,width=600,height=350' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-facebook' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-facebook' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomfacebook', 'menubar=1,resizable=1,width=600,height=400' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-tumblr' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-tumblr' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtumblr', 'menubar=1,resizable=1,width=450,height=450' );
						return false;
					}
				} );
			} )();
//# sourceURL=sharing-js-js-after
</script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/","ext":".png","svgUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/","svgExt":".svg","source":{"concatemoji":"/wp-includes/js/wp-emoji-release.min.js?m=1764078722i&ver=7.0-RC2-62212"}}
</script>
<script type="module">
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
//# sourceURL=/wp-includes/js/wp-emoji-loader.min.js
</script>
		<script type="text/javascript">
			(function() {
				var extend = function(out) {
					out = out || {};

					for (var i = 1; i < arguments.length; i++) {
						if (!arguments[i])
						continue;

						for (var key in arguments[i]) {
						if (arguments[i].hasOwnProperty(key))
							out[key] = arguments[i][key];
						}
					}

					return out;
				};
				extend( window.infiniteScroll.settings.scripts, ["jetpack-mu-wpcom-settings","rlt-proxy","wpcom-actionbar-placeholder","grofiles-cards","wpgroho","jetpack_likes_queuehandler","the-neverending-homepage","coblocks-loader","jetpack-carousel","tiled-gallery","carousel-wpcom","sharing-js"] );
				extend( window.infiniteScroll.settings.styles, ["jetpack_likes","the-neverending-homepage","coblocks-frontend","wpcom-core-compat-playlist-styles","wpcom-bbpress2-staff-css","twentyeleven-block-style","twentyeleven-wpcom-style","reblogging","geo-location-flair","infinity-twentyeleven","sharedaddy","social-logos","h4-global","wp-emoji-styles","wp-block-library","classic-theme-styles","wp-block-styles-placeholder","wp-global-styles-placeholder","jetpack-global-styles-frontend-style","wp-block-embed","wp-block-embed-theme","wp-block-html","wp-block-html-theme","wp-block-image","wp-block-image-theme","wp-block-paragraph","wp-block-paragraph-theme","wp-block-shortcode","wp-block-shortcode-theme","global-styles","jetpack-swiper-library","jetpack-carousel","jetpack-subscriptions","tiled-gallery","core-block-supports-duotone"] );
			})();
		</script>
				<span id="infinite-aria" aria-live="polite"></span>
			<iframe src='https://widgets.wp.com/likes/master.html?ver=20260418#ver=20260418' scrolling='no' id='likes-master' name='likes-master' style='display:none;'></iframe>
	<div id='likes-other-gravatars' role="dialog" aria-hidden="true" tabindex="-1"><div class="likes-text"><span>%d</span></div><ul class="wpl-avatars sd-like-gravatars"></ul></div>
	<script src="//stats.wp.com/w.js?68" defer></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'65288150','blog_tz':'1','user_lang':'en','blog_lang':'en','user_id':'0'}]);
		// Prevent sending pageview tracking from WP-Admin pages.
		_stq.push(['view', {'blog':'65288150','v':'wpcom','tz':'1','user_id':'0','arch_home':'1','subd':'429harrowroad'}]);
		_stq.push(['extra', {'crypt':'UE5tW3cvZGQ/JUs1UEo3MlhbTHVDVTRvbmM3RjIzb05bci89VFVBXWJyUHxLW3UxSX56MnYtbG02L2cuPWpdMjI2eHFTa1NuTjVFelhkUmRUcUlMUHomcVtUUHo/Q080LjducTVTa34tJXJXbTk0Z2Z4cFpHJi1NSTFsMn5QaW8tRHFyeStmP1gwJUdyVE5pLix6ZTgxQXd2WEIvVlRSWnlDSG5taGp2PVZ1fG41Ji5pbGROdS5ra3BVMjhVS1omSnRQbS83eVdYUGxIb2NoYlFocVpRa1FULk5kUXFdLjA1V2dKUWFGSHEzZ1IvJTZrdC0='}]);
_stq.push([ 'clickTrackerInit', '65288150', '0' ]);
</script>
<noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<meta id="bilmur" property="bilmur:data" content="" data-provider="wordpress.com" data-service="simple" data-site-tz="Europe/London" data-custom-props="{&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;pub\/twentyeleven&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}"  >
		<script defer src="/wp-content/js/bilmur.min.js?i=17&amp;m=202616"></script> 	
</body>
</html>
<!--
	generated in 0.297 seconds
	281874 bytes batcached for 300 seconds
-->
