<!DOCTYPE html>
<html class='v2 list-page' dir='ltr' itemscope='' itemtype='http://schema.org/Blog' lang='en' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<link href='https://www.blogger.com/static/v1/widgets/2872013778-css_bundle_v2.css' rel='stylesheet' type='text/css'/>
<title>
Debug Project
</title>
<meta content='width=device-width, height=device-height, minimum-scale=1.0, initial-scale=1.0, user-scalable=0' name='viewport'/>
<meta content='IE=Edge' http-equiv='X-UA-Compatible'/>
<meta content='Debug Project' property='og:title'/>
<meta content='en_US' property='og:locale'/>
<meta content='https://blog.debug.com/' property='og:url'/>
<meta content='Debug Project' property='og:site_name'/>
<!-- Twitter Card properties -->
<meta content='Debug Project' property='og:title'/>
<meta content='summary' name='twitter:card'/>
<link href='https://fonts.googleapis.com/css?family=Roboto:400italic,400,500,500italic,700,700italic' rel='stylesheet' type='text/css'/>
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'/>
<link href='https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i|Work+Sans' rel='stylesheet'/>
<link href='https://fonts.googleapis.com' rel='preconnect'/>
<link crossorigin='' href='https://fonts.gstatic.com' rel='preconnect'/>
<link as='style' href='//fonts.googleapis.com/css2?family=Product+Sans&family=Google+Sans+Display:ital@0;1&family=Google+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Google+Sans+Text:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap' rel='preload'/>
<link href='//fonts.googleapis.com/css2?family=Product+Sans&family=Google+Sans+Display:ital@0;1&family=Google+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Google+Sans+Text:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap' rel='stylesheet'/>
<link charset='utf-8' href='https://debug.com/css/glue-footer.min.css' rel='stylesheet'/>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js' type='text/javascript'></script>
<script src='https://apis.google.com/js/platform.js'></script>
<!-- End -->
<script type='text/javascript'>
      //<![CDATA[
      var BreakpointHandler = function() {
        this.initted = false;
        this.isHomePage = false;
        this.isMobile = false;
      };
      BreakpointHandler.prototype.finalizeSummary = function(summaryHtml, lastNode) {
        // Use $.trim for IE8 compatibility
        summaryHtml = $.trim(summaryHtml).replace(/(<br>|\s)+$/,'');
        if (lastNode.nodeType == 3) {
          var lastChar = summaryHtml.slice(-1);
          if (!lastChar.match(/[.”"?]/)) {
            if (!lastChar.match(/[A-Za-z]/)) {
              summaryHtml = summaryHtml.slice(0, -1);
            }
            summaryHtml += ' ...';
          }
        } else if (lastNode.nodeType == 1 && (lastNode.nodeName == 'I' || lastNode.nodeName == 'A')) {
          summaryHtml += ' ...';
        }
        return summaryHtml;
      };
      BreakpointHandler.prototype.generateSummaryFromContent = function(content, numWords) {
        var seenWords = 0;
        var summaryHtml = '';
        for (var i=0; i < content.childNodes.length; i++) {
          var node = content.childNodes[i];
          var nodeText;
          if (node.nodeType == 1) {
            if (node.hasAttribute('data-about-pullquote')) {
              continue;
            }
            nodeText = node.textContent;
            if (nodeText === undefined) {
              // innerText for IE8
              nodeText = node.innerText;
            }
            if (node.nodeName == 'DIV' || node.nodeName == 'B') {
              // Don't end early if we haven't seen enough words.
              if (seenWords < 10) {
                continue;
              }
              if (i > 0) {
                summaryHtml = this.finalizeSummary(summaryHtml, content.childNodes[i-1]);
              }
              break;
            }
            summaryHtml += node.outerHTML;
          } else if (node.nodeType == 3) {
            nodeText = node.nodeValue;
            summaryHtml += nodeText + ' ';
          }
          var words = nodeText.match(/\S+\s*/g);
          if (!words) {
            continue;
          }
          var remain = numWords - seenWords;
          if (words.length >= remain) {
            summaryHtml = this.finalizeSummary(summaryHtml, node);
            break;
          }
          seenWords += words.length;
        }
        return summaryHtml;
      };
      BreakpointHandler.prototype.detect = function() {
        var match,
            pl     = /\+/g,
            search = /([^&=]+)=?([^&]*)/g,
            decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
            query  = window.location.search.substring(1);
        var urlParams = {};
        while (match = search.exec(query))
          urlParams[decode(match[1])] = decode(match[2]);
        this.isListPage = $('html').hasClass('list-page');
        this.isMobile = urlParams['m'] === '1';
        this.isHomePage = window.location.pathname == '/';
      };
      BreakpointHandler.prototype.initContent = function() {
        var self = this;
        $('.post').each(function(index) {
          var body = $(this).children('.post-body')[0];
          var content = $(body).children('.post-content')[0];
          $(content).addClass('post-original');
          var data = $(content).children('script').html();
          data = self.rewriteForSSL(data);
          // If exists, extract specified editor's preview.
          var match = data.match(/([\s\S]+?)<div data-is-preview.+?>([\s\S]+)<\/div>/m);
          if (match) {
            data = match[1];
          }
          // Prevent big images from loading when they aren't needed.
          // This must be done as a pre-injection step, since image loading can't be
          // canceled once embedded into the DOM.
          if (self.isListPage && self.isMobile) {
            data = data.replace(/<(img|iframe) .+?>/g, '');
          }
          // Insert template to be rendered as nodes.
          content.innerHTML = data;
          if (self.isListPage) {
            var summary = document.createElement('div');
            $(summary).addClass('post-content');
            $(summary).addClass('post-summary');
            body.insertBefore(summary, content);
            if (match) {
              // Use provided summary.
              summary.innerHTML = match[2];
            } else {
              // Generate a summary.
              // Summary generation relies on DOM, so it must occur after content is
              // inserted into the page.
              summary.innerHTML = self.generateSummaryFromContent(content, 30);
            }
            // Add read more link to summary.
            var titleAnchor = $(this).find('.title a')[0];
            var link = titleAnchor.cloneNode(true);
            link.innerHTML = 'Read More';
            $(link).addClass('read-more');
            summary.appendChild(link);
          }
        });
        // Firefox does not allow for proper styling of BR.
        if (navigator.userAgent.indexOf('Firefox') > -1) {
          $('.post-content br').replaceWith('<span class="space"></span>');
        }
        $('.loading').removeClass('loading');
      };
      BreakpointHandler.prototype.process = function() {
        if (!this.initted) {
          var makeInsecureImageRegex = function(hosts) {
            var whitelist = hosts.join('|').replace(/\./g,'\\.');
            // Normal image tags, plus input images (yes, this is possible!)
            return new RegExp('(<(img|input)[^>]+?src=("|\'))http:\/\/(' + whitelist +')', 'g');
          };
          this.sslImageRegex = makeInsecureImageRegex(BreakpointHandler.KNOWN_HTTPS_HOSTS);
          this.sslImageCurrentDomainRegex = makeInsecureImageRegex([window.location.hostname]);
          this.detect();
          this.initContent();
          this.initted = true;
        }
      };
      BreakpointHandler.KNOWN_HTTPS_HOSTS = [
        "www.google.org",
        "www.google.com",
        "services.google.com",
        "blogger.com",
        "draft.blogger.com",
        "www.blogger.com",
        "photos1.blogger.com",
        "photos2.blogger.com",
        "photos3.blogger.com",
        "blogblog.com",
        "img1.blogblog.com",
        "img2.blogblog.com",
        "www.blogblog.com",
        "www1.blogblog.com",
        "www2.blogblog.com",
        "0.bp.blogspot.com",
        "1.bp.blogspot.com",
        "2.bp.blogspot.com",
        "3.bp.blogspot.com",
        "4.bp.blogspot.com",
        "lh3.googleusercontent.com",
        "lh4.googleusercontent.com",
        "lh5.googleusercontent.com",
        "lh6.googleusercontent.com",
        "themes.googleusercontent.com",
      ];
        BreakpointHandler.prototype.rewriteForSSL = function(html) {
        // Handle HTTP -> HTTPS source replacement of images, movies, and other embedded content.
        return html.replace(this.sslImageRegex, '$1https://$4')
        .replace(this.sslImageCurrentDomainRegex, '$1//$4')
        .replace(/(<(embed|iframe)[^>]+?src=("|'))http:\/\/([^"']*?(youtube|picasaweb\.google)\.com)/g, '$1https://$4')
        // Slideshow SWF takes a image host, so we need to rewrite that parameter.
        .replace(/(<embed[^>]+?feed=http(?=[^s]))/g, '$1s');
        };
        $(document).ready(function() {
        var handler = new BreakpointHandler();
        handler.process();
        // Top-level navigation.
        $(".BlogArchive .tab").click(function(ev) {
        ev.preventDefault();
        $(this).parent().toggleClass('active');
        $(this).siblings().slideToggle(300);
        });
        $(".Label .tab").click(function(ev) {
        ev.preventDefault();
        $(this).parent().toggleClass('active');
        $(this).siblings().slideToggle(300);
        });
        // Blog archive year expansion.
        $('.BlogArchive .intervalToggle').click(function(ev) {
        ev.preventDefault();
        if ($(this).parent().hasClass('collapsed')) {
        $(this).parent().removeClass('collapsed');
        $(this).parent().addClass('expanded');
        } else {
        $(this).parent().removeClass('expanded');
        $(this).parent().addClass('collapsed');
        }
        });
        // Reverse order of months.
        $('.BlogArchive .intervalToggle + div').each(function(_, items) {
        var year = $(this);
        year.children().each(function(_, month) {
        year.prepend(month);
        });
        });
        // Set anchors to open in new tab.
        $('.post-content img').parent().each(function(_, node) {
        if (node.nodeName == 'A') {
        $(this).attr('target', '_blank');
        }
        });
        // Process search requests.
        $('.searchBox input').on("keypress", function(ev) {
        if (ev.which == 13) {
        window.location.href = 'https://www.google.com/search?q=site%3A' + window.location.hostname + '%20' + encodeURIComponent ($(this).val());
        }
        });
        });
        //]]>
    </script>
<style>
    html,
    body {
      margin: 0 auto;
      min-height: 100%;
      max-width: 1200px;
    }

    html {
      height: 100%;
    }

    body {
      background-color: #fafafa;
      display: flex;
      flex-direction: column;
      font-family: Karla, sans-serif;
      padding: 0 10px 50px;
    }

    h2, h3, h4 {
      color: #424242;
      font-weight: 700;
	  font-family: Karla, sans-serif;
    }

	h2.title {
	  font-size: 36px;
      line-height: 34px;
      letter-spacing: -0.065em;
      margin-top: 10px;
      margin-bottom: 10px;
  	}

    h3 {
	  font-size: 24px;
      line-height: 24px;
      letter-spacing: -0.02em;
      margin-top: 10px;
      margin-bottom: 10px;
  	}

	h4 {
	  font-size: 18px;
      line-height: 24px;
      letter-spacing: -0.02em;
      margin-top: 10px;
      margin-bottom: 10px;
    }

    a {
      color: #2878ff;
      text-decoration: none;
    }

    nav {
      align-items: center;
      display: flex;
      justify-content: space-between;
      height: 85px;
    }

    nav.responsive {
      height: inherit;
    }

    .logo-text {
      display: inline-block;
      font-size: 35px;
      font-weight: bold;
    }

    .logo-subtext {
      display: inline-block;
      font-size: 10px;
      padding-left: 4px;
      width: 60px;
    }

    .header {
      background-color: #fff;
      border-radius: 0 0 2px 2px;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
      margin-bottom: 25px;
    }

    .header .img {
      max-height: 75px;
    }

    .header .links {
      display: inherit;
      font-size: 16px;
      letter-spacing: -.06em;
      line-height: 85px;
      list-style-type: none;
      overflow: hidden;
      margin-left: auto;
    }

    .header .links li {
      padding-right: 28px;
    }

    .header .links a {
      color: #2861ff;
    }

    .links .link {
      display: none;
    }

    .links.responsive {
      display: inline-table;
      width: 100%;
      padding: 0;
      margin: 0;
    }

    .links .link.responsive {
      display: block;
    }

    .links .link.responsive a {
      display: block;
      text-align: left;
      margin-left:28px;
    }

    .header .logo {
      position: absolute;
      top: 20px;
      padding-left: 24px;
      white-space: nowrap;
      line-height: 1;
    }

    .header .links .icon {
      cursor: pointer;
      display: block;
      text-align: right;
    }

    .header .links.responsive .icon {
      cursor: pointer;
      display: block;
      text-align: right;
    }

    .links .link:not(:last-child) {
      margin-right: 68px;
    }

    .links .link.responsive {
      margin-right: 0;
      border-style: solid;
      border-color: rgba(0,0,0,.3);
      border-width: 1px 0 0 0;
      white-space: nowrap;
    }
    .link-details {
      border-bottom: 2px solid transparent;
    }

    .link-details:hover {
      border-color: #2861ff;
    }
    .footer-links {
      border-bottom: 2px solid transparent;
    }

    .footer-links:hover {
      border-color: #a9a9a9;
    }

    #link-blog{
      border-bottom: 2px solid transparent;
      border-color: #2861ff;
    }

    .header .img-ham {
      width: 18px;
    }

    .cols-wrapper-content {
      background-color: #fff;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
      min-height: 1000px;
    }

    .comments h4, #comment-post-message{
      font-size: 16px;
    }

    .footer .image-container svg path {
      fill: rgba(0, 0, 0, .4);
    }

    .footer .copyright {
      color: rgba(0, 0, 0, .6);
    }

    .footer .links {
      list-style-type: none;
      padding: 0;
      margin-bottom: 0;
    }

    .footer .links li {
      display: block;
      padding-top: 10px;
    }

    .footer .links a {
      color: rgba(0, 0, 0, .5);
      text-decoration: none;
    }

    @media screen and (min-width: 650px) {
      body {
        padding: 0 50px 50px;
      }

      nav {
        line-height: inherit;
      }

      .header .links.responsive .icon {
          display: block;
      }

      .header .links .icon {
          display: none;
      }

      .links .link {
        display: block;
      }

      .footer .links li {
        display: inline-block;
        padding-top: 0;
        padding-right: 10px;
      }
    }

    /*@media screen and (min-width: 1100px) {
      .footer {
        flex-direction: row;
      }

      .footer .links li {
        display: inline-block;
        padding-top: 0;
        padding-right: 10px;
      }
    }
   @media screen and (max-width: 767px) {
      .footer {
        display: inline;
      }
    }*/
    </style>
<style id='page-skin-1' type='text/css'><!--
/*
<Group description="Header Color" selector="header">
<Variable name="header.background.color" description="Header Background"
type="color" default="#ffffff"/>
</Group>
*/
.header-outer {
border-bottom: 1px solid #e0e0e0;
background: #ffffff;
}
html, .Label h2, #sidebar .rss a, .BlogArchive h2, .FollowByEmail h2.title, {
font-family: Roboto, sans-serif;
}
.plusfollowers h2.title, .featured .title {
font-family: Roboto, sans-serif;
}
.widget-item-control {
height: 100%;
}
.widget.Header, #header {
position: relative;
height: 100%;
width: 100%;
}
}
.widget.Header .header-logo1 {
float: left;
margin-right: 15px;
padding-right: 15px;
border-right: 1px solid #ddd;
}
.header-title h2 {
color: rgba(0,0,0,.54);
display: inline-block;
font-size: 38px;
font-family: Roboto, sans-serif;
font-weight: normal;
line-height: 45px;
vertical-align: top;
margin-left: 5px;
}
.header-inner {
background-repeat: no-repeat;
background-position: right 0px;
}
.post-author,
.byline-author {
font-size: 14px;
font-weight: normal;
color: #757575;
color: rgba(0,0,0,.54);
}
.post-content .img-border {
border: 1px solid rgb(235, 235, 235);
padding: 4px;
}
.header-title a {
text-decoration: none !important;
}
pre {
border: 1px solid #bbbbbb;
margin-top: 1em 0 0 0;
padding: 0.99em;
overflow-x: auto;
overflow-y: auto;
}
pre, code {
font-size: 9pt;
background-color: #fafafa;
line-height: 125%;
font-family: monospace;
}
pre, code {
color: #060;
font: 13px/1.54 "courier new",courier,monospace;
}
.header-left .header-logo1 {
width: 128px !important;
}
.header-desc {
line-height: 20px;
margin-top: 8px;
}
.fb-custom img, .twitter-custom img, .gplus-share img {
cursor: pointer;
opacity: 0.54;
}
.fb-custom img:hover, .twitter-custom img:hover, .gplus-share img:hover {
opacity: 0.87;
}
.fb-like {
width: 80px;
}
.post .share {
float: right;
}
#twitter-share{
border: #CCC solid 1px;
border-radius: 3px;
background-image: -webkit-linear-gradient(top,#ffffff,#dedede);
}
.twitter-follow {
background: url(//4.bp.blogspot.com/-8O7VcmcY32o/VSYkC2vUj7I/AAAAAAAAHeU/7mzo-JFgTgk/s1600/twitter-bird.png) no-repeat left center;
padding-left: 18px;
font: normal normal normal 11px/18px 'Helvetica Neue',Arial,sans-serif;
font-weight: bold;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
cursor: pointer;
margin-bottom: 10px;
}
.twitter-fb {
padding-top: 2px;
}
.fb-follow-button  {
background: -webkit-linear-gradient(#4c69ba, #3b55a0);
background: -moz-linear-gradient(#4c69ba, #3b55a0);
background: linear-gradient(#4c69ba, #3b55a0);
border-radius: 2px;
height: 18px;
padding: 4px 0 0 3px;
width: 57px;
border: #4c69ba solid 1px;
}
.fb-follow-button a {
text-decoration: none !important;
text-shadow: 0 -1px 0 #354c8c;
text-align: center;
white-space: nowrap;
font-size: 11px;
color: white;
vertical-align: top;
}
.fb-follow-button a:visited {
color: white;
}
.fb-follow {
padding: 0px 5px 3px 0px;
width: 14px;
vertical-align: bottom;
}
.gplus-wrapper {
margin-top: 3px;
display: inline-block;
vertical-align: top;
}
.twitter-custom, .gplus-share {
margin-right: 12px;
}
.fb-follow-button{
margin: 10px auto;
}
.header-title {
margin-left: 60px;
}
.nav ul {
margin-right: 60px;
}
.learning-center {
list-style: none;
}
/** CUSTOM CODE **/

--></style>
<style id='template-skin-1' type='text/css'><!--
.header-outer {
clear: both;
}
.header-inner {
margin: auto;
padding: 0px;
}
.footer-outer {
background: #f5f5f5;
clear: both;
margin-top: 24px;
}
.footer-inner {
margin: auto;
padding: 0px;
}
.footer-inner-2 {
/* Account for right hand column elasticity. */
max-width: calc(100% - 248px);
}
.google-footer-outer {
clear: both;
}
.cols-wrapper, .google-footer-outer, .footer-inner {
max-width: 978px;
margin-left: auto;
margin-right: auto;
}
.header-inner {
width: 100%;
}
.cols-wrapper {
margin: auto;
clear: both;
margin-top: 100px;
margin-bottom: 60px;
overflow: hidden;
}
.col-main-wrapper {
float: left;
width: 100%;
}
.col-main {
margin-right: 278px;
max-width: 660px;
margin-top: 45px;
}
.col-right {
float: right;
width: 248px;
margin-left: -278px;
margin-top: 60px;
margin-bottom:30px;
}
/* Tweaks for layout mode. */
body#layout .google-footer-outer {
display: none;
}
body#layout .header-outer, body#layout .footer-outer {
background: none;
}
body#layout .header-inner {
height: initial;
}
body#layout .cols-wrapper {
margin-top: initial;
margin-bottom: initial;
}
--></style>
<!-- start all head -->
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='blogger' name='generator'/>
<link href='https://blog.debug.com/favicon.ico' rel='icon' type='image/x-icon'/>
<link href='https://blog.debug.com/' rel='canonical'/>
<link rel="alternate" type="application/atom+xml" title="Debug Project - Atom" href="https://blog.debug.com/feeds/posts/default" />
<link rel="alternate" type="application/rss+xml" title="Debug Project - RSS" href="https://blog.debug.com/feeds/posts/default?alt=rss" />
<link rel="service.post" type="application/atom+xml" title="Debug Project - Atom" href="https://www.blogger.com/feeds/5918582181149193944/posts/default" />
<!--Can't find substitution for tag [blog.ieCssRetrofitLinks]-->
<meta content='https://blog.debug.com/' property='og:url'/>
<meta content='Debug Project' property='og:title'/>
<meta content='' property='og:description'/>
<!-- end all head -->
<base target='_self'/>
<style>
      html {
        font-family: karla, sans-serif;
        -moz-osx-font-smoothing: grayscale;
        <!-- -webkit-font-smoothing: antialiased; -->
      }
      body {
        /* This ensures that the scroll bar is always present, which is needed */
        /* because content render happens after page load; otherwise the header */
        /* would "bounce" in-between states. */
        min-height: 150%;
      }
      a, a:visited {
        color: #2878ff;
        text-decoration: none;
      }
      a:focus, a:hover, a:active {
        text-decoration: none;
      }
      .Header {
        margin-top: 15px;
      }
      .Header h1 {
        font-size: 32px;
        font-weight: 300;
        line-height: 32px;
        height: 42px;
      }
      .header-inner .Header .titlewrapper {
        padding: 0;
        margin-top: 30px;
      }
      .header-inner .Header .descriptionwrapper {
        padding: 0;
        margin: 0;
      }
      .cols-wrapper {
        margin-top: 4px;
        margin-bottom:25px;
      }
     /* .cols-wrapper-content {
      background-color: #fff;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
      }*/
      .footer-outer, .google-footer-outer {
        padding: 0 60px;
      }
      .header-outer {
        padding: 0 20px;
		position: fixed;
        width: 100%;
        top: 0px;
        height: 71px;
        z-index: 999;
		box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
      }
      .header-inner {
        height: 100px;
        position: relative;
      }
      html, .header-inner a {
        color: #212121;
        color: rgba(0,0,0,.87);
      }
      .header-inner .google-logo {
        display: inline-block;
        background-size: contain;
        z-index: 1;
        height: 46px;
        overflow: hidden;
        margin-top: 4px;
      }
      .header-left {
        position: absolute;
        top: 35%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-top: 12px;
        width: 100%;
      }
      .google-logo {
        margin-left: -4px;
      }
      .header-inner .google-logo img {
          height: 70px;
          margin-top: -14px
        }
      #google-footer {
        position: relative;
        font-size: 13px;
        list-style: none;
        text-align: right;
      }
      #google-footer a {
        color: #444;
      }
      #google-footer ul {
        margin: 0;
        padding: 0;
        height: 144px;
        line-height: 144px;
      }
      #google-footer ul li {
        display: inline;
      }
      #google-footer ul li:before {
        color: #999;
        content: "\00b7";
        font-weight: bold;
        margin: 5px;
      }
      #google-footer ul li:first-child:before {
        content: '';
      }
      #google-footer .google-logo-dark {
        left: 0;
        margin-top: -16px;
        position: absolute;
        top: 50%;
      }
      /** Sitemap links. **/
      .footer-inner-2 {
        font-size: 14px;
        padding-top: 42px;
        padding-bottom: 74px;
      }
      .footer-inner-2 .HTML h2 {
        color: #212121;
        color: rgba(0,0,0,.87);
        font-size: 14px;
        font-weight: 500;
        padding-left: 0;
        margin: 10px 0;
      }
      .footer-inner-2 .HTML ul {
        font-weight: normal;
        list-style: none;
        padding-left: 0;
      }
      .footer-inner-2 .HTML li {
        line-height: 24px;
        padding: 0;
      }
      .footer-inner-2 li a {
        color: rgba(65,132,243,.87);
      }
      /** Archive widget. **/
      .BlogArchive {
        font-size: 13px;
        font-weight: normal;
      }
      .BlogArchive .widget-content {
        display: none;
      }
      .BlogArchive h2, .Label h2 {
        color: #4184F3;
        text-decoration: none;
      }
      .BlogArchive .hierarchy li {
        display: inline-block;
      }
      /* Specificity needed here to override widget CSS defaults. */
      .BlogArchive #ArchiveList ul li, .BlogArchive #ArchiveList ul ul li {
        margin: 0;
        padding-left: 0;
        text-indent: 0;
      }
      .BlogArchive .intervalToggle {
        cursor: pointer;
      }
      .BlogArchive .expanded .intervalToggle .new-toggle {
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
      }
      .BlogArchive .new-toggle {
        float: right;
        padding-top: 3px;
        opacity: 0.87;
      }
      #ArchiveList {
        text-transform: uppercase;
      }
      #ArchiveList .expanded > ul:last-child {
        margin-bottom: 16px;
      }
      #ArchiveList .archivedate {
        width: 100%;
      }
      /* Months */
      .BlogArchive .items {
        max-width: 150px;
        margin-left: -4px;
      }
      .BlogArchive .expanded .items {
        margin-bottom: 10px;
        overflow: hidden;
      }
      .BlogArchive .items > ul {
        float: left;
        height: 32px;
      }
      .BlogArchive .items a {
        padding: 0 4px;
      }
      .Label {
        font-size: 13px;
        font-weight: normal;
      }
      .sidebar-icon {
        display: inline-block;
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-right: 12px;
        margin-top: -1px
      }
      .Label a {
        margin-right: 4px;
      }
      .Label .widget-content {
        display: none;
      }
      .FollowByEmail {
        font-size: 13px;
        font-weight: normal;
      }
      .FollowByEmail h2 {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAALCAYAAACZIGYHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUBJREFUeNrMkSGLAlEUhb+ZB4JFi8mx2cz+ApvhRUGTcUCrNqNJDYIi+DO0GUwmQXDK2DSIoGgZcSaIjDrzwrK4ssvChj1w0733O+fdp+m6PozH4yQSCfb7Pa7r8pOi0SjJZBLP8zgej4gAIMvlMuPxmADIYrHger1+C6lUKmo+NJ/NZojb7SZDWiwWo1qtks1msW2bw+HwZdkwDHq9HvV6nel0SqvVYrvdIh6Ph3Qch+VyqRYLhQJSSjRNw7IsfN9XgGKxSLfbJZfL0e/3aTabrFYr7vc7IujLcOh8PqunrNdr0uk0pVKJVCpFJBJRgEajweVyod1uMxgM2O12BAGUgRbU8DV2JpOhVquRz+cRQii3+XxOp9NRN3jVR5LPOp1OjEYjlSL8hclkgmmabDabt4d+m+S30vkD/R/IU4ABAPTZgnZdmG/PAAAAAElFTkSuQmCC");
        background-repeat: no-repeat;
        background-position: 0 50%;
        text-indent: 30px;
      }
      .FollowByEmail .widget-content {
        display: none;
      }
      .searchBox input {
        border: 1px solid #eee;
        color: #212121;
        color: rgba(0,0,0,.87);
        font-size: 14px;
        padding: 8px 8px 8px 40px;
        width: 164px;
        font-family: Roboto, sans-serif;
        background: url("https://www.gstatic.com/images/icons/material/system/1x/search_grey600_24dp.png") 8px center no-repeat;
      }
      .searchBox ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color:    rgba(0,0,0,.54);
      }
      .searchBox :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
        color:    #000;
        opacity:  0.54;
      }
      .searchBox ::-moz-placeholder { /* Mozilla Firefox 19+ */
        color:    #000;
        opacity:  0.54;
      }
      .searchBox :-ms-input-placeholder { /* Internet Explorer 10-11 */
        color:    #757575;
      }
      .widget-item-control {
        margin-top: 0px;
      }
      .section {
        margin: 0;
        padding: 0;
      }
      #sidebar-top {
        border: 1px solid #eee;
      }
      #sidebar-top > div {
        margin: 16px 0;
      }
      .widget ul {
        line-height: 1.6;
      }
	  /* Navigation */
      .nav {
        position: absolute;
        top: 16px;
        right: 50px;
      }
      .nav ul {
        list-style: none;
      }
      .nav ul li {
        display: inline;
        margin-right: 10px;
      }
      /* Featured section*/
      .featured {
        background-color: #FAFAFA;
        padding: 36px 40px 56px 40px;
        margin: 62px 0;
      }
      .featured .feature-section {
		color: #E46841;
        font-weight: bold;
        font-size: 14px;
        margin-top: 0;
        margin-bottom: 36px;
	  }
      .featured h2 {
        font: Roboto, sans-serif;
        font-weight: normal;
        font-size: 24px;
        margin-bottom: 26px;
        line-height:0;
      }
      .featured .feature-desc {
        font-weight: normal;
        font-size: 17px;
        font: Roboto, sans-serif;
		line-height: 32px;
        margin-top: 0;
        margin-bottom: 0;
      }
      .featured .feature-desc a {
        text-decoration: underline;
        color: #000;
        font-weight: bold;
      }

      /*main post*/
      .post {
        margin-bottom:30px;
      }
      #main .post .title a, .featured .title {
        color: #424242;
        font-weight: bold;
        font-size: 26px;
		font-family: Karla, sans-serif;
        text-align: left;
        line-height: 1.3px;
        letter-spacing: -1.56px;
      }
      #main .post .title a:hover {
        text-decoration:none;
        color:#4184F3;
      }
      .message,  #main .post .post-header {
        margin: 0;
        padding: 0;
      }
      #main .post .post-header .caption, #main .post .post-header .labels-caption,  #main .post .post-footer .caption, #main .post .post-footer .labels-caption {
        color: #444;
        font-weight: 500;
      }
      #main .tr-caption-container td {
        text-align: left;
      }
      #main .post .tr-caption {
        color: #757575;
        color: rgba(0,0,0,.54);
        display: block;
        max-width: 560px;
        padding-bottom: 20px;
      }
      #main .post .tr-caption-container {
        line-height: 24px;
        margin: -1px 0 0 0 !important;
        padding: 4px 0;
        text-align: left;
      }
      #main .post .post-header .published{
        font-size:11px;
        font-weight:bold;
      }
      .post-header .publishdate {
        font-size: 17px;
        font-weight:normal;
        color: #757575;
        color: rgba(0,0,0,.54);
      }
      #main .post .post-footer{
        font-size:12px;
        padding-bottom: 21px;
      }
      .label-footer {
        margin-bottom: 12px;
        margin-top: 12px;
      }
      .comment-img {
        margin-right: 16px;
        opacity: 0.54;
        vertical-align: middle;
      }
      #main .post .post-header .published {
        margin-bottom: 40px;
        margin-top: -2px;
      }
      .post .post-content {
         color: #757575;
         font-size: 14px;
         margin: 25px 0 36px 0;
    	 line-height: 22px;
    	 letter-spacing: -.28px;
    	 font-family: Karla, sans-serif;
    	 text-align: left;
         font-weight: 400;
}
      .post-body .post-content ul, .post-body .post-content ol {
        margin: 16px 0;
        padding: 0 48px;
      }
      .post-summary {
        display: none;
      }
      /* Another old-style caption. */
      /*.post-content div i, .post-content div + i {
        font-size: 14px;
        font-style: normal;
        color: #757575;
        color: rgba(0,0,0,.54);
        display: block;
        line-height: 24px;
        margin-bottom: 16px;
        text-align: left;
      }*/
      /* Another old-style caption (with link) */
      .post-content a > i {
        color: #4184F3 !important;
      }
      /* Old-style captions for images. */
      .post-content .separator + div:not(.separator) {
        margin-top: -16px;
      }
      /* Capture section headers. */
      .post-content br + br + b, .post-content .space + .space + b, .post-content .separator + b {
        display: inline-block;
        margin-bottom: 8px;
        margin-top: 24px;
      }
      .post-content li {
        line-height: 32px;
      }
      /* Override all post images/videos to left align. */
      .post-content .separator, .post-content > div {
        text-align: left;
      }
      .post-content .separator > a, .post-content .separator > span {
        margin-left: 0 !important;
      }
      .post-content img {
        max-width: 100%;
        height: auto;
        width: auto;
      }
      .post-content .tr-caption-container img {
        margin-bottom: 12px;
      }
      .post-content iframe, .post-content embed {
        max-width: 100%;
      }
      .post-content .carousel-container {
        margin-bottom: 48px;
      }
      #main .post-content b {
        font-weight: 500;
      }
      /* These are the main paragraph spacing tweaks. */
      #main .post-content br {
        content: " ";
        display: block;
        padding: 4px;
      }
      .post-content .space {
        display: block;
        height: 8px;
      }
      .post-content iframe + .space, .post-content iframe + br {
        padding: 0 !important;
      }
      #main .post .jump-link {
        margin-bottom:10px;
      }
      .post-content img, .post-content iframe {
        margin: 30px 0 20px 0;
      }
      .post-content > img:first-child, .post-content > iframe:first-child {
        margin-top: 0;
      }
      .col-right .section {
        padding: 0 16px;
      }
      #aside {
        background:#fff;
        border:1px solid #eee;
        border-top: 0;
      }
      #aside .widget {
        margin:0;
      }
      #aside .widget h2, #ArchiveList .toggle + a.post-count-link {
        color: #212121;
        color: rgba(0,0,0,.87);
        font-weight: 400 !important;
        margin: 0;
      }
      #ArchiveList .toggle {
        float: right;
      }
      #ArchiveList .toggle .material-icons {
        padding-top: 4px;
      }
      #sidebar .tab {
        cursor: pointer;
      }
      #sidebar .tab .arrow {
        display: inline-block;
        float: right;
      }
      #sidebar .tab .icon {
        display: inline-block;
        vertical-align: top;
        height: 24px;
        width: 24px;
        margin-right: 13px;
        margin-left: -1px;
        margin-top: 1px;
        color: #757575;
        color: rgba(0,0,0,.54);
      }
      #sidebar .widget-content > :first-child {
        padding-top: 8px;
      }
      #sidebar .active .tab .arrow {
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
      }
      #sidebar .arrow {
        color: #757575;
        color: rgba(0,0,0,.54);
      }
      #sidebar .widget h2 {
        font-size: 14px;
        line-height: 24px;
        display: inline-block;
      }
      #sidebar .widget .BlogArchive {
        padding-bottom: 8px;
      }
      #sidebar .widget {
        border-bottom: 1px solid #eee;
        box-shadow: 0px 1px 0 white;
        margin-bottom: 0;
        padding: 14px 0;
        min-height: 20px;
      }
      #sidebar .widget:last-child {
        border-bottom: none;
        box-shadow: none;
        margin-bottom: 0;
      }
      #sidebar ul {
        margin: 0;
        padding: 0;
      }
      #sidebar ul li {
        list-style:none;
        padding:0;
      }
      #sidebar ul li a {
        line-height: 32px;
      }
      #sidebar .archive {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAYCAYAAADzoH0MAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE1JREFUeNpiNDY23s9AAWBioBCwYBM8c+YMVsUmJibEGYBNMS5DaeMFfDYSZQA2v9I3FrB5AZeriI4FmnrBccCT8mhmGs1MwyAzAQQYAKEWG9zm9QFEAAAAAElFTkSuQmCC");
        height: 24px;
        line-height: 24px;
        padding-left: 30px;
      }
      #sidebar .labels {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUxJREFUeNpiNDY23s9AAMycOfM7UF05kHkZmzwTMkdSUhKrIcXFxZy3bt3qBjIN8RrS09PDsHnzZjCNDr58+cKQlpbGDjSoHcg1w2oIyAUODg5gARCNzUVIBrUCuVYYhjx//pzhwIEDYAEQDeJjA1CDWIAGNQK59jBxRuSABbkAlwHIgIeHh2HWrFn/1NTU2oDcvSgBS4wBSC5iArqoCsj1YGIgEyAZVMoEchqlBjEB/cZAiUHg2AEGznpKDAImxOeM////B4VLKtBvEUCngZ1ILKivr3/u6+ubBzJAGZQ9gC5aQoqLgAY8BhkAZL4BuQQkxgXE34A4BuiiZEIuAhrwEGhAEZD5DpzYoIaA2UAM4kQADUrHZRDUgAIg8wO2XAwzbQXQa5OweQ1owB10AyA6gS7BgX1u3ry5397eHow3bdo0EyjGi00tQIABANPgyAH1q1eaAAAAAElFTkSuQmCC");
        height: 20px;
        line-height: 20px;
        padding-left: 30px;
      }
      #sidebar .rss a {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAX5JREFUeNqsVDGSgkAQHL2rIiIikohIc/EBRkbwAIwuwgfwAXiAD9AHSI7kEkECRCb6AIyINDLx7K0aa6kT7uq0q7YYtnZ7umdnt7darXbr9Zpegeu61DNNc0dvwCcH4/GYJpMJnc9nOhwOVJbl/4hAAokMECZJQtvt9k+kH7qufyEYDAakqqqYxFdRFBqNRmTbNg2HQ0rTlK7XayvR0xqBdDqdkuM4dE/0ULhYLOh4PHYrknG5XGi/31MYhuL/nkwonM1mlGUZ1XXdrsiyLGEDhY7juJEZ1u5tIixDGdYhmYw+B7CAzPP5nDabjdgIAgCksMX1832/3drtdqPT6SQWapomiGEFNkDEdpDMMAzK81ys/7XYy+XyoQgq2WoURSIJ2iIIgp/WZCCTvFm2wgeAU31aI3Q2GhIDMeB53qPYPIcm5VrxXIOIOxsDMStjVawAc1VViRgN22lNBiuQN3GR+SY07hpOoStmFQAKXRRFY93bnpG+fONfedi+BRgAbkS8Fxp7QQIAAAAASUVORK5CYII=");
      }
      #sidebar .subscription a {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAALCAYAAACZIGYHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUBJREFUeNrMkSGLAlEUhb+ZB4JFi8mx2cz+ApvhRUGTcUCrNqNJDYIi+DO0GUwmQXDK2DSIoGgZcSaIjDrzwrK4ssvChj1w0733O+fdp+m6PozH4yQSCfb7Pa7r8pOi0SjJZBLP8zgej4gAIMvlMuPxmADIYrHger1+C6lUKmo+NJ/NZojb7SZDWiwWo1qtks1msW2bw+HwZdkwDHq9HvV6nel0SqvVYrvdIh6Ph3Qch+VyqRYLhQJSSjRNw7IsfN9XgGKxSLfbJZfL0e/3aTabrFYr7vc7IujLcOh8PqunrNdr0uk0pVKJVCpFJBJRgEajweVyod1uMxgM2O12BAGUgRbU8DV2JpOhVquRz+cRQii3+XxOp9NRN3jVR5LPOp1OjEYjlSL8hclkgmmabDabt4d+m+S30vkD/R/IU4ABAPTZgnZdmG/PAAAAAElFTkSuQmCC");
      }
      #sidebar-bottom {
        background: #f5f5f5;
        border-top:1px solid #eee;
      }
      #sidebar-bottom .widget {
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
        text-align: center;
      }
      #sidebar-bottom > div:last-child {
        border-bottom: 0;
      }
      #sidebar-bottom .text {
        line-height: 20px;
      }
      /* Home, forward, and backward pagination. */
      .blog-pager {
        border-top : 1px #e0e0e0 solid;
        padding-top: 10px;
        margin-top: 15px;
        text-align: right !important;
      }
      #blog-pager {
        margin-botom: 0;
        margin-top: -14px;
        padding: 16px 0 0 0;
      }
      #blog-pager a {
        display: inline-block;
      }
      .blog-pager i.disabled {
        opacity: 0.2 !important;
      }
      .blog-pager i {
        color: black;
        margin-left: 16px;
        opacity: 0.54;
      }
      .blog-pager i:hover, .blog-pager i:active {
        opacity: 0.87;
      }
      #blog-pager-older-link, #blog-pager-newer-link {
        float: none;
      }
      .gplus-profile {
        background-color: #fafafa;
        border: 1px solid #eee;
        overflow: hidden;
        width: 212px;
      }
      .gplus-profile-inner {
        margin-left: -1px;
        margin-top: -1px;
      }
      /* Sidebar follow buttons. */
      .followgooglewrapper {
        padding: 12px 0 0 0;
      }
      .loading {
        visibility: hidden;
      }
      .detail-page .post-footer .cmt_iframe_holder {
        padding-top: 40px !important;
      }
      /** Desktop **/

      @media (max-width: 1200px) {
        .header-outer {
          height: 100px;
        }
        .nav {
          top: 60px;
          left: 40px;
        }
      }

      @media (max-width: 900px) {
        .col-right {
          display: none;
        }
        .col-main {
          margin-right: 0;
          min-width: initial;
        }
        .footer-outer {
          display: none;
        }
        .cols-wrapper {
          min-width: initial;
        }
        .google-footer-outer {
          background-color: #f5f5f5;
        }
        #main .post .title a, .featured .title {
          line-height: 1.3px;
        }
      }

      /** Custom for nav**/
      @media (max-width: 820px) {
        .header-outer {
          height: 71px;
        }
        .nav {
          display: none;
        }
      }
       @media (max-width: 1100px) {
        .col-right {
          display: none;
        }
       .col-main {
        margin: 40px auto;
       max-width: 90%;
      }
      }
      /** Tablet **/
      @media (max-width: 712px) {
        .header-outer, .cols-wrapper, .footer-outer, .google-footer-outer {
          padding: 0 40px;
        }
       .footer{
         display:inline;
        }
      }
      /* An extra breakpoint accommodating for long blog titles. */
      @media (max-width: 600px) {
        .header-left {
          height: 100%;
          top: inherit;
          margin-top: 0;
          -webkit-transform: initial;
          transform: initial;
        }
        .header-title {
          margin-top: 18px;
        }
        .header-inner .google-logo {
          height: 40px;
          margin-top: 3px;
        }
        .header-inner .google-logo img {
          height: 60px;
        }
        .header-title {
          margin-left: 0;
        }
        .header-title h2 {
          font-size: 24px;
          line-height: 40px;
        }
        .header-desc {
          bottom: 24px;
          position: absolute;
        }
      }
      /** Mobile/small desktop window; also landscape. **/
      @media (max-width: 480px), (max-height: 480px) {
        .header-outer, .cols-wrapper, .footer-outer, .google-footer-outer {
          padding: 0 16px;
        }
        .cols-wrapper {
          margin-top: 0;
        }
        .featured {
          margin-top: 100px;
        }
        /*.post-header .publishdate, .post .post-content {
          font-size: 16px;
        }
        .post .post-content {
          line-height: 28px;
          margin-bottom: 30px;
        }*/
        .post {
          margin-top: 30px;
        }
        .byline-author {
          display: block;
          font-size: 12px;
          line-height: 24px;
          margin-top: 6px;
        }
        #main .post .post-header {
          padding-bottom: 12px;
        }
        #main .post .post-header .published {
          margin-bottom: -8px;
          margin-top: 3px;
        }
        .post .read-more {
          display: block;
          margin-top: 14px;
        }
        .post .tr-caption {
          font-size: 12px;
        }
        .post-content iframe {
          /* iframe won't keep aspect ratio when scaled down. */
          max-height: 240px;
        }
        .post-content .separator img, .post-content .tr-caption-container img, .post-content iframe {
          margin-left: -16px;
          max-width: inherit;
          width: calc(100% + 32px);
        }
        .post-content table, .post-content td {
          width: 100%;
        }
        #blog-pager {
          margin: 0;
          padding: 16px 0;
        }
        /** List page tweaks. **/
        .list-page .post-original {
          display: none;
        }
        .list-page .post-summary {
          display: block;
        }
        .list-page .comment-container {
          display: none;
        }
        .list-page #blog-pager {
          padding-top: 0;
          border: 0;
          margin-top: -8px;
        }
        .list-page .label-footer {
          display: none;
        }
        .list-page #main .post .post-footer {
          border-bottom: 1px solid #eee;
          margin: -16px 0 0 0;
          padding: 0 0 20px 0;
        }
        .list-page .post .share {
          display: none;
        }
        /** Detail page tweaks. **/
        .detail-page .post-footer .cmt_iframe_holder {
          padding-top: 32px !important;
        }
        .detail-page .label-footer {
          margin-bottom: 0;
        }
        .detail-page #main .post .post-footer {
          padding-bottom: 0;
        }
        .detail-page #comments {
          display: none;
        }
      }
      [data-about-pullquote], [data-is-preview], [data-about-syndication] {
        display: none;
      }
    </style>
<noscript>
<style>
        .loading { visibility: visible }</style>
</noscript>
<script type='text/javascript'>
        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
        })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
        ga('create', 'UA-71044448-2', 'auto', 'blogger');
        ga('blogger.send', 'pageview');
      </script>
<link href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=5918582181149193944&amp;zx=7f4c0e45-48ce-4b4e-8221-b8556de53008' media='none' onload='if(media!=&#39;all&#39;)media=&#39;all&#39;' rel='stylesheet'/><noscript><link href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=5918582181149193944&amp;zx=7f4c0e45-48ce-4b4e-8221-b8556de53008' rel='stylesheet'/></noscript>
<meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/>
<meta name='google-adsense-platform-domain' content='blogspot.com'/>

</head>
<body>
<script type='text/javascript'>
      //<![CDATA[
      var axel = Math.random() + "";
      var a = axel * 10000000000000;
      document.write('<iframe src="https://2542116.fls.doubleclick.net/activityi;src=2542116;type=gblog;cat=googl0;ord=ord=' + a + '?" width="1" height="1" frameborder="0" style="display:none"></iframe>');

    </script>
    <noscript>
      <img alt='' height='1' src='https://ad.doubleclick.net/ddm/activity/src=2542116;type=gblog;cat=googl0;ord=1?' width='1'/>
    </noscript>
    <!-- <script>
//<![CDATA[
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-10005-5', 'auto');
  ga('send', 'pageview');
      //]]>
</script> -->
    <!-- Header -->
<nav class='header' id='the-nav'>
<div class='logo'>
<a href='//debug.com/'>
<img height='42' src='https://kstatic.googleusercontent.com/files/428d86d25e8d77a114f1a4d915cdb70ca482d63fd1ec2212ea5b0c1ae29e50c88d3f8046f52c2f3da1ada99ba256c67f04df5034e94f413ef066e6ccda75d869'/></a>
</div>
<ul class='links' id='nav-links'>
<li class='icon' id='hamburger'>
<a href='#'><img class='img-ham' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8pFrphAoRolHYKWbQPjQGACW3Y3CcHqpWSFPV3NM7h4Z2f8VW9TsOeubKiIwbBhLH6HLdB-PI8HENLsVVYogxawt_3vcilKntdZ1N05GStqaAUdRz-V-gXW47GCEzKSzXb0S11KeAM3NR/s1600/hamburger.jpg'/></a>
</li>
<li class='link'>
<a href='//debug.com/how' title=''><span class='link-details'>How it Works</span></a>
</li>
<li class='link'>
<a href='//debug.com/faqs' title=''><span class='link-details'>FAQs</span></a>
</li>
<li class='link'>
<a href='/' title=''><span id='link-blog'>Blog</span></a>
</li>
</ul>
</nav>
<!-- all content wrapper start -->
<div class='cols-wrapper-content'>
<div class='cols-wrapper loading'>
<div class='col-main-wrapper'>
<div class='col-main'>
<div class='section' id='main'><div class='widget Blog' data-version='1' id='Blog1'>
<div class='post' data-id='3366807788718133928' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2026/06/for-world-dengue-day-debug-featured-on.html' itemprop='url' title='For World Dengue Day, Debug Featured on Tank Talks Asia'>
For World Dengue Day, Debug Featured on Tank Talks Asia
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Sunday, June 14, 2026
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          
<style>
  /* Spacing for the list container */
  .post-body ul, .post-body ol {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-left: 24px !important;
  }
  /* Spacing between individual bullet points */
  .post-body li {
    margin-bottom: 1px !important; /* Increase this number for even more space */
    line-height: 1.6 !important;    /* Keeps line spacing inside a bullet tight */
  }
  /* Prevents double-spacing at the very end of the list */
  .post-body li:last-child {
    margin-bottom: 0 !important;
  }
</style>


<p>Every year on June 15, <a href="https://www.who.int/news-room/events/detail/2026/06/15/default-calendar/world-dengue-day-2026">World Dengue Day</a> focuses global attention on one of the world's fastest-growing public health threats.</p>
<p>Dengue is a debilitating disease that devastates families and communities and overloads health systems. There is no cure, and so prevention and control are essential.</p>
<p>And the numbers demand urgent global attention:</p>
<ul>
  <li>An estimated 400 million people are infected with dengue annually.</li>
  <li>4 billion people (half the world's population) are at risk.</li>
  <li>And 70% of that risk lies in Asia.</li>
</ul>
<p>To mark World Dengue Day 2026, Debug opened its Singapore facility for a tour for <a href="https://tank-talks-asia.captivate.fm/">Tank Talks Asia</a>, a leading podcast covering technology, innovation, and initiatives shaping the region's future.</p>
<p>The Singapore facility is Debug's first international R&amp;D hub. The facility produces more than 10 million male mosquitoes every week. It is where Google's engineering, AI, and robotics capabilities meet world-class mosquito biology, and where the work to protect communities across Southeast Asia and beyond is currently underway.</p>
<p><a href="http://linkedin.com/in/yanni-yoong-6752b820?originalSubdomain=sg">Yanni Yoong</a>, who runs the Singapore facility, led the Tank Talks Asia hosts Manisha Tank and Andrew Clark on a full tour, walking them through the entire process, from mosquito breeding and sorting to release.&nbsp;<br /></p><p>She then sat down with Manisha to share more about the mission and science behind Debug.</p><p>Among the highlights were:</p>


<ul>
  
  
  
  
  <li><strong>Sharing the Wolbachia method:</strong>
  At the core of Debug's approach is *Wolbachia,* a naturally occurring bacterium found in over half of insect species worldwide. Debug breeds non-biting male *Aedes aegypti* mosquitoes carrying *Wolbachia* and releases them into target areas. When these males mate with wild females, the resulting eggs do not hatch. With sustained releases, the local mosquito population progressively decreases without chemicals, GMOs, or disruption to the broader ecosystem. The releases are safe and species-specific.
  </li>
    
<li><strong>Showing Debug's AI-Powered Sorting:</strong>
  One of the most striking moments of the tour is seeing Debug's AI sex-sorting technology in action. Mosquitoes march single-file down a lit corridor while a camera captures each one in real time. The AI determines male from female in a split second based on their physical features (something no human team could do at the speed and volume required). A second machine learning pass reviews every image again before release.
  </li>

<li><strong>Explaining the Geographic Impact Advantage:</strong>   
  Singapore is the ideal launch site for Debug to make the greatest possible impact on reducing dengue in Asia.  It is also strategically located in Asia &#8212; where approximately 70% of global dengue cases occur &#8212; and serves as a hub for us to scale solutions across the region. 
  </li>

<li><strong>A Cost-Effective Solution:</strong>
  Yanni also explained that the Debug suppression method (releasing only non-biting males) is one of two approaches the team uses.  The expansion of our team in Singapore also includes additional R\&amp;D initiatives to support replacement programs, building on the key technologies we developed for suppression programmes.  We believe we can deliver cost-effective solutions against dengue and make this technology accessible across Asia and globally.  
  </li>

</ul>
<p><br /></p><p><span id="docs-internal-guid-95e248a8-7fff-ca51-2971-9510269b5592"><a href="https://www.youtube.com/watch?v=qWAoDXlA5Hs" style="text-decoration: none;"><span face="Arial, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant: normal; text-decoration-skip-ink: none; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><span style="border-color: currentcolor; border-image: initial; border-style: none; border-width: medium; border: none; display: inline-block; height: 317px; overflow: hidden; width: 564px;"><img height="317" src="https://blogger.googleusercontent.com/img/a/AVvXsEhrIkfm4_WWdDt7Qs73A4VxX6tv_vd55C90XToeCvK2sVAsc1d7bt7t5AYH8MZMZ3ei-xKk08ALI44WqGTOM66hseowJa5aPyB-ghELka4uBP5Nm9uXBwND6IVlkAaDYjwSddn726yMzSjhe8NL30wSOHNCyeQ2yki09IIXnapgn2Tpu3rBeSdL1GT7_5HI" style="margin-left: 0px; margin-top: 0px;" width="564" /></span></span></a></span></p><p>Watch the <a href="https://youtu.be/qWAoDXlA5Hs?is=6rcFA8b6B8fCCFd6">Tank Talk Asia</a> episode to look into our mission, process, and the science and technology behind Debug, as well as the team's pride in helping change the trajectory of this disease.</p>




<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>

<style>
  /* Spacing for the list container */
  .post-body ul, .post-body ol {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-left: 24px !important;
  }
  /* Spacing between individual bullet points */
  .post-body li {
    margin-bottom: 1px !important; /* Increase this number for even more space */
    line-height: 1.6 !important;    /* Keeps line spacing inside a bullet tight */
  }
  /* Prevents double-spacing at the very end of the list */
  .post-body li:last-child {
    margin-bottom: 0 !important;
  }
</style>


<p>Every year on June 15, <a href="https://www.who.int/news-room/events/detail/2026/06/15/default-calendar/world-dengue-day-2026">World Dengue Day</a> focuses global attention on one of the world's fastest-growing public health threats.</p>
<p>Dengue is a debilitating disease that devastates families and communities and overloads health systems. There is no cure, and so prevention and control are essential.</p>
<p>And the numbers demand urgent global attention:</p>
<ul>
  <li>An estimated 400 million people are infected with dengue annually.</li>
  <li>4 billion people (half the world's population) are at risk.</li>
  <li>And 70% of that risk lies in Asia.</li>
</ul>
<p>To mark World Dengue Day 2026, Debug opened its Singapore facility for a tour for <a href="https://tank-talks-asia.captivate.fm/">Tank Talks Asia</a>, a leading podcast covering technology, innovation, and initiatives shaping the region's future.</p>
<p>The Singapore facility is Debug's first international R&amp;D hub. The facility produces more than 10 million male mosquitoes every week. It is where Google's engineering, AI, and robotics capabilities meet world-class mosquito biology, and where the work to protect communities across Southeast Asia and beyond is currently underway.</p>
<p><a href="http://linkedin.com/in/yanni-yoong-6752b820?originalSubdomain=sg">Yanni Yoong</a>, who runs the Singapore facility, led the Tank Talks Asia hosts Manisha Tank and Andrew Clark on a full tour, walking them through the entire process, from mosquito breeding and sorting to release.&nbsp;<br /></p><p>She then sat down with Manisha to share more about the mission and science behind Debug.</p><p>Among the highlights were:</p>


<ul>
  
  
  
  
  <li><strong>Sharing the Wolbachia method:</strong>
  At the core of Debug's approach is *Wolbachia,* a naturally occurring bacterium found in over half of insect species worldwide. Debug breeds non-biting male *Aedes aegypti* mosquitoes carrying *Wolbachia* and releases them into target areas. When these males mate with wild females, the resulting eggs do not hatch. With sustained releases, the local mosquito population progressively decreases without chemicals, GMOs, or disruption to the broader ecosystem. The releases are safe and species-specific.
  </li>
    
<li><strong>Showing Debug's AI-Powered Sorting:</strong>
  One of the most striking moments of the tour is seeing Debug's AI sex-sorting technology in action. Mosquitoes march single-file down a lit corridor while a camera captures each one in real time. The AI determines male from female in a split second based on their physical features (something no human team could do at the speed and volume required). A second machine learning pass reviews every image again before release.
  </li>

<li><strong>Explaining the Geographic Impact Advantage:</strong>   
  Singapore is the ideal launch site for Debug to make the greatest possible impact on reducing dengue in Asia.  It is also strategically located in Asia &#8212; where approximately 70% of global dengue cases occur &#8212; and serves as a hub for us to scale solutions across the region. 
  </li>

<li><strong>A Cost-Effective Solution:</strong>
  Yanni also explained that the Debug suppression method (releasing only non-biting males) is one of two approaches the team uses.  The expansion of our team in Singapore also includes additional R\&amp;D initiatives to support replacement programs, building on the key technologies we developed for suppression programmes.  We believe we can deliver cost-effective solutions against dengue and make this technology accessible across Asia and globally.  
  </li>

</ul>
<p><br /></p><p><span id="docs-internal-guid-95e248a8-7fff-ca51-2971-9510269b5592"><a href="https://www.youtube.com/watch?v=qWAoDXlA5Hs" style="text-decoration: none;"><span face="Arial, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant: normal; text-decoration-skip-ink: none; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><span style="border-color: currentcolor; border-image: initial; border-style: none; border-width: medium; border: none; display: inline-block; height: 317px; overflow: hidden; width: 564px;"><img height="317" src="https://blogger.googleusercontent.com/img/a/AVvXsEhrIkfm4_WWdDt7Qs73A4VxX6tv_vd55C90XToeCvK2sVAsc1d7bt7t5AYH8MZMZ3ei-xKk08ALI44WqGTOM66hseowJa5aPyB-ghELka4uBP5Nm9uXBwND6IVlkAaDYjwSddn726yMzSjhe8NL30wSOHNCyeQ2yki09IIXnapgn2Tpu3rBeSdL1GT7_5HI" style="margin-left: 0px; margin-top: 0px;" width="564" /></span></span></a></span></p><p>Watch the <a href="https://youtu.be/qWAoDXlA5Hs?is=6rcFA8b6B8fCCFd6">Tank Talk Asia</a> episode to look into our mission, process, and the science and technology behind Debug, as well as the team's pride in helping change the trajectory of this disease.</p>



<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2026/06/for-world-dengue-day-debug-featured-on.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:For World Dengue Day, Debug Featured on Tank Talks Asia&url=https://blog.debug.com/2026/06/for-world-dengue-day-debug-featured-on.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2026/06/for-world-dengue-day-debug-featured-on.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2026/06/for-world-dengue-day-debug-featured-on.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='7930489703928206780' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2026/06/singapores-expansion-of-debugs-largest.html' itemprop='url' title='Singapore&#39;s Expansion of Debug&#39;s Largest Mosquito Production Facility Makes Headlines'>
Singapore's Expansion of Debug's Largest Mosquito Production Facility Makes Headlines
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Tuesday, June 9, 2026
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          
<style>
  /* Spacing for the list container */
  .post-body ul, .post-body ol {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-left: 24px !important;
  }
  /* Spacing between individual bullet points */
  .post-body li {
    margin-bottom: 1px !important; /* Increase this number for even more space */
    line-height: 1.6 !important;    /* Keeps line spacing inside a bullet tight */
  }
  /* Prevents double-spacing at the very end of the list */
  .post-body li:last-child {
    margin-bottom: 0 !important;
  }
</style>
<p><em>Author: Monica Tsai</em></p>

  <p>For the past eight years, the Debug team in Singapore has been quietly doing some of the most important work in our global mission: rearing, sorting, and releasing millions of <em>Wolbachia</em> male mosquitoes to suppress the risks of dengue.</p>
  <p>On May 12, 2026, we <a href="https://blog.debug.com/2026/05/debug-expands-in-singapore-building.html">announced the next chapter: the expansion of our Singapore facility</a> into our largest adult mosquito production and R&amp;D hub in the Asia Pacific.</p>
  <p>The expansion received strong traction from media publications across Singapore and the ASEAN region, with coverage capturing what this expansion means: not just for Singapore, but for the region and the world.</p>
  <p>Among the highlights:</p>
  <ul>
    <li><em>The Straits Times</em> covered the news on our growth, highlighting how Google unit Debug is expanding its local facility to supercharge the fight against dengue: <a href="https://www.straitstimes.com/singapore/health/google-subsidiary-expands-mosquito-facility-here-to-strengthen-anti-dengue-efforts">Google unit Debug expands facility here in support of anti-dengue efforts</a>.</li>
    <li><em>Lianhe Zaobao</em> took a deep dive into the technology behind our precision-rearing and release process: "<a href="https://www.zaobao.com.sg/news/singapore/story20260512-9019040">Local mosquito production facility leverages technology for dengue prevention and control</a>"</li>
    <li><em>CNA</em> ran a <a href="https://www.channelnewsasia.com/watch/expanded-mosquito-production-facility-now-produces-10-million-wolbachia-mosquitoes-weekly-6116276">feature</a> to showcase the facility's expansion and the proven efficacy of Project Wolbachia.</li>
    <li><em>Mothership</em> produced a <a href="https://www.facebook.com/reel/2049977035877090">social media reel</a> for a behind-the-scenes look at the facility, with insights from the Debug team</li>
  </ul>
  <p>To get up close, the Debug team and I opened the factory doors for a special tour, giving journalists, photographers, and videographers an in-person look at the process of producing 10 million male mosquitoes per week.</p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Behind the scenes look at the interview process with Monica Tsai" height="300" src="https://blogger.googleusercontent.com/img/a/AVvXsEiLr_wAUvdh7Q5MSSR8teN8Op2d-S7swsX2tmM36kmD0MFCGWDc9Twu2IzA6oAVoAKfd30zuP9Gh0IgxzM-hAox4ENKpKqy1wJrs1xC4EI3OqDlwVwJMbQx1JYswMSR04F4FeLUWPrBeS2lMnIm-P0Kspik2XMHno2s62FGH7z5zHKZOoNEjqltJ5u1yTMA=w400-h300" style="margin-left: auto; margin-right: auto; margin-top: 0px;" width="400" /></td></tr><tr><td class="tr-caption" style="text-align: center;">Behind the scenes with Monica Tsai (BD Lead)</td></tr></tbody></table><p><span id="docs-internal-guid-f9196a58-7fff-c161-5aa1-0181af5f8f39"><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 11pt; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;"><span style="border-color: currentcolor; border-image: initial; border-style: none; border-width: medium; border: none; display: inline-block; height: 7px; overflow: hidden; width: 97px;"></span></span></span></p>
  <p style="margin-top: -40px;"><b>Coverage matters because expansion matters.</b></p>
  <p>Asia bears 70% of the global dengue burden. Dengue threatens 4 billion people worldwide, and the tools available to most communities, such as chemical pesticides, larvicides, and fogging, are becoming less effective as mosquitoes develop resistance. Debug's approach is different: non-biting male mosquitoes carrying <em>Wolbachia</em>, a naturally occurring bacterium, are released into targeted areas. When they mate with wild females, the resulting eggs do not hatch. The population declines progressively and measurably, without chemicals, without GMOs.</p>
  <p>The expansion builds on that foundation. By anchoring our R&amp;D in Singapore, we are developing next-generation solutions built in Asia and for Asia. Singapore is our blueprint: proving that urban-scale suppression is possible and that the technology can be tailored to local climates, species, and needs.</p>
  <p>We are proud of what the Debug Singapore team, including our scientists, engineers, and production and field operations staff, has built here. And grateful, again, to the journalists who took the time to understand the science and tell this important public health story.</p>


<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>

<style>
  /* Spacing for the list container */
  .post-body ul, .post-body ol {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-left: 24px !important;
  }
  /* Spacing between individual bullet points */
  .post-body li {
    margin-bottom: 1px !important; /* Increase this number for even more space */
    line-height: 1.6 !important;    /* Keeps line spacing inside a bullet tight */
  }
  /* Prevents double-spacing at the very end of the list */
  .post-body li:last-child {
    margin-bottom: 0 !important;
  }
</style>
<p><em>Author: Monica Tsai</em></p>

  <p>For the past eight years, the Debug team in Singapore has been quietly doing some of the most important work in our global mission: rearing, sorting, and releasing millions of <em>Wolbachia</em> male mosquitoes to suppress the risks of dengue.</p>
  <p>On May 12, 2026, we <a href="https://blog.debug.com/2026/05/debug-expands-in-singapore-building.html">announced the next chapter: the expansion of our Singapore facility</a> into our largest adult mosquito production and R&amp;D hub in the Asia Pacific.</p>
  <p>The expansion received strong traction from media publications across Singapore and the ASEAN region, with coverage capturing what this expansion means: not just for Singapore, but for the region and the world.</p>
  <p>Among the highlights:</p>
  <ul>
    <li><em>The Straits Times</em> covered the news on our growth, highlighting how Google unit Debug is expanding its local facility to supercharge the fight against dengue: <a href="https://www.straitstimes.com/singapore/health/google-subsidiary-expands-mosquito-facility-here-to-strengthen-anti-dengue-efforts">Google unit Debug expands facility here in support of anti-dengue efforts</a>.</li>
    <li><em>Lianhe Zaobao</em> took a deep dive into the technology behind our precision-rearing and release process: "<a href="https://www.zaobao.com.sg/news/singapore/story20260512-9019040">Local mosquito production facility leverages technology for dengue prevention and control</a>"</li>
    <li><em>CNA</em> ran a <a href="https://www.channelnewsasia.com/watch/expanded-mosquito-production-facility-now-produces-10-million-wolbachia-mosquitoes-weekly-6116276">feature</a> to showcase the facility's expansion and the proven efficacy of Project Wolbachia.</li>
    <li><em>Mothership</em> produced a <a href="https://www.facebook.com/reel/2049977035877090">social media reel</a> for a behind-the-scenes look at the facility, with insights from the Debug team</li>
  </ul>
  <p>To get up close, the Debug team and I opened the factory doors for a special tour, giving journalists, photographers, and videographers an in-person look at the process of producing 10 million male mosquitoes per week.</p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Behind the scenes look at the interview process with Monica Tsai" height="300" src="https://blogger.googleusercontent.com/img/a/AVvXsEiLr_wAUvdh7Q5MSSR8teN8Op2d-S7swsX2tmM36kmD0MFCGWDc9Twu2IzA6oAVoAKfd30zuP9Gh0IgxzM-hAox4ENKpKqy1wJrs1xC4EI3OqDlwVwJMbQx1JYswMSR04F4FeLUWPrBeS2lMnIm-P0Kspik2XMHno2s62FGH7z5zHKZOoNEjqltJ5u1yTMA=w400-h300" style="margin-left: auto; margin-right: auto; margin-top: 0px;" width="400" /></td></tr><tr><td class="tr-caption" style="text-align: center;">Behind the scenes with Monica Tsai (BD Lead)</td></tr></tbody></table><p><span id="docs-internal-guid-f9196a58-7fff-c161-5aa1-0181af5f8f39"><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 11pt; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;"><span style="border-color: currentcolor; border-image: initial; border-style: none; border-width: medium; border: none; display: inline-block; height: 7px; overflow: hidden; width: 97px;"></span></span></span></p>
  <p style="margin-top: -40px;"><b>Coverage matters because expansion matters.</b></p>
  <p>Asia bears 70% of the global dengue burden. Dengue threatens 4 billion people worldwide, and the tools available to most communities, such as chemical pesticides, larvicides, and fogging, are becoming less effective as mosquitoes develop resistance. Debug's approach is different: non-biting male mosquitoes carrying <em>Wolbachia</em>, a naturally occurring bacterium, are released into targeted areas. When they mate with wild females, the resulting eggs do not hatch. The population declines progressively and measurably, without chemicals, without GMOs.</p>
  <p>The expansion builds on that foundation. By anchoring our R&amp;D in Singapore, we are developing next-generation solutions built in Asia and for Asia. Singapore is our blueprint: proving that urban-scale suppression is possible and that the technology can be tailored to local climates, species, and needs.</p>
  <p>We are proud of what the Debug Singapore team, including our scientists, engineers, and production and field operations staff, has built here. And grateful, again, to the journalists who took the time to understand the science and tell this important public health story.</p>

<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2026/06/singapores-expansion-of-debugs-largest.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:Singapore&#39;s Expansion of Debug&#39;s Largest Mosquito Production Facility Makes Headlines&url=https://blog.debug.com/2026/06/singapores-expansion-of-debugs-largest.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2026/06/singapores-expansion-of-debugs-largest.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2026/06/singapores-expansion-of-debugs-largest.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='2724928643068616618' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2026/05/debug-expands-in-singapore-building.html' itemprop='url' title='Debug Expands in Singapore: Building the Next Generation of Mosquito Control Technology'>
Debug Expands in Singapore: Building the Next Generation of Mosquito Control Technology
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Monday, May 11, 2026
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <style>
  /* Spacing for the list container */
  .post-body ul, .post-body ol {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-left: 24px !important;
  }
  /* Spacing between individual bullet points */
  .post-body li {
    margin-bottom: 14px !important; /* Increase this number for even more space */
    line-height: 1.6 !important;    /* Keeps line spacing inside a bullet tight */
  }
  /* Prevents double-spacing at the very end of the list */
  .post-body li:last-child {
    margin-bottom: 0 !important;
  }
</style>
<p><em>Authors: Yanni Yoong (Sr Program Mgr), Monica Tsai (BD)</em></p>

<p>Debug, a Google initiative, announced the expansion of its research and development (R&amp;D) and mosquito production capabilities in Singapore (<a href="https://debug.com/press/assets/Debug_by_Google_expands_Singapore_site_to_accelerate_AI_and_automation_in_global_fight_against_mosquito-borne_diseases_2026_05_12.pdf">media release here</a>). This opening establishes Debug's first international R&amp;D hub and marks the launch of its largest adult mosquito production facility in the Asia Pacific.</p>

<p>This is a significant milestone for Debug and the Asia Pacific region.</p>

<p>Ten years ago, Debug set out to answer the question: how could we stop debilitating mosquito-borne diseases like dengue without chemicals, without GMOs, and without harming the environment?&nbsp;</p>

<p>The answer, it turns out, is good bugs.</p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Image: Debug Singapore factory." height="269" src="https://blogger.googleusercontent.com/img/a/AVvXsEh9SrNB7TuYRQbY1wCAyQSiBdx920l1phxvwWyeENYJs0Z9QEROgP5iLvoqssFARGLkDpel5LITNakNCwOLzV2D2ExxIO5Np1Na6u9OyBXXkxwC1n8l5BBwWB367ovjn49jubj6o6jWSSxQ6_fJAgTaoSjVHn6dR2CflK5dqiDntm4wjq-AasfIlN5CEy6N=w400-h269" style="margin-left: auto; margin-right: auto; margin-top: 0px;" title="Image: Debug Singapore factory." width="400" /></td></tr><tr><td class="tr-caption" style="text-align: center;"><span id="docs-internal-guid-be02063d-7fff-89bf-3f04-fccc03ac8888"><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 10pt; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;">Image: Debug Singapore factory.</span></p>
  </span></td></tr></tbody></table>

<p><strong>From Six Million to Ten Million &#8212; and Growing</strong></p>

<p>Debug has been supporting the National Environment Agency (NEA) on Project Wolbachia since 2018 and opened its first end-to-end mosquito production facility in 2022. By 2024, Debug released 6 million male Wolbachia mosquitoes per week to suppress the dengue vector population in the community and reduce the risks of dengue among residents. Today, over 10 million are released weekly.</p><p>Rigorous and extensive trials by NEA have shown that Project Wolbachia &#8211; Singapore has achieved 80-90% suppression of the Aedes aegypti mosquito population and more than 70% reduction in dengue incidents after 6 to 12 months of releases<a href="#fn1" id="ref1"><sup>[1]</sup></a>.</p>


<p><strong>What This Expansion Makes Possible</strong></p>
<p>The expanded Debug R&amp;D facility and team aren't just about producing more mosquitoes. It's about building smarter, faster, even more precise tools to get this technology accessible to more people.</p><p>By scaling our Singapore-based team of scientists, hardware engineers, and software engineers, Debug is accelerating the development of:</p>
  <ul>
    <li>Next-generation AI sex-sorting. Separating adult male and female mosquitoes with even greater accuracy and speed is one of the most critical and technically complex challenges in this work. Our expanded R&amp;D team will push these models further.
    <br />
    </li>
    <li>End-to-end robotics. Our Larval Rearing Robot automates the transition from larvae to pupae. New R&amp;D investment will integrate automation across the entire rearing lifecycle and significantly boost yield, making this technology more accessible at scale.</li>
    <li>More precise, larger-scale releases. Our GPS-enabled automated release vans can cover larger areas with the same human resources and greater precision than manual release. The next chapter is about expanding that reach through further innovations in automated releases.
    </li>
</ul>
      
      
<p><br /></p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Image: AI sex sorting of Aedes aegypti mosquitoes in real time." height="264" src="https://blogger.googleusercontent.com/img/a/AVvXsEhvoR2mRVQ4TW1Fe16mD0zoPP4MVPDE-JQeKFhrB5nlFngJKo3k1DVg1_RRl-UxRfmehmG5KFyVgx0_lCiMZUzqdJbfL7XQTBLZuhiH0d6yyyVkyTspSOni1qIgEL8NcE9gMY6Jx_YqGEp9MKXw0hJSQWGaswK1QMybQNZ9jFXPtpjd2xbuug4I4Pb8GapB=w400-h264" style="font-family: &quot;Google Sans Text&quot;, sans-serif; font-size: 10pt; margin-left: auto; margin-right: auto; margin-top: 0px; white-space: pre-wrap;" title="Image: AI sex sorting of Aedes aegypti mosquitoes in real time." width="400" /></td></tr><tr><td class="tr-caption" style="text-align: center;"><span id="docs-internal-guid-c115fdbd-7fff-f9de-34b2-032474a6b650"><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 10pt; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;">Image: AI sex sorting of </span><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 10pt; font-style: italic; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;">Aedes aegypti</span><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 10pt; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;"> mosquitoes in real time</span></span></td></tr></tbody></table><p>While Debug&#8217;s current operations primarily focus on mosquito population suppression technology to reduce dengue cases, the expanded facility introduces new R&amp;D capabilities for mosquito population replacement. This approach involves releasing mosquitoes that pass on Wolbachia to the next generation, eventually establishing a mosquito population that is far less capable of transmitting dengue.</p><p>The expansion includes a new specialised larval rearing unit designed to develop innovations for replacement programs. This additional offering allows Debug to deliver customised, effective cost-per-person protected targets tailored for countries in Southeast Asia and beyond with larger populations.</p>
      
<p><strong>Built in Singapore, for the World</strong></p>
<p>Dengue affects 4 billion people globally. Asia bears 70% of that burden.</p><p>Choosing Singapore as our first international R&amp;D hub is deliberate. Our Singapore team understands the climate, the markets, and the communities we're working to protect.&nbsp;</p><p>The innovations developed here won't stay here, but they'll become the blueprint for scaling customized, cost-effective solutions across Southeast Asia and beyond.</p><p>The next generation of Debug technology will be built here, in Singapore, and deployed across the region and around the world. If you want to be part of what comes next, we'd like to hear from you.</p><div><br /></div>
<p>
Get in touch: 
 <a href="mailto:partners@debug.com">partners@debug.com</a><br />Debug roles: <a href="https://goo.gle/debug-sg">https://goo.gle/debug-sg </a></p><br /><br />


<hr />
<ol>
  <li id="fn1">
    Project Wolbachia trials conducted by NEA: 
    <a href="https://www.sciencedirect.com/science/article/pii/S2666606526000453" rel="noopener" target="_blank">Combating dengue using male Wolbachia-infected mosquitoes&#8211;lessons from Singapore's experience</a>. 
    <a href="#ref1" title="Jump back to text">&#8617;</a>
  </li>
</ol>
<p></p>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<style>
  /* Spacing for the list container */
  .post-body ul, .post-body ol {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-left: 24px !important;
  }
  /* Spacing between individual bullet points */
  .post-body li {
    margin-bottom: 14px !important; /* Increase this number for even more space */
    line-height: 1.6 !important;    /* Keeps line spacing inside a bullet tight */
  }
  /* Prevents double-spacing at the very end of the list */
  .post-body li:last-child {
    margin-bottom: 0 !important;
  }
</style>
<p><em>Authors: Yanni Yoong (Sr Program Mgr), Monica Tsai (BD)</em></p>

<p>Debug, a Google initiative, announced the expansion of its research and development (R&amp;D) and mosquito production capabilities in Singapore (<a href="https://debug.com/press/assets/Debug_by_Google_expands_Singapore_site_to_accelerate_AI_and_automation_in_global_fight_against_mosquito-borne_diseases_2026_05_12.pdf">media release here</a>). This opening establishes Debug's first international R&amp;D hub and marks the launch of its largest adult mosquito production facility in the Asia Pacific.</p>

<p>This is a significant milestone for Debug and the Asia Pacific region.</p>

<p>Ten years ago, Debug set out to answer the question: how could we stop debilitating mosquito-borne diseases like dengue without chemicals, without GMOs, and without harming the environment?&nbsp;</p>

<p>The answer, it turns out, is good bugs.</p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Image: Debug Singapore factory." height="269" src="https://blogger.googleusercontent.com/img/a/AVvXsEh9SrNB7TuYRQbY1wCAyQSiBdx920l1phxvwWyeENYJs0Z9QEROgP5iLvoqssFARGLkDpel5LITNakNCwOLzV2D2ExxIO5Np1Na6u9OyBXXkxwC1n8l5BBwWB367ovjn49jubj6o6jWSSxQ6_fJAgTaoSjVHn6dR2CflK5dqiDntm4wjq-AasfIlN5CEy6N=w400-h269" style="margin-left: auto; margin-right: auto; margin-top: 0px;" title="Image: Debug Singapore factory." width="400" /></td></tr><tr><td class="tr-caption" style="text-align: center;"><span id="docs-internal-guid-be02063d-7fff-89bf-3f04-fccc03ac8888"><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 10pt; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;">Image: Debug Singapore factory.</span></p>
  </span></td></tr></tbody></table>

<p><strong>From Six Million to Ten Million &#8212; and Growing</strong></p>

<p>Debug has been supporting the National Environment Agency (NEA) on Project Wolbachia since 2018 and opened its first end-to-end mosquito production facility in 2022. By 2024, Debug released 6 million male Wolbachia mosquitoes per week to suppress the dengue vector population in the community and reduce the risks of dengue among residents. Today, over 10 million are released weekly.</p><p>Rigorous and extensive trials by NEA have shown that Project Wolbachia &#8211; Singapore has achieved 80-90% suppression of the Aedes aegypti mosquito population and more than 70% reduction in dengue incidents after 6 to 12 months of releases<a href="#fn1" id="ref1"><sup>[1]</sup></a>.</p>


<p><strong>What This Expansion Makes Possible</strong></p>
<p>The expanded Debug R&amp;D facility and team aren't just about producing more mosquitoes. It's about building smarter, faster, even more precise tools to get this technology accessible to more people.</p><p>By scaling our Singapore-based team of scientists, hardware engineers, and software engineers, Debug is accelerating the development of:</p>
  <ul>
    <li>Next-generation AI sex-sorting. Separating adult male and female mosquitoes with even greater accuracy and speed is one of the most critical and technically complex challenges in this work. Our expanded R&amp;D team will push these models further.
    <br />
    </li>
    <li>End-to-end robotics. Our Larval Rearing Robot automates the transition from larvae to pupae. New R&amp;D investment will integrate automation across the entire rearing lifecycle and significantly boost yield, making this technology more accessible at scale.</li>
    <li>More precise, larger-scale releases. Our GPS-enabled automated release vans can cover larger areas with the same human resources and greater precision than manual release. The next chapter is about expanding that reach through further innovations in automated releases.
    </li>
</ul>
      
      
<p><br /></p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Image: AI sex sorting of Aedes aegypti mosquitoes in real time." height="264" src="https://blogger.googleusercontent.com/img/a/AVvXsEhvoR2mRVQ4TW1Fe16mD0zoPP4MVPDE-JQeKFhrB5nlFngJKo3k1DVg1_RRl-UxRfmehmG5KFyVgx0_lCiMZUzqdJbfL7XQTBLZuhiH0d6yyyVkyTspSOni1qIgEL8NcE9gMY6Jx_YqGEp9MKXw0hJSQWGaswK1QMybQNZ9jFXPtpjd2xbuug4I4Pb8GapB=w400-h264" style="font-family: &quot;Google Sans Text&quot;, sans-serif; font-size: 10pt; margin-left: auto; margin-right: auto; margin-top: 0px; white-space: pre-wrap;" title="Image: AI sex sorting of Aedes aegypti mosquitoes in real time." width="400" /></td></tr><tr><td class="tr-caption" style="text-align: center;"><span id="docs-internal-guid-c115fdbd-7fff-f9de-34b2-032474a6b650"><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 10pt; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;">Image: AI sex sorting of </span><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 10pt; font-style: italic; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;">Aedes aegypti</span><span face="&quot;Google Sans Text&quot;, sans-serif" style="font-size: 10pt; font-variant: normal; vertical-align: baseline; white-space: pre-wrap;"> mosquitoes in real time</span></span></td></tr></tbody></table><p>While Debug&#8217;s current operations primarily focus on mosquito population suppression technology to reduce dengue cases, the expanded facility introduces new R&amp;D capabilities for mosquito population replacement. This approach involves releasing mosquitoes that pass on Wolbachia to the next generation, eventually establishing a mosquito population that is far less capable of transmitting dengue.</p><p>The expansion includes a new specialised larval rearing unit designed to develop innovations for replacement programs. This additional offering allows Debug to deliver customised, effective cost-per-person protected targets tailored for countries in Southeast Asia and beyond with larger populations.</p>
      
<p><strong>Built in Singapore, for the World</strong></p>
<p>Dengue affects 4 billion people globally. Asia bears 70% of that burden.</p><p>Choosing Singapore as our first international R&amp;D hub is deliberate. Our Singapore team understands the climate, the markets, and the communities we're working to protect.&nbsp;</p><p>The innovations developed here won't stay here, but they'll become the blueprint for scaling customized, cost-effective solutions across Southeast Asia and beyond.</p><p>The next generation of Debug technology will be built here, in Singapore, and deployed across the region and around the world. If you want to be part of what comes next, we'd like to hear from you.</p><div><br /></div>
<p>
Get in touch: 
 <a href="mailto:partners@debug.com">partners@debug.com</a><br />Debug roles: <a href="https://goo.gle/debug-sg">https://goo.gle/debug-sg </a></p><br /><br />


<hr />
<ol>
  <li id="fn1">
    Project Wolbachia trials conducted by NEA: 
    <a href="https://www.sciencedirect.com/science/article/pii/S2666606526000453" rel="noopener" target="_blank">Combating dengue using male Wolbachia-infected mosquitoes&#8211;lessons from Singapore's experience</a>. 
    <a href="#ref1" title="Jump back to text">&#8617;</a>
  </li>
</ol>
<p></p>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2026/05/debug-expands-in-singapore-building.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:Debug Expands in Singapore: Building the Next Generation of Mosquito Control Technology&url=https://blog.debug.com/2026/05/debug-expands-in-singapore-building.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2026/05/debug-expands-in-singapore-building.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2026/05/debug-expands-in-singapore-building.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='855399454568678680' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html' itemprop='url' title=' Tracing the Global Invasion of One of Humanity’s Deadliest Foes'>
 Tracing the Global Invasion of One of Humanity&#8217;s Deadliest Foes
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Monday, September 22, 2025
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <p><em>New research from the Debug project reveals the origin and movement of the mosquito Aedes aegypti&#8212;which could help disease control efforts</em></p>
<p>Authors: <br />
Dr. Jacob Crawford, Staff Scientist, Debug <br />
Dr. Bradley White, Director, Debug</p>
<p><strong>The Global Dengue Threat</strong></p>
<p>More than 4 billion people&#8212;half of the world&#8217;s population&#8212;are at risk of contracting dengue, a mosquito-transmitted disease, each year. And global cases are surging: according to the <a href="https://www.who.int/news-room/fact-sheets/detail/dengue-and-severe-dengue#:~:text=The%20incidence%20of%20dengue%20has,million%20cases%20reported%20to%20WHO.">World Health Organization</a>, reported instances of dengue have increased eight-fold in the past 25 years, from 500,000 in 2000 to a historic high of more than 14.6 million in 2024. Severe dengue can wreak havoc on the human body, causing sickness and even death.</p>
<p>While more than 3,500 species of mosquito exist, the <em>Aedes aegypti</em> mosquito is responsible for almost all cases of dengue. Unfortunately, there is no available vaccine that can provide comprehensive protection from the disease. As a result, the only way to limit transmission of dengue and other viral diseases transmitted by this mosquito species, including Zika and chikungunya, is by controlling the <em>Aedes aegypti</em> population itself. </p>
<p>The Debug team and academic colleagues spent the past several years putting together the first comprehensive genomic database that helps to catalogue the history of <em>Aedes aegypti</em> migration across the world and the genetic mutations that occurred along the way. These findings represent a major advancement in our knowledge of <em>Aedes aegypti</em> genomics and our mission of eliminating disease-carrying mosquitoes: providing a platform for both optimizing the implementation of existing vector controls tools and developing novel interventions.  </p>
<p>We recently <a href="https://www.science.org/doi/10.1126/science.ads3732">published our research in <em>Science</em></a>, along with the datasets we used to inform our work, in the hopes that other people working on controlling mosquito-borne illnesses may also benefit from these discoveries.</p>
<p><strong>From the Forest to the City</strong></p>
<p>Historically, <em>Aedes aegypti</em> was only found in African forests, breeding in tree-holes and feeding on non-human primates and other animals. While these forest populations still exist, over the past 500 years, a form of <em>Aedes aegypti</em> has adapted to specialize on humans&#8212;breeding in artificial water sources and feeding nearly exclusively on people. The human-specialized form has invaded almost the entirety of the tropical and subtropical world, with more recent incursions into temperate areas as well.</p>
<p>An organism&#8217;s genome can serve as a historical record of sorts, showing, for example, when a species&#8217; population size may have changed and documenting migration patterns. In order to better understand the history of <em>Aedes aegypti</em> invasion, we sequenced the genomes of 1,206 individual mosquitoes from 73 locations across every continent except Antarctica, including both animal-preferring and invasive, human-preferring populations. </p>
<p>To collect some of the samples, our colleagues  set up oviposition cups (i.e. artificial containers holding water) across forests and cities and waited for mosquitoes to lay eggs in the water. Because it&#8217;s impossible to identify eggs in the field, our colleagues  brought all the eggs they gathered back to the lab for molecular testing.  </p>
<p><strong><img alt="" src="https://blogger.googleusercontent.com/img/a/AVvXsEh2NMG8Y9isYd9Qe9egHQIs5mGgAMK2IdxJvRcLmsRNUSoqwerERTi-woszwiU7XSwAS-4lsLa4IUhuVI--V1kuatWCnHVSEDbhfSLkjxVbWoyzq52RJ8ApAHa1vQt13BezVEHs4ouXzK66eRL9IpCLLRWMVQfnUoJo5_3rigUSj22Lc5LHR5abZbCDZ5wp" /></strong><br />
<strong>Debug collaborators Dr. Noah Rose (UC San Diego) and Gilbert Bianquinche collecting <em>Aedes aegypti</em> eggs in Senegal for the study.</strong>  </p>
<p>The team then sequenced the DNA of these mosquitoes on the Illumina platform and used Google Cloud&#8217;s compute power to map the billions of sequencing reads to the genomes of these mosquitoes, identifying millions of common and rare mutations. Demographic analyses based on this mutation database allowed us to pinpoint which regions of the genome were shared between populations, helping to unravel the routes that <em>Aedes aegypti</em> traveled as it invaded the globe and the approximate dates of these migrations.</p>
<p><strong>Mastering Mosquitoes&#8217; Movements</strong></p>
<p>We found over 141 million mutations in these genomes that tell us about how <em>Aedes aegypti</em> has changed and moved over time. </p>
<p>We discovered strong evidence, in agreement with historical records on disease occurrence, that this species of mosquito migrated from Africa to the Americas \~350 years ago, almost certainly on ships carrying enslaved people. Approximately 100 years after this migration, the American population of the <em>Aedes aegypti</em> exploded in size and rapidly invaded the rest of the tropical world&#8212;including the Mediterranean basin, Asia, and Australia.   </p>
<p>We also found strong evidence that this invasive form of <em>Aedes aegypti</em> has returned to Africa, helping to explain the recent, unprecedented urban dengue outbreaks in the region. These &#8220;back-to-Africa&#8221; populations harbor insecticide resistance genes selected for outside the continent, making control of the mosquitoes all the more difficult. </p>
<p><strong>The Implications for Global Health</strong></p>
<p>The Debug project is developing novel technology, powered by artificial intelligence, to raise and release sterile male mosquitoes in order to decrease populations of the ones that carry disease. This recent body of research has the potential to help us accelerate the process of introducing sterile <em>Aedes aegypti</em> into the regions that most urgently need population suppression.</p>
<p><strong><img alt="" src="https://blogger.googleusercontent.com/img/a/AVvXsEg9OTUm16r4PPzeiMkuWOccdTGwHypVNqcCaZo81CHbrVzkUkChts4FR6z-gx--diUSjaTCKYQZ6rmZg3kMWgM5MloyUo2AIOqaPYxjSyObK8FLdbPEJZsm-pK_mEl5VSITLHo1wvBBP1B6Gfukwlmer5UMh8OxFBpdP9YTNWNMLfBDCEVAULG0U4aZscjR" /></strong><br />
<strong>Adult <em>Aedes aegypti</em> mosquitoes in a Debug cage being prepared for backcrossing</strong></p>
<p>Whenever we release sterile males into a new area, it can take up to nine months to backcross our sterile lines with locally caught mosquitoes to ensure we are releasing <em>Aedes aegypti</em> that genetically matches the local population. The new dataset helps us to determine over what geographic region a single genetic line can be released - for example, our research found the same genetic line of the species could be released across multiple countries in South East Asia - which allows us to begin releases quicker and make the sterile male manufacturing process more efficient.  We hope that by publicly releasing our dataset, we can provide a unique platform for researchers to develop new tools in the ongoing fight against dengue, Zika, and other illnesses spread by <em>Aedes aegypti</em>. </p>
<p>As we continue to develop technologies and methods to target disease-carrying mosquitoes, we&#8217;re partnering closely with scientists, communities, and governments around the world. If you&#8217;re interested in collaborating with our team, please reach out to <a href="mailto:partners@debug.com">partners@debug.com</a> </p>
<h2></h2>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<p><em>New research from the Debug project reveals the origin and movement of the mosquito Aedes aegypti&#8212;which could help disease control efforts</em></p>
<p>Authors: <br />
Dr. Jacob Crawford, Staff Scientist, Debug <br />
Dr. Bradley White, Director, Debug</p>
<p><strong>The Global Dengue Threat</strong></p>
<p>More than 4 billion people&#8212;half of the world&#8217;s population&#8212;are at risk of contracting dengue, a mosquito-transmitted disease, each year. And global cases are surging: according to the <a href="https://www.who.int/news-room/fact-sheets/detail/dengue-and-severe-dengue#:~:text=The%20incidence%20of%20dengue%20has,million%20cases%20reported%20to%20WHO.">World Health Organization</a>, reported instances of dengue have increased eight-fold in the past 25 years, from 500,000 in 2000 to a historic high of more than 14.6 million in 2024. Severe dengue can wreak havoc on the human body, causing sickness and even death.</p>
<p>While more than 3,500 species of mosquito exist, the <em>Aedes aegypti</em> mosquito is responsible for almost all cases of dengue. Unfortunately, there is no available vaccine that can provide comprehensive protection from the disease. As a result, the only way to limit transmission of dengue and other viral diseases transmitted by this mosquito species, including Zika and chikungunya, is by controlling the <em>Aedes aegypti</em> population itself. </p>
<p>The Debug team and academic colleagues spent the past several years putting together the first comprehensive genomic database that helps to catalogue the history of <em>Aedes aegypti</em> migration across the world and the genetic mutations that occurred along the way. These findings represent a major advancement in our knowledge of <em>Aedes aegypti</em> genomics and our mission of eliminating disease-carrying mosquitoes: providing a platform for both optimizing the implementation of existing vector controls tools and developing novel interventions.  </p>
<p>We recently <a href="https://www.science.org/doi/10.1126/science.ads3732">published our research in <em>Science</em></a>, along with the datasets we used to inform our work, in the hopes that other people working on controlling mosquito-borne illnesses may also benefit from these discoveries.</p>
<p><strong>From the Forest to the City</strong></p>
<p>Historically, <em>Aedes aegypti</em> was only found in African forests, breeding in tree-holes and feeding on non-human primates and other animals. While these forest populations still exist, over the past 500 years, a form of <em>Aedes aegypti</em> has adapted to specialize on humans&#8212;breeding in artificial water sources and feeding nearly exclusively on people. The human-specialized form has invaded almost the entirety of the tropical and subtropical world, with more recent incursions into temperate areas as well.</p>
<p>An organism&#8217;s genome can serve as a historical record of sorts, showing, for example, when a species&#8217; population size may have changed and documenting migration patterns. In order to better understand the history of <em>Aedes aegypti</em> invasion, we sequenced the genomes of 1,206 individual mosquitoes from 73 locations across every continent except Antarctica, including both animal-preferring and invasive, human-preferring populations. </p>
<p>To collect some of the samples, our colleagues  set up oviposition cups (i.e. artificial containers holding water) across forests and cities and waited for mosquitoes to lay eggs in the water. Because it&#8217;s impossible to identify eggs in the field, our colleagues  brought all the eggs they gathered back to the lab for molecular testing.  </p>
<p><strong><img alt="" src="https://blogger.googleusercontent.com/img/a/AVvXsEh2NMG8Y9isYd9Qe9egHQIs5mGgAMK2IdxJvRcLmsRNUSoqwerERTi-woszwiU7XSwAS-4lsLa4IUhuVI--V1kuatWCnHVSEDbhfSLkjxVbWoyzq52RJ8ApAHa1vQt13BezVEHs4ouXzK66eRL9IpCLLRWMVQfnUoJo5_3rigUSj22Lc5LHR5abZbCDZ5wp" /></strong><br />
<strong>Debug collaborators Dr. Noah Rose (UC San Diego) and Gilbert Bianquinche collecting <em>Aedes aegypti</em> eggs in Senegal for the study.</strong>  </p>
<p>The team then sequenced the DNA of these mosquitoes on the Illumina platform and used Google Cloud&#8217;s compute power to map the billions of sequencing reads to the genomes of these mosquitoes, identifying millions of common and rare mutations. Demographic analyses based on this mutation database allowed us to pinpoint which regions of the genome were shared between populations, helping to unravel the routes that <em>Aedes aegypti</em> traveled as it invaded the globe and the approximate dates of these migrations.</p>
<p><strong>Mastering Mosquitoes&#8217; Movements</strong></p>
<p>We found over 141 million mutations in these genomes that tell us about how <em>Aedes aegypti</em> has changed and moved over time. </p>
<p>We discovered strong evidence, in agreement with historical records on disease occurrence, that this species of mosquito migrated from Africa to the Americas \~350 years ago, almost certainly on ships carrying enslaved people. Approximately 100 years after this migration, the American population of the <em>Aedes aegypti</em> exploded in size and rapidly invaded the rest of the tropical world&#8212;including the Mediterranean basin, Asia, and Australia.   </p>
<p>We also found strong evidence that this invasive form of <em>Aedes aegypti</em> has returned to Africa, helping to explain the recent, unprecedented urban dengue outbreaks in the region. These &#8220;back-to-Africa&#8221; populations harbor insecticide resistance genes selected for outside the continent, making control of the mosquitoes all the more difficult. </p>
<p><strong>The Implications for Global Health</strong></p>
<p>The Debug project is developing novel technology, powered by artificial intelligence, to raise and release sterile male mosquitoes in order to decrease populations of the ones that carry disease. This recent body of research has the potential to help us accelerate the process of introducing sterile <em>Aedes aegypti</em> into the regions that most urgently need population suppression.</p>
<p><strong><img alt="" src="https://blogger.googleusercontent.com/img/a/AVvXsEg9OTUm16r4PPzeiMkuWOccdTGwHypVNqcCaZo81CHbrVzkUkChts4FR6z-gx--diUSjaTCKYQZ6rmZg3kMWgM5MloyUo2AIOqaPYxjSyObK8FLdbPEJZsm-pK_mEl5VSITLHo1wvBBP1B6Gfukwlmer5UMh8OxFBpdP9YTNWNMLfBDCEVAULG0U4aZscjR" /></strong><br />
<strong>Adult <em>Aedes aegypti</em> mosquitoes in a Debug cage being prepared for backcrossing</strong></p>
<p>Whenever we release sterile males into a new area, it can take up to nine months to backcross our sterile lines with locally caught mosquitoes to ensure we are releasing <em>Aedes aegypti</em> that genetically matches the local population. The new dataset helps us to determine over what geographic region a single genetic line can be released - for example, our research found the same genetic line of the species could be released across multiple countries in South East Asia - which allows us to begin releases quicker and make the sterile male manufacturing process more efficient.  We hope that by publicly releasing our dataset, we can provide a unique platform for researchers to develop new tools in the ongoing fight against dengue, Zika, and other illnesses spread by <em>Aedes aegypti</em>. </p>
<p>As we continue to develop technologies and methods to target disease-carrying mosquitoes, we&#8217;re partnering closely with scientists, communities, and governments around the world. If you&#8217;re interested in collaborating with our team, please reach out to <a href="mailto:partners@debug.com">partners@debug.com</a> </p>
<h2></h2>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project: Tracing the Global Invasion of One of Humanity’s Deadliest Foes&url=https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='5467000098715503469' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html' itemprop='url' title='World Mosquito Program and Debug to form a global technology alliance'>
World Mosquito Program and Debug to form a global technology alliance
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Wednesday, March 5, 2025
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <h2 style="text-align: left;"><span style="font-family: inherit;">World Mosquito Program and Debug will collaborate to combat mosquito-borne diseases</span></h2>
<p><span style="font-family: inherit;">The World Mosquito Program (WMP) of Monash University and Debug by Alphabet announced today that they are teaming up to explore a collaboration to deploy automated releases of Wolbachia Aedes aegypti mosquitoes to combat mosquito-borne diseases. This collaboration will leverage WMP's proven Wolbachia replacement method and Debug's proprietary rearing and release technologies to rapidly scale programs that reduce the transmission of diseases such as dengue, Zika, chikungunya, and yellow fever.</span></p>
<p><span style="font-family: inherit;">WMP has been at the forefront of innovative approaches in Wolbachia replacement programs globally.  This safe and sustainable approach has been shown to significantly reduce the ability of mosquitoes to transmit viruses. A study published in the New England Journal of Medicine showed a 77% reduction in dengue incidence in areas where Wolbachia was deployed in field trials conducted by WMP in Yogyakarta, Indonesia<span style="font-size: x-small;"><a class="small" href="#footnote-1">[1]</a>.</span> Further results in Colombia&#8217;s Aburrá Valley and the Brazilian city of Niterói show the lowest number of dengue cases in more than 20 years, following WMP&#8217;s Wolbachia releases.</span></p>
<p><span style="font-family: inherit;">Debug has developed proprietary end-to-end technology that includes automated rearing robots, AI powered visual sex sorting systems, data surveillance, and release platforms to efficiently deploy Wolbachia suppression programs in several countries.  Debug&#8217;s automated release platform on vehicles enables coverage of large areas more effectively than manual methods while leveraging software for targeted distribution.</span></p>
<p><span style="font-family: inherit;">The collaboration between WMP and Debug brings together two global leaders in the fight against vector-borne disease. By combining the respective expertise and compatible values on global health impact, the collaboration aims to accelerate progress of current and future Wolbachia programs to reduce the global burden from mosquito-borne diseases.</span></p>
<p></p>
  <span style="font-family: inherit;">
    <ul style="text-align: left;">
      
  <li style="line-height: 1.5;"><span style="font-weight: bold;">Synergistic Approach:</span> Debug's proprietary technologies can be integrated with WMP's Wolbachia replacement method to increase efficiency and coverage.</li>
  <li style="line-height: 1.5;"><span style="font-weight: bold;">Innovation and Scalability</span>: The alliance will foster innovation and the development of scalable solutions that can be implemented in diverse settings.</li>
    <li style="line-height: 1.5;"><span style="font-weight: bold;">Global Health Impact</span>: This complementary collaboration has the potential to protect more people from the devastating effects of mosquito-borne diseases.</li></ul>
  </span>
<p></p>
<p><span style="font-family: inherit;">Linus Upson, founder of Debug, shared &#8220;We are excited about the opportunity to partner with WMP. In addition to utilizing the technology we have built to deliver Debug's proven Wolbachia suppression programs, we can provide our proprietary technology to deliver automated releases in WMP&#8217;s Wolbachia replacement programs worldwide. This is an exciting moment to unify groundbreaking biological and technological achievements to make a global impact.&#8221;</span></p>
<p><span style="font-family: inherit;">Scott O&#8217;Neill, CEO and Founder of the World Mosquito Program, said &#8220;Debug&#8217;s automated release technologies have the potential to significantly increase the speed and efficiency of our Wolbachia releases, accelerating our goal of protecting as many people as possible worldwide.&#8221;</span></p>
<p><span style="font-family: inherit;">Kieran Walters, Executive Director of Strategy &amp; Partnerships of the World Mosquito Program, shared &#8220;We are thrilled to form an alliance with Debug to combat one of the biggest global health threats of the 21st century. By combining our technologies, we can deliver an integrated solution to protect vulnerable communities from mosquito-borne diseases on an unprecedented scale.&#8221;</span></p>
<p></p>
<h4 style="text-align: left;"><span style="font-family: inherit;"><br /></span></h4><h4 style="text-align: left;"><span style="font-family: inherit;">About World Mosquito Program</span></h4>
<p><span style="font-family: inherit;">The World Mosquito Program (WMP) is a not-for-profit group of companies wholly owned by Monash University, Australia, that works to protect the global community from mosquito-borne viral diseases such as dengue, chikungunya, Zika and yellow fever. After effectively eliminating transmission of these viruses from Australia, WMP has expanded to now be working in 16 countries across Asia, Oceania and the Americas, protecting more than 13.5 million people. For more information, please visit World Mosquito Program.</span></p>
<p></p>
<h4 style="text-align: left;"><span style="font-family: inherit;"><br /></span></h4><h4 style="text-align: left;"><span style="font-family: inherit;">More information about WMP&#8217;s Wolbachia Method</span></h4><p><span style="font-family: inherit;">Wolbachia &#8211; a common bacterium found in about 50 percent of insects &#8211; is introduced in the Aedes aegypti mosquitoes that transmit dengue, chikungunya, Zika and yellow fever. The Wolbachia bacterium prevents the Aedes aegypti mosquitoes from transmitting these diseases.</span></p>
<p><span style="font-family: inherit;">The Wolbachia mosquitoes are then released in areas where mosquito-borne viruses are endemic. As they breed with wild mosquitoes, the number of Wolbachia mosquitoes grows over time until it remains high without the need for further releases.</span></p>
<p><span style="font-family: inherit;">Unlike other measures against mosquito-borne diseases, the Wolbachia method is safe for people, mosquitoes and the environment, and offers a once-off, long-term and self-sustaining solution to control the spread and impacts of dengue, chikungunya, Zika and yellow fever.</span></p>
<p><span style="font-family: inherit; font-size: small;">[1]&nbsp;</span><span style="font-size: small;">Source: Adi Utarini et al &#8220;Efficacy of Wolbachia-Infected Mosquito Deployments for the Control of Dengue&#8221; The New England Journal of Medicine, Vol 384, No 23, June 2021 (</span><a href="https://www.nejm.org/doi/full/10.1056/NEJMoa2030243?query=featured_home" style="font-size: small;" target="_blank">link</a><span style="font-size: small;">)</span></p><div><br /></div>

<h4 style="text-align: left;"><span style="font-family: inherit;">About Debug</span></h4>
<p><span style="font-family: inherit;"><a href="https://debug.com" target="_blank">Debug</a> is an Alphabet project that has developed proprietary technology to automate the rearing, sorting, and release of millions of non-biting, non-GMO, sterile male mosquitoes at scale for Wolbachia suppression programs. The end-to-end technology includes automated rearing robots, AI powered visual sex sorting systems, and data surveillance and release platforms to optimize efficiency and performance. Debug releases mosquitoes into targeted areas identified using ongoing surveillance.</span></p>
<p></p>
<br />
<h4 style="line-height: 1; text-align: left;"><span style="font-family: inherit;">Contact Information</span></h4>
<h4 style="line-height: 1; text-align: left;"><br /></h4><h4 style="text-align: left;">World Mosquito Program</h4>
<span style="line-height: 0.5;">
  <p>Alex Jackson</p>
  <p>Global Editorial &amp; Media Relations Manager</p>
  <p>alex.jackson@worldmosquito.org </p>
<br />
<h4 style="text-align: left;">Debug</h4>
<p>Press and Media Relations</p>
<p><a href="mailto:press@debug.com">press@debug.com</a></p>
</span>





<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<h2 style="text-align: left;"><span style="font-family: inherit;">World Mosquito Program and Debug will collaborate to combat mosquito-borne diseases</span></h2>
<p><span style="font-family: inherit;">The World Mosquito Program (WMP) of Monash University and Debug by Alphabet announced today that they are teaming up to explore a collaboration to deploy automated releases of Wolbachia Aedes aegypti mosquitoes to combat mosquito-borne diseases. This collaboration will leverage WMP's proven Wolbachia replacement method and Debug's proprietary rearing and release technologies to rapidly scale programs that reduce the transmission of diseases such as dengue, Zika, chikungunya, and yellow fever.</span></p>
<p><span style="font-family: inherit;">WMP has been at the forefront of innovative approaches in Wolbachia replacement programs globally.  This safe and sustainable approach has been shown to significantly reduce the ability of mosquitoes to transmit viruses. A study published in the New England Journal of Medicine showed a 77% reduction in dengue incidence in areas where Wolbachia was deployed in field trials conducted by WMP in Yogyakarta, Indonesia<span style="font-size: x-small;"><a class="small" href="#footnote-1">[1]</a>.</span> Further results in Colombia&#8217;s Aburrá Valley and the Brazilian city of Niterói show the lowest number of dengue cases in more than 20 years, following WMP&#8217;s Wolbachia releases.</span></p>
<p><span style="font-family: inherit;">Debug has developed proprietary end-to-end technology that includes automated rearing robots, AI powered visual sex sorting systems, data surveillance, and release platforms to efficiently deploy Wolbachia suppression programs in several countries.  Debug&#8217;s automated release platform on vehicles enables coverage of large areas more effectively than manual methods while leveraging software for targeted distribution.</span></p>
<p><span style="font-family: inherit;">The collaboration between WMP and Debug brings together two global leaders in the fight against vector-borne disease. By combining the respective expertise and compatible values on global health impact, the collaboration aims to accelerate progress of current and future Wolbachia programs to reduce the global burden from mosquito-borne diseases.</span></p>
<p></p>
  <span style="font-family: inherit;">
    <ul style="text-align: left;">
      
  <li style="line-height: 1.5;"><span style="font-weight: bold;">Synergistic Approach:</span> Debug's proprietary technologies can be integrated with WMP's Wolbachia replacement method to increase efficiency and coverage.</li>
  <li style="line-height: 1.5;"><span style="font-weight: bold;">Innovation and Scalability</span>: The alliance will foster innovation and the development of scalable solutions that can be implemented in diverse settings.</li>
    <li style="line-height: 1.5;"><span style="font-weight: bold;">Global Health Impact</span>: This complementary collaboration has the potential to protect more people from the devastating effects of mosquito-borne diseases.</li></ul>
  </span>
<p></p>
<p><span style="font-family: inherit;">Linus Upson, founder of Debug, shared &#8220;We are excited about the opportunity to partner with WMP. In addition to utilizing the technology we have built to deliver Debug's proven Wolbachia suppression programs, we can provide our proprietary technology to deliver automated releases in WMP&#8217;s Wolbachia replacement programs worldwide. This is an exciting moment to unify groundbreaking biological and technological achievements to make a global impact.&#8221;</span></p>
<p><span style="font-family: inherit;">Scott O&#8217;Neill, CEO and Founder of the World Mosquito Program, said &#8220;Debug&#8217;s automated release technologies have the potential to significantly increase the speed and efficiency of our Wolbachia releases, accelerating our goal of protecting as many people as possible worldwide.&#8221;</span></p>
<p><span style="font-family: inherit;">Kieran Walters, Executive Director of Strategy &amp; Partnerships of the World Mosquito Program, shared &#8220;We are thrilled to form an alliance with Debug to combat one of the biggest global health threats of the 21st century. By combining our technologies, we can deliver an integrated solution to protect vulnerable communities from mosquito-borne diseases on an unprecedented scale.&#8221;</span></p>
<p></p>
<h4 style="text-align: left;"><span style="font-family: inherit;"><br /></span></h4><h4 style="text-align: left;"><span style="font-family: inherit;">About World Mosquito Program</span></h4>
<p><span style="font-family: inherit;">The World Mosquito Program (WMP) is a not-for-profit group of companies wholly owned by Monash University, Australia, that works to protect the global community from mosquito-borne viral diseases such as dengue, chikungunya, Zika and yellow fever. After effectively eliminating transmission of these viruses from Australia, WMP has expanded to now be working in 16 countries across Asia, Oceania and the Americas, protecting more than 13.5 million people. For more information, please visit World Mosquito Program.</span></p>
<p></p>
<h4 style="text-align: left;"><span style="font-family: inherit;"><br /></span></h4><h4 style="text-align: left;"><span style="font-family: inherit;">More information about WMP&#8217;s Wolbachia Method</span></h4><p><span style="font-family: inherit;">Wolbachia &#8211; a common bacterium found in about 50 percent of insects &#8211; is introduced in the Aedes aegypti mosquitoes that transmit dengue, chikungunya, Zika and yellow fever. The Wolbachia bacterium prevents the Aedes aegypti mosquitoes from transmitting these diseases.</span></p>
<p><span style="font-family: inherit;">The Wolbachia mosquitoes are then released in areas where mosquito-borne viruses are endemic. As they breed with wild mosquitoes, the number of Wolbachia mosquitoes grows over time until it remains high without the need for further releases.</span></p>
<p><span style="font-family: inherit;">Unlike other measures against mosquito-borne diseases, the Wolbachia method is safe for people, mosquitoes and the environment, and offers a once-off, long-term and self-sustaining solution to control the spread and impacts of dengue, chikungunya, Zika and yellow fever.</span></p>
<p><span style="font-family: inherit; font-size: small;">[1]&nbsp;</span><span style="font-size: small;">Source: Adi Utarini et al &#8220;Efficacy of Wolbachia-Infected Mosquito Deployments for the Control of Dengue&#8221; The New England Journal of Medicine, Vol 384, No 23, June 2021 (</span><a href="https://www.nejm.org/doi/full/10.1056/NEJMoa2030243?query=featured_home" style="font-size: small;" target="_blank">link</a><span style="font-size: small;">)</span></p><div><br /></div>

<h4 style="text-align: left;"><span style="font-family: inherit;">About Debug</span></h4>
<p><span style="font-family: inherit;"><a href="https://debug.com" target="_blank">Debug</a> is an Alphabet project that has developed proprietary technology to automate the rearing, sorting, and release of millions of non-biting, non-GMO, sterile male mosquitoes at scale for Wolbachia suppression programs. The end-to-end technology includes automated rearing robots, AI powered visual sex sorting systems, and data surveillance and release platforms to optimize efficiency and performance. Debug releases mosquitoes into targeted areas identified using ongoing surveillance.</span></p>
<p></p>
<br />
<h4 style="line-height: 1; text-align: left;"><span style="font-family: inherit;">Contact Information</span></h4>
<h4 style="line-height: 1; text-align: left;"><br /></h4><h4 style="text-align: left;">World Mosquito Program</h4>
<span style="line-height: 0.5;">
  <p>Alex Jackson</p>
  <p>Global Editorial &amp; Media Relations Manager</p>
  <p>alex.jackson@worldmosquito.org </p>
<br />
<h4 style="text-align: left;">Debug</h4>
<p>Press and Media Relations</p>
<p><a href="mailto:press@debug.com">press@debug.com</a></p>
</span>




<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:World Mosquito Program and Debug to form a global technology alliance&url=https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='2085090753853578802' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html' itemprop='url' title='Expansion of Project Wolbachia in Singapore'>
Expansion of Project Wolbachia in Singapore
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Monday, April 15, 2024
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <p><span face="Karla, sans-serif" style="font-size: 11pt; white-space-collapse: preserve;">Author: Yanni Yoong (Sr Program Mgr), Evdoxia Kakani, PhD (Staff Scientist), Monica Tsai (BD)</span></p><span id="docs-internal-guid-dae2b361-7fff-0242-f455-1b794a139be6"><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Following </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">positive results</span></a><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> from release of male </span><span face="Karla, sans-serif" style="font-size: 11pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia</span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">-carrying </span><span face="Karla, sans-serif" style="font-size: 11pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Aedes aegypti</span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> in Singapore, we are happy to announce that Debug is supporting the expansion of </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Project Wolbachia in Singapore</span></a><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> to cover 5 new residential sites to increase Project Wolbachia&#8217;s coverage from 350,000 households in 2023 to 480,000 households by Q1 2024 - an increase from 26% to 35% of households in Singapore.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /></span></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Results from NEA&#8217;s Project </span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;"> &#8211; Singapore</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Aedes aegypti</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> mosquito populations in the existing study sites of Bukit Batok, Choa Chu Kang, Tampines (releases done by Debug by Verily since 2018), and Yishun have generally fallen by more than 90 per cent. Data from 2019 to 2022 indicates that residents living in areas with at least one year of releases were up to 77 per cent less likely to be infected with dengue.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><br /></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Results from Debug&#8217;s release areas.&nbsp;</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">The heatmaps in Tampines and Marine Parade below show the &#8220;eraser effect&#8221; where releases of male </span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia-Aedes</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> mosquitoes has decreased the dengue risk over time.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"></span></p><div class="separator" style="clear: both; text-align: center;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><a href="https://blogger.googleusercontent.com/img/a/AVvXsEjMd-K5iR1ct65tngwNoBuyBDeQ7Wxyejoj-8LNy8Qw-b8GT6dmhIlSQDzcj_FZW162YWz44PXsxehYxqAgIWdYXvgzJ_VF5vuSUC2utlG2Hej5IWoUMqGC2p8TmLOlmK4RpScjrWi_cVnaezUhDLuUnNLPCK1IcZ83tLcC3-u0MwGA3aXeS26R8xl31_sg" style="margin-left: 1em; margin-right: 1em;"><img alt="" data-original-height="434" data-original-width="463" height="600" src="https://blogger.googleusercontent.com/img/a/AVvXsEjMd-K5iR1ct65tngwNoBuyBDeQ7Wxyejoj-8LNy8Qw-b8GT6dmhIlSQDzcj_FZW162YWz44PXsxehYxqAgIWdYXvgzJ_VF5vuSUC2utlG2Hej5IWoUMqGC2p8TmLOlmK4RpScjrWi_cVnaezUhDLuUnNLPCK1IcZ83tLcC3-u0MwGA3aXeS26R8xl31_sg=w640-h600" width="640" /></a></span></div><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /><br /></span><p></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"></span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Source: </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">NEA website</span></a></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">The increased capacity for Project Wolbachia from 7 million in 2023 to 11 million male Wolbachia-Aedes mosquitoes produced and released weekly is made possible by Singapore&#8217;s National Environment Agency (NEA) and its collaboration with Debug.&nbsp; By the end of Q1 2024, Debug will be producing and releasing more than 6 million male Wolbachia-Aedes mosquitoes per week for Project Wolbachia in Singapore </span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">.</span></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Debug has been using its proprietary automation technology for the production, sex-sorting, and release of male Wolbachia-Aedes mosquitoes at the Tampines and Marine Parade study sites since 2023, following a collaborative research from 2018 to 2023.&nbsp;&nbsp;</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /></span></p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Verily&#39;s Program Manager Yanni Yoong explaining to Senior Minister of State for National Development and Foreign Affairs Sim Ann and pre-school children how male male Wolbachia-Aedes mosquitoes are released via hand containers at the expansion of Project Wolbachia in Clementi residential estate." height="360" src="https://lh7-us.googleusercontent.com/djDOEYXl0ApHmouxoWQGrbcq0peEW2qku8-7c5yXvX5jBAtirQ64R2E5iThDFLW0yJ4qRSHORuovWlQqbypYjrGGmdZRlgRDmEvyV86TEtkK0-jVOHewIosVJwhuXdQ8AWoRuLxgwF0G19z2vEVlAFyx-bInEg-m3K82L80NL5bcv4wKNl5R1DAboGUlfcQ=w640-h360" style="margin-left: auto; margin-right: auto; margin-top: 0px;" width="640" /></td></tr><tr><td class="tr-caption" style="text-align: left;"><span id="docs-internal-guid-c9e0c675-7fff-8c11-2d23-0bd18ed7d4d8"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Verily's Program Manager Yanni Yoong explaining to Senior Minister of State for National Development and Foreign Affairs Sim Ann and pre-school children how male male Wolbachia-Aedes mosquitoes are released via hand containers at the expansion of Project Wolbachia in Clementi residential estate.</span></span></td></tr></tbody></table><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Male Wolbachia-Aedes mosquitoes are released using Debug&#8217;s vans to efficiently cover larger areas and evenly disperse mosquitoes among the blocks." height="330" src="https://lh7-us.googleusercontent.com/fia8D3jwOZR145yDbBaQwZTQ6yOT95dMon3NQqaEL9LPJEPcG5sAhWNaRdpvAOyMd0DOssFjoffiONdW3du5bVaY1w3KJbYpZW3YBkZ5gcnlgPg8PLPd6PdvaK-GsS0yyUhDX4MTQZCmH-VDPTrlcL4YvuR0tZh9esag8_uFPhteReouAbIy1BAlsKu56ZQ=w640-h330" style="background-color: white; color: #666666; font-family: Karla, sans-serif; font-size: 9pt; margin-left: auto; margin-right: auto; margin-top: -33.2608px; text-align: left; white-space-collapse: preserve;" width="640" /></td></tr><tr><td class="tr-caption" style="text-align: left;"><span id="docs-internal-guid-525b18fe-7fff-5d3a-948e-68d1bfb78601"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Male Wolbachia-Aedes mosquitoes are released using Debug&#8217;s vans to efficiently cover larger areas and evenly disperse mosquitoes among the blocks.<br /></span></span></td></tr></tbody></table><br /><sup style="white-space-collapse: preserve;">1</sup><span style="font-size: 8pt; white-space-collapse: preserve;">Around 4 million male Wolbachia-Aedes mosquitoes for the expansion sites and around 2 million for the existing sites (Tampines and Marine Parade) are produced and released weekly. </span></span>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<p><span face="Karla, sans-serif" style="font-size: 11pt; white-space-collapse: preserve;">Author: Yanni Yoong (Sr Program Mgr), Evdoxia Kakani, PhD (Staff Scientist), Monica Tsai (BD)</span></p><span id="docs-internal-guid-dae2b361-7fff-0242-f455-1b794a139be6"><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Following </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">positive results</span></a><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> from release of male </span><span face="Karla, sans-serif" style="font-size: 11pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia</span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">-carrying </span><span face="Karla, sans-serif" style="font-size: 11pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Aedes aegypti</span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> in Singapore, we are happy to announce that Debug is supporting the expansion of </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Project Wolbachia in Singapore</span></a><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> to cover 5 new residential sites to increase Project Wolbachia&#8217;s coverage from 350,000 households in 2023 to 480,000 households by Q1 2024 - an increase from 26% to 35% of households in Singapore.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /></span></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Results from NEA&#8217;s Project </span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;"> &#8211; Singapore</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Aedes aegypti</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> mosquito populations in the existing study sites of Bukit Batok, Choa Chu Kang, Tampines (releases done by Debug by Verily since 2018), and Yishun have generally fallen by more than 90 per cent. Data from 2019 to 2022 indicates that residents living in areas with at least one year of releases were up to 77 per cent less likely to be infected with dengue.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><br /></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Results from Debug&#8217;s release areas.&nbsp;</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">The heatmaps in Tampines and Marine Parade below show the &#8220;eraser effect&#8221; where releases of male </span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia-Aedes</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> mosquitoes has decreased the dengue risk over time.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"></span></p><div class="separator" style="clear: both; text-align: center;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><a href="https://blogger.googleusercontent.com/img/a/AVvXsEjMd-K5iR1ct65tngwNoBuyBDeQ7Wxyejoj-8LNy8Qw-b8GT6dmhIlSQDzcj_FZW162YWz44PXsxehYxqAgIWdYXvgzJ_VF5vuSUC2utlG2Hej5IWoUMqGC2p8TmLOlmK4RpScjrWi_cVnaezUhDLuUnNLPCK1IcZ83tLcC3-u0MwGA3aXeS26R8xl31_sg" style="margin-left: 1em; margin-right: 1em;"><img alt="" data-original-height="434" data-original-width="463" height="600" src="https://blogger.googleusercontent.com/img/a/AVvXsEjMd-K5iR1ct65tngwNoBuyBDeQ7Wxyejoj-8LNy8Qw-b8GT6dmhIlSQDzcj_FZW162YWz44PXsxehYxqAgIWdYXvgzJ_VF5vuSUC2utlG2Hej5IWoUMqGC2p8TmLOlmK4RpScjrWi_cVnaezUhDLuUnNLPCK1IcZ83tLcC3-u0MwGA3aXeS26R8xl31_sg=w640-h600" width="640" /></a></span></div><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /><br /></span><p></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"></span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Source: </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">NEA website</span></a></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">The increased capacity for Project Wolbachia from 7 million in 2023 to 11 million male Wolbachia-Aedes mosquitoes produced and released weekly is made possible by Singapore&#8217;s National Environment Agency (NEA) and its collaboration with Debug.&nbsp; By the end of Q1 2024, Debug will be producing and releasing more than 6 million male Wolbachia-Aedes mosquitoes per week for Project Wolbachia in Singapore </span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">.</span></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Debug has been using its proprietary automation technology for the production, sex-sorting, and release of male Wolbachia-Aedes mosquitoes at the Tampines and Marine Parade study sites since 2023, following a collaborative research from 2018 to 2023.&nbsp;&nbsp;</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /></span></p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Verily&#39;s Program Manager Yanni Yoong explaining to Senior Minister of State for National Development and Foreign Affairs Sim Ann and pre-school children how male male Wolbachia-Aedes mosquitoes are released via hand containers at the expansion of Project Wolbachia in Clementi residential estate." height="360" src="https://lh7-us.googleusercontent.com/djDOEYXl0ApHmouxoWQGrbcq0peEW2qku8-7c5yXvX5jBAtirQ64R2E5iThDFLW0yJ4qRSHORuovWlQqbypYjrGGmdZRlgRDmEvyV86TEtkK0-jVOHewIosVJwhuXdQ8AWoRuLxgwF0G19z2vEVlAFyx-bInEg-m3K82L80NL5bcv4wKNl5R1DAboGUlfcQ=w640-h360" style="margin-left: auto; margin-right: auto; margin-top: 0px;" width="640" /></td></tr><tr><td class="tr-caption" style="text-align: left;"><span id="docs-internal-guid-c9e0c675-7fff-8c11-2d23-0bd18ed7d4d8"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Verily's Program Manager Yanni Yoong explaining to Senior Minister of State for National Development and Foreign Affairs Sim Ann and pre-school children how male male Wolbachia-Aedes mosquitoes are released via hand containers at the expansion of Project Wolbachia in Clementi residential estate.</span></span></td></tr></tbody></table><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Male Wolbachia-Aedes mosquitoes are released using Debug&#8217;s vans to efficiently cover larger areas and evenly disperse mosquitoes among the blocks." height="330" src="https://lh7-us.googleusercontent.com/fia8D3jwOZR145yDbBaQwZTQ6yOT95dMon3NQqaEL9LPJEPcG5sAhWNaRdpvAOyMd0DOssFjoffiONdW3du5bVaY1w3KJbYpZW3YBkZ5gcnlgPg8PLPd6PdvaK-GsS0yyUhDX4MTQZCmH-VDPTrlcL4YvuR0tZh9esag8_uFPhteReouAbIy1BAlsKu56ZQ=w640-h330" style="background-color: white; color: #666666; font-family: Karla, sans-serif; font-size: 9pt; margin-left: auto; margin-right: auto; margin-top: -33.2608px; text-align: left; white-space-collapse: preserve;" width="640" /></td></tr><tr><td class="tr-caption" style="text-align: left;"><span id="docs-internal-guid-525b18fe-7fff-5d3a-948e-68d1bfb78601"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Male Wolbachia-Aedes mosquitoes are released using Debug&#8217;s vans to efficiently cover larger areas and evenly disperse mosquitoes among the blocks.<br /></span></span></td></tr></tbody></table><br /><sup style="white-space-collapse: preserve;">1</sup><span style="font-size: 8pt; white-space-collapse: preserve;">Around 4 million male Wolbachia-Aedes mosquitoes for the expansion sites and around 2 million for the existing sites (Tampines and Marine Parade) are produced and released weekly. </span></span>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:Expansion of Project Wolbachia in Singapore&url=https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='3837791725236916337' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html' itemprop='url' title='BugOut Wolbachia launches in the British Virgin Islands '>
BugOut Wolbachia launches in the British Virgin Islands 
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Thursday, September 8, 2022
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <p>Author: Jo Ohm, Scientist&nbsp;</p><p>We are excited to announce that the Verily Debug team is starting a collaboration with the <a href="https://greenvi.org/bugout/" rel="noopener" target="_blank">BugOut program</a>&nbsp;on Virgin Gorda in the British Virgin Islands. BugOut is a community-driven vector control initiative with the mission to reduce <em>Aedes aegypti</em> mosquitoes in the Territory. <em>Aedes aegypti</em> is invasive in the BVI and is both a vector of dengue, Zika and chikunguyna diseases, and a significant nuisance pest. The BugOut program is managed by Green VI, a BVI-based non-profit that works on environmental programs including waste management and environmental education.</p>
<p>BugOut&#8217;s aim to reduce <em>Aedes aegypti</em> mosquitoes ties in with Green VI&#8217;s other environment-focused initiatives, and piggybacks off the waste management effort to clean up neglected containers and piled trash that become breeding grounds for mosquitoes. Through targeted education, data-driven field work, and a consistent community presence, Green VI&#8217;s BugOut has successfully reduced mosquito breeding sites by 50% over the past 5 years. Debug is partnering with BugOut to launch the next phase of their program to further reduce <em>Aedes aegypti</em> mosquitoes using a <em>Wolbachia</em>-based incompatible insect technique (IIT). We are excited to be on board and looking forward to working on a unique and synergistic approach to mosquito control.</p>
<p>The Debug-BugOut partnership is launching as BugOut Wolbachia and combines Debug&#8217;s expertise in <em>Wolbachia</em>-male releases with BugOut&#8217;s ongoing efforts to rid the community of larval breeding sites. We will use our combined sets of tools to suppress <em>Aedes aegypti</em> on BVI in a way that follows Green VI&#8217;s environmentally-conscious and community-driven mission.</p><p><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"></span></span></p><div class="separator" style="clear: both; text-align: center;"><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqweMQ-wrO5yBGO5zGFOVkJ-NGg20K2Vd3FVzXBCugajy_sRb6yq53WsIxWkPQj09N-O01yRgoZjx2eFe9QrECn0-0OZEjJNt7JVQo2hnxjrdv0QIhW7I8H4rowD8CnMTXa3kFP5MU4joMCrPLe6zCCWWSu1VL8RSQ2jALMWS_OZN3tsK3LmW8wHj6/s512/debug1.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="384" data-original-width="512" height="480" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqweMQ-wrO5yBGO5zGFOVkJ-NGg20K2Vd3FVzXBCugajy_sRb6yq53WsIxWkPQj09N-O01yRgoZjx2eFe9QrECn0-0OZEjJNt7JVQo2hnxjrdv0QIhW7I8H4rowD8CnMTXa3kFP5MU4joMCrPLe6zCCWWSu1VL8RSQ2jALMWS_OZN3tsK3LmW8wHj6/w640-h480/debug1.png" width="640" /></a></span></span></div><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br /></span></span><p>We will spend the next several months supporting Green VI&#8217;s BugOut team and their community representatives as they evaluate how to integrate a <i>Wolbachia</i>-male <i>Aedes aegypti</i> release program into their toolkit. Our BugOut Wolbachia collaboration started collecting data on the existing mosquito population on Virgin Gorda in February 2022. We have begun engaging with the community to share knowledge of how <i>Wolbachia</i> works and how it can be used to reduce mosquitoes and hopefully mosquito-borne disease in the BVI. We have also been working with the community on preliminary studies of released <i>Wolbachia</i> male mosquitoes to evaluate their ability to survive and disperse in the field. Virgin Gorda will be the first island in the BVI to pilot the BugOut Wolbachia program as we learn and adapt our methods to match the unique needs of the local community and mosquito population before potentially scaling to other parts of the Territory.</p><p><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"></span></span></p><div class="separator" style="clear: both; text-align: center;"><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjasxAzXD7DTMbyy3p0itugBllX0NPe3ndbsr6kx3tTs5VCNRrBhX4yfBTvRg-dN9QUFd0QD7OVcl1xL7To1rG2ziz7C82iezX6gYym6x65r9efT7r72gbQn2ygiiO_UwF6moi1mHuM1v_unAbhQiAJrwXWoLlM76TH8wTb56dtILbLP9YK7kN59Eah/s512/debug2.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="512" data-original-width="384" height="640" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjasxAzXD7DTMbyy3p0itugBllX0NPe3ndbsr6kx3tTs5VCNRrBhX4yfBTvRg-dN9QUFd0QD7OVcl1xL7To1rG2ziz7C82iezX6gYym6x65r9efT7r72gbQn2ygiiO_UwF6moi1mHuM1v_unAbhQiAJrwXWoLlM76TH8wTb56dtILbLP9YK7kN59Eah/w480-h640/debug2.png" width="480" /></a></span></span></div><p></p><div>We look forward to the start of a shared venture in reducing <i>Aedes aegypti</i> on Virgin Gorda with BugOut Wolbachia. Fewer mosquitoes in the BVI will help reduce the incidence of mosquito-borne diseases but also promises to reduce nuisance biting, enhance tourism, and diversify the BugOut toolkit with an additional non-toxic, eco-friendly approach to mosquito control.</div><div><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><div><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><p><br /></p>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<p>Author: Jo Ohm, Scientist&nbsp;</p><p>We are excited to announce that the Verily Debug team is starting a collaboration with the <a href="https://greenvi.org/bugout/" rel="noopener" target="_blank">BugOut program</a>&nbsp;on Virgin Gorda in the British Virgin Islands. BugOut is a community-driven vector control initiative with the mission to reduce <em>Aedes aegypti</em> mosquitoes in the Territory. <em>Aedes aegypti</em> is invasive in the BVI and is both a vector of dengue, Zika and chikunguyna diseases, and a significant nuisance pest. The BugOut program is managed by Green VI, a BVI-based non-profit that works on environmental programs including waste management and environmental education.</p>
<p>BugOut&#8217;s aim to reduce <em>Aedes aegypti</em> mosquitoes ties in with Green VI&#8217;s other environment-focused initiatives, and piggybacks off the waste management effort to clean up neglected containers and piled trash that become breeding grounds for mosquitoes. Through targeted education, data-driven field work, and a consistent community presence, Green VI&#8217;s BugOut has successfully reduced mosquito breeding sites by 50% over the past 5 years. Debug is partnering with BugOut to launch the next phase of their program to further reduce <em>Aedes aegypti</em> mosquitoes using a <em>Wolbachia</em>-based incompatible insect technique (IIT). We are excited to be on board and looking forward to working on a unique and synergistic approach to mosquito control.</p>
<p>The Debug-BugOut partnership is launching as BugOut Wolbachia and combines Debug&#8217;s expertise in <em>Wolbachia</em>-male releases with BugOut&#8217;s ongoing efforts to rid the community of larval breeding sites. We will use our combined sets of tools to suppress <em>Aedes aegypti</em> on BVI in a way that follows Green VI&#8217;s environmentally-conscious and community-driven mission.</p><p><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"></span></span></p><div class="separator" style="clear: both; text-align: center;"><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqweMQ-wrO5yBGO5zGFOVkJ-NGg20K2Vd3FVzXBCugajy_sRb6yq53WsIxWkPQj09N-O01yRgoZjx2eFe9QrECn0-0OZEjJNt7JVQo2hnxjrdv0QIhW7I8H4rowD8CnMTXa3kFP5MU4joMCrPLe6zCCWWSu1VL8RSQ2jALMWS_OZN3tsK3LmW8wHj6/s512/debug1.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="384" data-original-width="512" height="480" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqweMQ-wrO5yBGO5zGFOVkJ-NGg20K2Vd3FVzXBCugajy_sRb6yq53WsIxWkPQj09N-O01yRgoZjx2eFe9QrECn0-0OZEjJNt7JVQo2hnxjrdv0QIhW7I8H4rowD8CnMTXa3kFP5MU4joMCrPLe6zCCWWSu1VL8RSQ2jALMWS_OZN3tsK3LmW8wHj6/w640-h480/debug1.png" width="640" /></a></span></span></div><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br /></span></span><p>We will spend the next several months supporting Green VI&#8217;s BugOut team and their community representatives as they evaluate how to integrate a <i>Wolbachia</i>-male <i>Aedes aegypti</i> release program into their toolkit. Our BugOut Wolbachia collaboration started collecting data on the existing mosquito population on Virgin Gorda in February 2022. We have begun engaging with the community to share knowledge of how <i>Wolbachia</i> works and how it can be used to reduce mosquitoes and hopefully mosquito-borne disease in the BVI. We have also been working with the community on preliminary studies of released <i>Wolbachia</i> male mosquitoes to evaluate their ability to survive and disperse in the field. Virgin Gorda will be the first island in the BVI to pilot the BugOut Wolbachia program as we learn and adapt our methods to match the unique needs of the local community and mosquito population before potentially scaling to other parts of the Territory.</p><p><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"></span></span></p><div class="separator" style="clear: both; text-align: center;"><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjasxAzXD7DTMbyy3p0itugBllX0NPe3ndbsr6kx3tTs5VCNRrBhX4yfBTvRg-dN9QUFd0QD7OVcl1xL7To1rG2ziz7C82iezX6gYym6x65r9efT7r72gbQn2ygiiO_UwF6moi1mHuM1v_unAbhQiAJrwXWoLlM76TH8wTb56dtILbLP9YK7kN59Eah/s512/debug2.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="512" data-original-width="384" height="640" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjasxAzXD7DTMbyy3p0itugBllX0NPe3ndbsr6kx3tTs5VCNRrBhX4yfBTvRg-dN9QUFd0QD7OVcl1xL7To1rG2ziz7C82iezX6gYym6x65r9efT7r72gbQn2ygiiO_UwF6moi1mHuM1v_unAbhQiAJrwXWoLlM76TH8wTb56dtILbLP9YK7kN59Eah/w480-h640/debug2.png" width="480" /></a></span></span></div><p></p><div>We look forward to the start of a shared venture in reducing <i>Aedes aegypti</i> on Virgin Gorda with BugOut Wolbachia. Fewer mosquitoes in the BVI will help reduce the incidence of mosquito-borne diseases but also promises to reduce nuisance biting, enhance tourism, and diversify the BugOut toolkit with an additional non-toxic, eco-friendly approach to mosquito control.</div><div><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><div><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><p><br /></p>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:BugOut Wolbachia launches in the British Virgin Islands &url=https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='blog-pager' id='blog-pager'>
<a class='home-link' href='https://blog.debug.com/'>
<i class='material-icons'>
                      &#59530;
                    </i>
</a>
<i class='material-icons disabled'>
                      &#58820;
                    </i>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' href='https://blog.debug.com/search?updated-max=2022-09-08T14:05:00-07:00&max-results=7' id='Blog1_blog-pager-older-link' title='Older Posts'>
<i class='material-icons'>
                          &#58824;
                        </i>
</a>
</span>
</div>
<div class='clear'></div>
</div></div>
</div>
</div>
<div class='col-right'>
<div class='section' id='sidebar-top'><div class='widget HTML' data-version='1' id='HTML7'>
<div class='widget-content'>
<div class='searchBox'>
<input type='text' title='Search This Blog' placeholder='Search blog ...' />
</div>
</div>
<div class='clear'></div>
</div></div>
<div id='aside'>
<div class='section' id='sidebar'>
<div class='widget BlogArchive' data-version='1' id='BlogArchive1'>
<div class='tab'>
<i class='material-icons icon'>
                      &#58055;
                    </i>
<h2>
Archive
</h2>
<i class='material-icons arrow'>
                      &#58821;
                    </i>
</div>
<div class='widget-content'>
<div id='ArchiveList'>
<div id='BlogArchive1_ArchiveList'>
<ul class='hierarchy'>
<li class='archivedate expanded'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy toggle-open'>
<i class='material-icons'>
                        &#58823;
                      </i>
                      &#160;
                      
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2026/'>
2026
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate expanded'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2026/06/'>
Jun
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2026/05/'>
May
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2025/'>
2025
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2025/09/'>
Sep
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2025/03/'>
Mar
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2024/'>
2024
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2024/04/'>
Apr
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2022/'>
2022
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2022/09/'>
Sep
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2020/'>
2020
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2020/10/'>
Oct
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2020/09/'>
Sep
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2020/04/'>
Apr
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2020/01/'>
Jan
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2019/'>
2019
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2019/11/'>
Nov
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2019/06/'>
Jun
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2018/'>
2018
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2018/11/'>
Nov
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2018/09/'>
Sep
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2018/07/'>
Jul
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2018/04/'>
Apr
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2017/'>
2017
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/12/'>
Dec
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/11/'>
Nov
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/07/'>
Jul
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/03/'>
Mar
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/02/'>
Feb
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/01/'>
Jan
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2016/'>
2016
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2016/10/'>
Oct
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class='clear'></div>
</div>
</div><div class='widget HTML' data-version='1' id='HTML6'>
<div class='widget-content'>
<a href="http://feeds.feedburner.com/debugproject">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAihJREFUeNrsWa9Pw0AU7viRMDFRBAkzJDMIBIhJJhCzk7NILIqMv4AEhdz+BCY3OYssAlGBoAJREpZwAlHEBO8lr8nSvNeVbu1dyX3JlzTrXfa+u/e9d7c5joWFhYVO1Fa8PwH2gK6m+BRwAvSlAdsrgr8E1jUuMH73GTAEzrkBWymTewZlihhLmgDXIAFuHgGVQOUF7OSYM1p6PgTuA1vAZlUEvAnPdapcMY0VICECekQ0XRfYrqoHsAGNgXfAoMomRiFDEhOZkkL3S88hMaB2LwXp0bj+ps2edpToZpjfoIDQtBeU+xjoDzP2G/gCPKZ5f8WsCAFJoJgOCcFdWSTeL9YQMSvTA1h9BkI5jaiXhLpSCL/8mVZY0UpyJ9ZdOkniu1dmJ96BpzQu9w6s28gcOq9j6pwLdR8/36NK5CQKwJSMrb2MhhSglBpt4UjsrdsnNu0B3J0HCozbCc4TjyY2srEgos/4RQljCzNxl4ireQD8FOq+T+W0mTB2g7njhlR+Sy2jsXFvU658U8YTbeaGpdIu7mWkEAq5ZtIjIhFZdtfX7QHckSvB2B6zC3VdAkZk0kAQwaXTk/CzTXK3wjIExCs6ZJpTnE4uY1KV+KzFzA3KTiFPENHJkOPcsfpLhwe4btoSuvUqAR+6TOxlCE6ZfKUsJLgsqGW8OpqAGx2X+sLxrwUog+JUeQRMDBIwyXOcnlPtPnL0/UsT/8LnOxYWFhZG4leAAQAAQHEaYuzHbAAAAABJRU5ErkJggg==" class="sidebar-icon" />
<h2>Feed</h2>
</a>
</div>
<div class='clear'></div>
</div><div class='widget HTML' data-version='1' id='HTML1'>
<div class='widget-content'>
<form style="text-align:center;" action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('https://feedburner.google.com/fb/a/mailverify?uri=debugproject', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Subscribe through email:</p><p><input type="text" style="width:140px" name="email"/></p><input type="hidden" value="debugproject" name="uri"/><input type="hidden" name="loc" value="en_US"/><input type="submit" value="Subscribe" /></form>
</div>
<div class='clear'></div>
</div></div>
<div class='no-items section' id='sidebar-bottom'></div>
</div>
</div>
<div style='clear:both;'></div>
</div>
</div>
<!-- Footer -->
<div class='footer-outer loading'>
<div class='footer-inner'>
<div class='footer-inner-2'>
<div style='width:33%;float:left;'>
<div class='no-items section' id='footer-1'></div>
</div>
<div style='width:33%;float:left;'>
<div class='no-items section' id='footer-2'></div>
</div>
<div style='width:33%;float:left;'>
<div class='no-items section' id='footer-3'></div>
</div>
<div style='clear:both;'></div>
</div>
</div>
</div>
<!-- <div class='google-footer-outer loading'> <div id='google-footer'> <a href='//www.google.com/'> <img class='google-logo-dark' height='36' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiIcdC1mxq7zf0j3GcX1BwSoY1vTQ2BGpkeIO2lXtxXzOqZdkyfCSuXB_jRaBU3TVgzBUdB06zDl1sNXfYbkVDx3ruhl9Yz_QsVkDIq1TjYYCLr4ntpmL_yAAMlfXTvg7m6Bgfxm7l4aCMm/s1600/debug-bw.png' style='margin-top: -16px;'/> </a> <ul> <li> <a href='//www.google.com/'> Google </a> </li> <li> <a href='//www.google.com/policies/privacy/'> Privacy </a> </li> <li> <a href='//www.google.com/policies/terms/'> Terms </a> </li> </ul> </div> </div> -->
<footer class='glue-footer'>
<section class='glue-footer__global'>
<div class='glue-footer__logo'>
<a href='https://www.google.com' title='Google'>
<svg aria-hidden='true' class='glue-footer__logo-img' role='presentation'>
<path d='M9.24 8.19v2.46h5.88c-.18 1.38-.64 2.39-1.34 3.1-.86.86-2.2 1.8-4.54 1.8-3.62 0-6.45-2.92-6.45-6.54s2.83-6.54 6.45-6.54c1.95 0 3.38.77 4.43 1.76L15.4 2.5C13.94 1.08 11.98 0 9.24 0 4.28 0 .11 4.04.11 9s4.17 9 9.13 9c2.68 0 4.7-.88 6.28-2.52 1.62-1.62 2.13-3.91 2.13-5.75 0-.57-.04-1.1-.13-1.54H9.24zm15.76-2c-3.21 0-5.83 2.44-5.83 5.81 0 3.34 2.62 5.81 5.83 5.81s5.83-2.46 5.83-5.81c0-3.37-2.62-5.81-5.83-5.81zm0 9.33c-1.76 0-3.28-1.45-3.28-3.52 0-2.09 1.52-3.52 3.28-3.52s3.28 1.43 3.28 3.52c0 2.07-1.52 3.52-3.28 3.52zm28.58-8.03h-.09c-.57-.68-1.67-1.3-3.06-1.3C47.53 6.19 45 8.72 45 12c0 3.26 2.53 5.81 5.43 5.81 1.39 0 2.49-.62 3.06-1.32h.09v.81c0 2.22-1.19 3.41-3.1 3.41-1.56 0-2.53-1.12-2.93-2.07l-2.22.92c.64 1.54 2.33 3.43 5.15 3.43 2.99 0 5.52-1.76 5.52-6.05V6.49h-2.42v1zm-2.93 8.03c-1.76 0-3.1-1.5-3.1-3.52 0-2.05 1.34-3.52 3.1-3.52 1.74 0 3.1 1.5 3.1 3.54.01 2.03-1.36 3.5-3.1 3.5zM38 6.19c-3.21 0-5.83 2.44-5.83 5.81 0 3.34 2.62 5.81 5.83 5.81s5.83-2.46 5.83-5.81c0-3.37-2.62-5.81-5.83-5.81zm0 9.33c-1.76 0-3.28-1.45-3.28-3.52 0-2.09 1.52-3.52 3.28-3.52s3.28 1.43 3.28 3.52c0 2.07-1.52 3.52-3.28 3.52zM58 .24h2.51v17.57H58zm10.26 15.28c-1.3 0-2.22-.59-2.82-1.76l7.77-3.21-.26-.66c-.48-1.3-1.96-3.7-4.97-3.7-2.99 0-5.48 2.35-5.48 5.81 0 3.26 2.46 5.81 5.76 5.81 2.66 0 4.2-1.63 4.84-2.57l-1.98-1.32c-.66.96-1.56 1.6-2.86 1.6zm-.18-7.15c1.03 0 1.91.53 2.2 1.28l-5.25 2.17c0-2.44 1.73-3.45 3.05-3.45z'>
</path>
</svg>
</a>
</div>
<ul class='glue-footer__global-links glue-no-bullet' role='list'>
<li class='glue-footer__global-links-list-item'>
<a class='glue-footer__link' href='https://about.google/'>
              About Google
            </a>
</li>
<li class='glue-footer__global-links-list-item'>
<a class='glue-footer__link' href='https://about.google/products/'>
              Google products
            </a>
</li>
<li class='glue-footer__global-links-list-item'>
<a class='glue-footer__link' href='https://policies.google.com/privacy'>
              Privacy
            </a>
</li>
<li class='glue-footer__global-links-list-item'>
<a class='glue-footer__link' href='https://policies.google.com/terms'>
              Terms
            </a>
</li>
</ul>
<ul class='glue-footer__global-links glue-footer__global-links--extra glue-no-bullet' role='list'>
<li class='glue-footer__global-links-list-item glue-footer__global-links-list-item--extra'>
<a class='glue-footer__link' href='https://support.google.com/?hl=en'>
<svg aria-hidden='true' class='glue-icon glue-icon--24px glue-icon--footer-help' role='presentation'>
<path d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z'>
</path>
</svg>
              Help
            </a>
</li>
</ul>
</section>
</footer>
<script type='text/javascript'>
      //<![CDATA[
      // Social sharing popups.
      var postEl = document.getElementsByClassName('social-wrapper');
      var postCount = postEl.length;
      for(i=0; i<postCount;i++){
        postEl[i].addEventListener("click", function(event){
          var postUrl = this.getAttribute("data-href");
          window.open(
            postUrl,'popUpWindow','height=500,width=500,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes');
        });}
      //]]>
    </script>
<style>
.footer {
      display: flex;
      flex-wrap: nowrap;
      font-family: 'Work Sans', sans-serif;
      margin-top: 30px;
      flex-direction: column-reverse;
    }

    .footer .image-container {
      margin-right: auto;
      max-height: 100px;
      order: 2;
      width: 80px;
      margin-top: auto;
    }

    .footer .image-container svg path {
      fill: rgba(0, 0, 0, .4);
    }

    .footer .copyright {
      color: rgba(0, 0, 0, .6);
    }

    .footer .links {
      list-style-type: none;
      padding: 0;
      margin-bottom: 0;
    }

    .footer .links li {
      display: block;
      padding-top: 10px;
    }

    .footer .links a {
      color: rgba(0, 0, 0, .5);
      text-decoration: none;
    }

    @media screen and (min-width: 480px) {
      body {
        padding: 0 25px 50px;
      }
    }

    @media screen and (min-width: 650px) {
      body {
        padding: 0 50px 50px;
      }

      nav {
        line-height: inherit;
      }

      .header .links.responsive .icon {
          display: block;
      }

      .header .links .icon {
          display: none;
      }

      .links .link {
        display: block;
      }

      .footer {
        flex-direction: row;
      }

      .footer .image-container {
        margin-right: 0;
        margin-left: auto;
      }

      .footer .links li {
        display: inline-block;
        padding-top: 0;
        padding-right: 10px;
      }
    }

    @media screen and (min-width: 1100px) {
      .footer {
        flex-direction: row;
      }

      .footer .image-container {
        margin-right: 0;
        margin-left: auto;
      }

      .footer .links li {
        display: inline-block;
        padding-top: 0;
        padding-right: 10px;
      }
    }
</style>
<script type='text/javascript'>
      var hamburgerEl = document.querySelector('#hamburger');
      var navLinksEl = document.querySelector('#nav-links');
      var navEl = document.querySelector('#the-nav');
      var linkEls = Array.from(document.querySelectorAll('nav .link'));

      function toggleClass(el, clazz) {
        if (el.classList.contains(clazz)) {
          el.classList.remove(clazz);
        } else {
          el.classList.add(clazz);
        }
      }

      hamburgerEl.addEventListener('mouseup', function() {
        linkEls.forEach(function(el) {
          toggleClass(el, 'responsive');
          toggleClass(navEl, 'responsive');
        });
        toggleClass(navLinksEl, 'responsive');
      });
    </script>

<script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/387437488-widgets.js"></script>
<script type='text/javascript'>
window['__wavt'] = 'AEUoTZpuxR5ufuw8PS6-Mk1XAM5Q:1782090750581';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d5918582181149193944','//blog.debug.com/','5918582181149193944');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '5918582181149193944', 'title': 'Debug Project', 'url': 'https://blog.debug.com/', 'canonicalUrl': 'https://blog.debug.com/', 'homepageUrl': 'https://blog.debug.com/', 'searchUrl': 'https://blog.debug.com/search', 'canonicalHomepageUrl': 'https://blog.debug.com/', 'blogspotFaviconUrl': 'https://blog.debug.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': true, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': 'UA-71044448-2', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Debug Project - Atom\x22 href\x3d\x22https://blog.debug.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Debug Project - RSS\x22 href\x3d\x22https://blog.debug.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Debug Project - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/5918582181149193944/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'isGoogleEverywhereLinkTooltipEnabled': true, 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/cd96ebb13b57568d', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'index', 'pageName': '', 'pageTitle': 'Debug Project'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'Debug Project', 'description': '', 'url': 'https://blog.debug.com/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': true, 'isArchive': false, 'isLabelSearch': false}}]);
_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/1053750561-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/828616780-lightbox_bundle.css'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML7', 'sidebar-top', document.getElementById('HTML7'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'sidebar', document.getElementById('HTML6'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'sidebar', document.getElementById('HTML1'), {}, 'displayModeFull'));
</script>
</body>
</html>