It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://wefunder.com/courtneybutler1

  1.  <!DOCTYPE html>
  2.  <html
  3.    lang="en-us"
  4.    controller="investor_profiles"
  5.    action="show"
  6.    class=""
  7.  >
  8.    <head>
  9.      
  10.  
  11.  
  12. <meta name="Description" content="Follow deals that Courtney Butler invests in. Decide to invest alongside for $100 or more." />
  13.  
  14.  
  15. <style>.grecaptcha-badge { display: none !important; }</style>
  16.  
  17. <script src="https://www.google.com/recaptcha/enterprise.js?render=6LcAO10qAAAAABc0ME2BDIJrFRu9k41ffvzbpkv8" async defer></script>
  18.  
  19. <title>Coinvest with Courtney Butler on Wefunder</title>
  20.  
  21. <script>Object.defineProperty(window, "BASE_PAGE_TITLE", {writable: false, value: "Wefunder, Home of the Community Round"})</script>
  22.  
  23.  
  24. <script>
  25.  Object.defineProperty(window, "WF_LOCALE", {writable: false, value: "en-us"});
  26.  Object.defineProperty(window, "WF_LANGUAGE", {writable: false, value: "en"});
  27.  Object.defineProperty(window, "WF_FULL_LANGUAGES", {
  28.    writable: false,
  29.    value: Object.freeze(["de","en","es","fr","it","nl","pt"])
  30.  });
  31.  Object.defineProperty(window, "WF_LIMITED_LANGUAGES", {
  32.    writable: false,
  33.    value: Object.freeze(["da","pl","sv"])
  34.  });
  35. </script>
  36.  
  37. <script src="/intl-messageformat@10.1.1.iife.min.js"></script>
  38.  
  39. <script type="module" src="/-/translations/en-us" async></script>
  40.  
  41. <script type="module">
  42.  const {IntlMessageFormat, memoize} = window.IntlMessageFormat;
  43.  
  44.  //See: https://formatjs.io/docs/intl-messageformat/#formatters
  45.  //The vendored IntlMessageFormat file has been monkeypatched to re-export the memoize function it uses.
  46.  const formatters = {
  47.    getNumberFormat: memoize((...args) => new Intl.NumberFormat(...args)),
  48.    getDateTimeFormat: memoize((...args) => new Intl.DateTimeFormat(...args)),
  49.    getPluralRules: memoize((...args) => new Intl.PluralRules(...args))
  50.  };
  51.  
  52.  //This used to be just part of the below callback, but was extracted to support downloading language overrides
  53.  window.parseWfTranslations = ({locale, messages: nestedMessages}) => {
  54.    //Time to build the final IntlMessageFormat-powered messages dictionary...
  55.    const _messages = {};
  56.  
  57.    //First, we need to flatten the object...
  58.    function flattenMessages(nested, prefix) {
  59.      for (const [key, value] of Object.entries(nested)) {
  60.        const prefixedKey = [prefix, key].filter(Boolean).join(".");
  61.        switch (typeof value) {
  62.          case "string":
  63.            _messages[prefixedKey] = value;
  64.            break;
  65.          case "object":
  66.            //Handle nulls in case of accidents with Phrase
  67.            if (value !== null) {
  68.              flattenMessages(value, prefixedKey);
  69.            }
  70.            break;
  71.        }
  72.      }
  73.    }
  74.    flattenMessages(nestedMessages);
  75.  
  76.    //Next, seal the object so properties cannot be added or removed.
  77.    //Not completely freezing because the below Proxy still needs write access.
  78.    Object.seal(_messages);
  79.  
  80.    //Wrap the dictionary in a Proxy that lazily parses the ICU messages.
  81.    //This means that we only parse each message once, but also don't parse messages we don't use.
  82.    const messages = new Proxy(_messages, {
  83.      get(target, property, receiver) {
  84.        const currentValue = Reflect.get(target, property, receiver);
  85.        if (currentValue === undefined || currentValue instanceof IntlMessageFormat) return currentValue;
  86.        else {
  87.          let parsed;
  88.          try {
  89.            parsed = new IntlMessageFormat(currentValue, locale, undefined, {
  90.              formatters,
  91.              ignoreTag: true //Disable IntlMessageFormat's weird built-in XML tag parsing
  92.            });
  93.          }
  94.          catch (err) {
  95.            console.error(err);
  96.  
  97.            //Don't need to worry about if it's truly a syntax error;
  98.            //it'll already have been notified from the backend.
  99.            //However we should avoid swallowing unexpected weirdness.
  100.            if (!(err instanceof SyntaxError)) throw err;
  101.  
  102.            parsed = undefined;
  103.          }
  104.  
  105.          target[property] = parsed;
  106.          return parsed;
  107.        }
  108.      },
  109.  
  110.      //Not bothering to override getOwnPropertyDescriptor
  111.  
  112.      set(target, property, value, receiver) {
  113.        //Prevent writing directly to the object
  114.        if (receiver === target) return false;
  115.  
  116.        return Reflect.set(target, property, value, receiver);
  117.      }
  118.    });
  119.  
  120.    return Object.freeze({locale, messages});
  121.  };
  122.  
  123.  let readyCallbacks = [];
  124.  window.onWfTranslationsReady = cb => {
  125.    if (window.WF_TRANSLATIONS) {
  126.      cb();
  127.    }
  128.    else {
  129.      readyCallbacks.push(cb);
  130.    }
  131.  };
  132.  
  133.  //Can't use ??= since this code isn't compiled by Babel
  134.  (window.onWfTranslationsLoaded || (window.onWfTranslationsLoaded = [])).push(() => {
  135.    Object.defineProperty(window, "WF_TRANSLATIONS", {
  136.      writable: false,
  137.      value: parseWfTranslations(window._RAW_WF_TRANSLATIONS)
  138.    });
  139.    readyCallbacks.forEach(cb => cb());
  140.    readyCallbacks = null;
  141.  });
  142. </script>
  143.  
  144. <script type="module">
  145.  //Check to see if we're navigating to a new URL with a different value of ?override_locale and force a reload if so
  146.  function checkOverrideLocaleChange(newUrl) {
  147.    const currentQueryParams = new URLSearchParams(document.location.search);
  148.    const newQueryParams = new URL(newUrl, document.location).searchParams;
  149.    if (newQueryParams.get("override_locale") !== currentQueryParams.get("override_locale")) {
  150.      //Force a full reload so the correct locale is downloaded and server-rendered strings are refreshed
  151.      document.location.href = newUrl;
  152.  
  153.      //Prevent React Router from navigating
  154.      throw "OVERRIDE_LOCALE_REDIRECT";
  155.    }
  156.  }
  157.  
  158.  window.addEventListener("error", ev => {
  159.    if (ev.error === "OVERRIDE_LOCALE_REDIRECT") {
  160.      ev.stopImmediatePropagation();
  161.    }
  162.  }, {capture: true});
  163.  
  164.  //Why is there a proper event to listen to for popping a state but not pushing/replacing??
  165.  
  166.  const _pushState = window.history.pushState;
  167.  window.history.pushState = function(state, unused, url) {
  168.    if (url) {
  169.      checkOverrideLocaleChange(url);
  170.    }
  171.  
  172.    _pushState.call(this, state, unused, url);
  173.  }
  174.  
  175.  const _replaceState = window.history.replaceState;
  176.  window.history.replaceState = function(state, unused, url) {
  177.    if (url) {
  178.      checkOverrideLocaleChange(url);
  179.    }
  180.  
  181.    _replaceState.call(this, state, unused, url);
  182.  }
  183. </script>
  184.  
  185.  
  186.  
  187.  
  188. <meta property="twitter:account_id" content="468423167" />
  189. <meta name="pusher-key" content="1a6fe21b49e4893d98cb" />
  190. <meta name="csrf-param" content="authenticity_token" />
  191. <meta name="csrf-token" content="ynwS1zOi9hlqlvlEFqlnzVuldsQKQK9_UTUr9ezh-RQKtoixnBwiwgylMCjwikTwY0hz_uzE2xlIPxRXnHG6nA" />
  192.  
  193. <meta name="current_user.id" />
  194. <meta name="current_user.admin" />
  195. <meta name="current_user.paid_subscription" />
  196. <meta name="vip_feature_enabled" content="true" />
  197. <meta name="current_user.email" />
  198. <meta name="current_user.accredited" />
  199. <meta name="current_user.slug" />
  200.  
  201. <link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
  202. <link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
  203. <link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
  204. <link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
  205. <link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
  206. <link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
  207. <link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
  208. <link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
  209. <link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
  210. <link rel="icon" type="image/png" sizes="192x192"  href="/favicon/android-icon-192x192.png">
  211. <link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
  212. <link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
  213. <link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
  214. <link rel="manifest" href="/favicon/manifest.json">
  215. <meta name="msapplication-TileColor" content="#ffffff">
  216. <meta name="msapplication-TileImage" content="/favicon/ms-icon-144x144.png">
  217. <meta name="theme-color" content="#ffffff">
  218.  
  219. <script>
  220.  window.FACEBOOK_APP_ID = "216076798476059";
  221. </script>
  222.  
  223. <script>
  224.  window.debug_ajax = true;
  225. </script>
  226.  
  227. <script>
  228.  window._gaq = window._gaq || [];
  229.  window._kmk = window._kmk || [];
  230.  window._pq = window._pq || [];
  231. </script>
  232.  
  233.  
  234.  <meta property="fb:app_id" content="216076798476059" />
  235.    <meta property="fb:app_id" content="216076798476059" />
  236.  <meta property="og:url" content="http://wefunder.com/courtneybutler1" />
  237.  <meta property="og:type" content="website" />
  238.  <meta property="og:title" content="Coinvest with Courtney Butler on Wefunder" />
  239.  <meta property="og:description" content="Follow deals that Courtney Butler invests in. Decide to invest alongside for $100 or more." />
  240.  <meta property="og:image" content="https://uploads.wefunder.com/raise-2023/raise_unfurl_card.webp" />
  241.  
  242.  <meta name="twitter:card" content="summary_large_image">
  243.  <meta name="twitter:site" content="@wefunder">
  244.  <meta name="twitter:creator" content="@wefunder">
  245.  <meta name="twitter:description" content="Follow deals that Courtney Butler invests in. Decide to invest alongside for $100 or more.">
  246.  <meta name="twitter:title" content="Coinvest with Courtney Butler on Wefunder">
  247.  <meta name="twitter:image" content="https://uploads.wefunder.com/raise-2023/raise_unfurl_card.webp">
  248.  
  249.  
  250.  
  251.  
  252. <script>
  253. window['_fs_debug'] = false;
  254. window['_fs_host'] = 'fullstory.com';
  255. window['_fs_script'] = 'edge.fullstory.com/s/fs.js';
  256. window['_fs_org'] = '1qJS';
  257. window['_fs_namespace'] = 'FS';
  258. (function(m,n,e,t,l,o,g,y){
  259.    if (e in m) {if(m.console && m.console.log) { m.console.log('FullStory namespace conflict. Please set window["_fs_namespace"].');} return;}
  260.    g=m[e]=function(a,b,s){g.q?g.q.push([a,b,s]):g._api(a,b,s);};g.q=[];
  261.    o=n.createElement(t);o.async=1;o.crossOrigin='anonymous';o.src='https://'+_fs_script;
  262.    y=n.getElementsByTagName(t)[0];y.parentNode.insertBefore(o,y);
  263.    g.identify=function(i,v,s){g(l,{uid:i},s);if(v)g(l,v,s)};g.setUserVars=function(v,s){g(l,v,s)};g.event=function(i,v,s){g('event',{n:i,p:v},s)};
  264.    g.shutdown=function(){g("rec",!1)};g.restart=function(){g("rec",!0)};
  265.    g.log = function(a,b){g("log",[a,b])};
  266.    g.consent=function(a){g("consent",!arguments.length||a)};
  267.    g.identifyAccount=function(i,v){o='account';v=v||{};v.acctId=i;g(o,v)};
  268.    g.clearUserCookie=function(){};
  269.    g._w={};y='XMLHttpRequest';g._w[y]=m[y];y='fetch';g._w[y]=m[y];
  270.    if(m[y])m[y]=function(){return g._w[y].apply(this,arguments)};
  271.    g._v="1.1.1";
  272. })(window,document,window['_fs_namespace'],'script','user');
  273. </script>
  274.  
  275.  
  276.  
  277. <script async defer>
  278.  UPLOADCARE_PUBLIC_KEY = 'ef574386a2260d9f9023';
  279.  window.addEventListener('blinkloader:ready', function() {
  280.    window.Blinkloader.optimize({
  281.      pubkey:'ef574386a2260d9f9023',
  282.      fadeIn:true,
  283.      lazyload: true,
  284.      smartCompression: true,
  285.      responsive: true,
  286.      retina: true,
  287.      webp: true
  288.    });
  289.  });
  290. </script>
  291.  
  292. <script async defer  type='text/javascript' >
  293.  function setHelpToken() {
  294.      Cookies.set('help_token', '0', { path: '/', domain: "wefunder.com"});
  295.  }
  296.  
  297.  window.Cookies ? setHelpToken() : window.addEventListener('js-cookies:ready', setHelpToken);
  298. </script>
  299.  
  300.  
  301. <script id="wefunder-google-tag-manager-script" type="text/javascript">
  302.  window.wefunderDataLayer = window.wefunderDataLayer || [];
  303.  (
  304.    function(w,d,s,l,i){
  305.      w[l]=w[l]||[];
  306.      w[l].push(
  307.        {'gtm.start': new Date().getTime(),event:'gtm.js'});
  308.        var f=d.getElementsByTagName(s)[0],
  309.            j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';
  310.            j.async=true;
  311.            j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;
  312.        f.parentNode.insertBefore(j,f);
  313.    }
  314.  )(window,document,'script','wefunderDataLayer','GTM-KZJN642D');
  315. </script>
  316.  
  317.  
  318.  
  319. <script async defer>
  320.  !function(e,t,n,s,u,a){
  321.    e.twq||(
  322.      s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);},
  323.      s.version='1.1',
  324.      s.queue=[],
  325.      u=t.createElement(n),
  326.      u.async=!0,
  327.      u.src='https://static.ads-twitter.com/uwt.js',
  328.      a=t.getElementsByTagName(n)[0],
  329.      a.parentNode.insertBefore(u,a))
  330.  }(window,document,'script');
  331.  twq('config','o9wkn');
  332. </script>
  333.  
  334.      <meta charset="UTF-8" />
  335. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0, user-scalable=no">
  336. <meta name="eu_countries" id="eu_country_codes" content='[&quot;RUS&quot;, &quot;UKR&quot;, &quot;FRA&quot;, &quot;ESP&quot;, &quot;SWE&quot;, &quot;NOR&quot;, &quot;DEU&quot;, &quot;FIN&quot;, &quot;POL&quot;, &quot;ITA&quot;, &quot;GBR&quot;, &quot;ROU&quot;, &quot;BLR&quot;, &quot;KAZ&quot;, &quot;GRC&quot;, &quot;BGR&quot;, &quot;ISL&quot;, &quot;HUN&quot;, &quot;PRT&quot;, &quot;SRB&quot;, &quot;AUT&quot;, &quot;CZE&quot;, &quot;IRL&quot;, &quot;LTU&quot;, &quot;LVA&quot;, &quot;HRV&quot;, &quot;BIH&quot;, &quot;SVK&quot;, &quot;EST&quot;, &quot;DNK&quot;, &quot;CHE&quot;, &quot;NLD&quot;, &quot;MDA&quot;, &quot;BEL&quot;, &quot;ALB&quot;, &quot;MKD&quot;, &quot;TUR&quot;, &quot;SVN&quot;, &quot;MNE&quot;, &quot;AZE&quot;, &quot;GEO&quot;, &quot;LUX&quot;, &quot;AND&quot;, &quot;MLT&quot;, &quot;LIE&quot;, &quot;SMR&quot;, &quot;MCO&quot;, &quot;VAT&quot;, &quot;CYP&quot;, &quot;ARM&quot;]'>
  337.  
  338.  
  339. <!-- Always use protection -->
  340. <meta name="csrf-param" content="authenticity_token" />
  341. <meta name="csrf-token" content="noxLYYyuGUsc0xqG7FKHs9nCTUudPDGqNQZSQbWIUMteRtEHIxDNkHrg0-oKcaSO4S9IcXu4RcwsDG3jxRgTQw" />
  342.      <script  type='text/javascript'  >
  343.  function setPayPIHost() {
  344.    window.PayPI.init_host("https://paypi.wefunder.com");
  345.  }
  346.  
  347.  window.PayPI ? setPayPIHost() : window.addEventListener('paypi:ready', setPayPIHost);
  348. </script>
  349.  
  350.  
  351.  
  352.      <!-- External fonts -->
  353. <link rel="stylesheet" type="text/css" href="https://cloud.typography.com/7970354/7332832/css/fonts.css" />
  354.  
  355. <!-- External icons -->
  356. <script src="https://use.fortawesome.com/d55bc9ce.js" async defer></script>
  357.  
  358. <!-- Payment processing libraries -->
  359. <script src="https://js.stripe.com/v3/" async defer></script>
  360. <script src="https://cdn.plaid.com/link/v2/stable/link-initialize.js" async defer></script>
  361.  
  362.      <!-- ADMIN SESSION? false -->
  363.  
  364.  <script  type='text/javascript'  >
  365.    var _pq = _pq || [ ];
  366.  </script>
  367.  
  368.  
  369.      <script type="module" defer>
  370.  
  371.  const alpha_conversion = {
  372.  BD: 'BGD',
  373.  BE: 'BEL',
  374.  BF: 'BFA',
  375.  BG: 'BGR',
  376.  BA: 'BIH',
  377.  BB: 'BRB',
  378.  WF: 'WLF',
  379.  BL: 'BLM',
  380.  BM: 'BMU',
  381.  BN: 'BRN',
  382.  BO: 'BOL',
  383.  BH: 'BHR',
  384.  BI: 'BDI',
  385.  BJ: 'BEN',
  386.  BT: 'BTN',
  387.  JM: 'JAM',
  388.  BV: 'BVT',
  389.  BW: 'BWA',
  390.  WS: 'WSM',
  391.  BQ: 'BES',
  392.  BR: 'BRA',
  393.  BS: 'BHS',
  394.  JE: 'JEY',
  395.  BY: 'BLR',
  396.  BZ: 'BLZ',
  397.  RU: 'RUS',
  398.  RW: 'RWA',
  399.  RS: 'SRB',
  400.  TL: 'TLS',
  401.  RE: 'REU',
  402.  TM: 'TKM',
  403.  TJ: 'TJK',
  404.  RO: 'ROU',
  405.  TK: 'TKL',
  406.  GW: 'GNB',
  407.  GU: 'GUM',
  408.  GT: 'GTM',
  409.  GS: 'SGS',
  410.  GR: 'GRC',
  411.  GQ: 'GNQ',
  412.  GP: 'GLP',
  413.  JP: 'JPN',
  414.  GY: 'GUY',
  415.  GG: 'GGY',
  416.  GF: 'GUF',
  417.  GE: 'GEO',
  418.  GD: 'GRD',
  419.  GB: 'GBR',
  420.  GA: 'GAB',
  421.  SV: 'SLV',
  422.  GN: 'GIN',
  423.  GM: 'GMB',
  424.  GL: 'GRL',
  425.  GI: 'GIB',
  426.  GH: 'GHA',
  427.  OM: 'OMN',
  428.  TN: 'TUN',
  429.  JO: 'JOR',
  430.  HR: 'HRV',
  431.  HT: 'HTI',
  432.  HU: 'HUN',
  433.  HK: 'HKG',
  434.  HN: 'HND',
  435.  HM: 'HMD',
  436.  VE: 'VEN',
  437.  PR: 'PRI',
  438.  PS: 'PSE',
  439.  PW: 'PLW',
  440.  PT: 'PRT',
  441.  SJ: 'SJM',
  442.  PY: 'PRY',
  443.  IQ: 'IRQ',
  444.  PA: 'PAN',
  445.  PF: 'PYF',
  446.  PG: 'PNG',
  447.  PE: 'PER',
  448.  PK: 'PAK',
  449.  PH: 'PHL',
  450.  PN: 'PCN',
  451.  PL: 'POL',
  452.  PM: 'SPM',
  453.  ZM: 'ZMB',
  454.  EH: 'ESH',
  455.  EE: 'EST',
  456.  EG: 'EGY',
  457.  ZA: 'ZAF',
  458.  EC: 'ECU',
  459.  IT: 'ITA',
  460.  VN: 'VNM',
  461.  SB: 'SLB',
  462.  ET: 'ETH',
  463.  SO: 'SOM',
  464.  ZW: 'ZWE',
  465.  SA: 'SAU',
  466.  ES: 'ESP',
  467.  ER: 'ERI',
  468.  ME: 'MNE',
  469.  MD: 'MDA',
  470.  MG: 'MDG',
  471.  MF: 'MAF',
  472.  MA: 'MAR',
  473.  MC: 'MCO',
  474.  UZ: 'UZB',
  475.  MM: 'MMR',
  476.  ML: 'MLI',
  477.  MO: 'MAC',
  478.  MN: 'MNG',
  479.  MH: 'MHL',
  480.  MK: 'MKD',
  481.  MU: 'MUS',
  482.  MT: 'MLT',
  483.  MW: 'MWI',
  484.  MV: 'MDV',
  485.  MQ: 'MTQ',
  486.  MP: 'MNP',
  487.  MS: 'MSR',
  488.  MR: 'MRT',
  489.  IM: 'IMN',
  490.  UG: 'UGA',
  491.  TZ: 'TZA',
  492.  MY: 'MYS',
  493.  MX: 'MEX',
  494.  IL: 'ISR',
  495.  FR: 'FRA',
  496.  IO: 'IOT',
  497.  SH: 'SHN',
  498.  FI: 'FIN',
  499.  FJ: 'FJI',
  500.  FK: 'FLK',
  501.  FM: 'FSM',
  502.  FO: 'FRO',
  503.  NI: 'NIC',
  504.  NL: 'NLD',
  505.  NO: 'NOR',
  506.  NA: 'NAM',
  507.  VU: 'VUT',
  508.  NC: 'NCL',
  509.  NE: 'NER',
  510.  NF: 'NFK',
  511.  NG: 'NGA',
  512.  NZ: 'NZL',
  513.  NP: 'NPL',
  514.  NR: 'NRU',
  515.  NU: 'NIU',
  516.  CK: 'COK',
  517.  XK: 'XKX',
  518.  CI: 'CIV',
  519.  CH: 'CHE',
  520.  CO: 'COL',
  521.  CN: 'CHN',
  522.  CM: 'CMR',
  523.  CL: 'CHL',
  524.  CC: 'CCK',
  525.  CA: 'CAN',
  526.  CG: 'COG',
  527.  CF: 'CAF',
  528.  CD: 'COD',
  529.  CZ: 'CZE',
  530.  CY: 'CYP',
  531.  CX: 'CXR',
  532.  CR: 'CRI',
  533.  CW: 'CUW',
  534.  CV: 'CPV',
  535.  CU: 'CUB',
  536.  SZ: 'SWZ',
  537.  SY: 'SYR',
  538.  SX: 'SXM',
  539.  KG: 'KGZ',
  540.  KE: 'KEN',
  541.  SS: 'SSD',
  542.  SR: 'SUR',
  543.  KI: 'KIR',
  544.  KH: 'KHM',
  545.  KN: 'KNA',
  546.  KM: 'COM',
  547.  ST: 'STP',
  548.  SK: 'SVK',
  549.  KR: 'KOR',
  550.  SI: 'SVN',
  551.  KP: 'PRK',
  552.  KW: 'KWT',
  553.  SN: 'SEN',
  554.  SM: 'SMR',
  555.  SL: 'SLE',
  556.  SC: 'SYC',
  557.  KZ: 'KAZ',
  558.  KY: 'CYM',
  559.  SG: 'SGP',
  560.  SE: 'SWE',
  561.  SD: 'SDN',
  562.  DO: 'DOM',
  563.  DM: 'DMA',
  564.  DJ: 'DJI',
  565.  DK: 'DNK',
  566.  VG: 'VGB',
  567.  DE: 'DEU',
  568.  YE: 'YEM',
  569.  DZ: 'DZA',
  570.  US: 'USA',
  571.  UY: 'URY',
  572.  YT: 'MYT',
  573.  UM: 'UMI',
  574.  LB: 'LBN',
  575.  LC: 'LCA',
  576.  LA: 'LAO',
  577.  TV: 'TUV',
  578.  TW: 'TWN',
  579.  TT: 'TTO',
  580.  TR: 'TUR',
  581.  LK: 'LKA',
  582.  LI: 'LIE',
  583.  LV: 'LVA',
  584.  TO: 'TON',
  585.  LT: 'LTU',
  586.  LU: 'LUX',
  587.  LR: 'LBR',
  588.  LS: 'LSO',
  589.  TH: 'THA',
  590.  TF: 'ATF',
  591.  TG: 'TGO',
  592.  TD: 'TCD',
  593.  TC: 'TCA',
  594.  LY: 'LBY',
  595.  VA: 'VAT',
  596.  VC: 'VCT',
  597.  AE: 'ARE',
  598.  AD: 'AND',
  599.  AG: 'ATG',
  600.  AF: 'AFG',
  601.  AI: 'AIA',
  602.  VI: 'VIR',
  603.  IS: 'ISL',
  604.  IR: 'IRN',
  605.  AM: 'ARM',
  606.  AL: 'ALB',
  607.  AO: 'AGO',
  608.  AQ: 'ATA',
  609.  AS: 'ASM',
  610.  AR: 'ARG',
  611.  AU: 'AUS',
  612.  AT: 'AUT',
  613.  AW: 'ABW',
  614.  IN: 'IND',
  615.  AX: 'ALA',
  616.  AZ: 'AZE',
  617.  IE: 'IRL',
  618.  ID: 'IDN',
  619.  UA: 'UKR',
  620.  QA: 'QAT',
  621.  MZ: 'MOZ',
  622. }
  623.  
  624.  const biggestNonEUCountries = new Set([
  625.    'USA',
  626.    'CHN',
  627.    'JPN',
  628.    'IND',
  629.    'CAN',
  630.    'BRA',
  631.    'RUS',
  632.    'KOR',
  633.    'AUS',
  634.    'IRN',
  635.    'MEX',
  636.    'IDN',
  637.    'SAU',
  638.    'TWN',
  639.    'TUR',
  640.    'ARG',
  641.    'THA',
  642.    'ISR',
  643.    'NGA',
  644.  ])
  645.  
  646.  const hideOutsideEU = () => {
  647.    const countryInStorage = window.localStorage.getItem('country')
  648.    if (countryInStorage) {
  649.      const country = JSON.parse(countryInStorage).country
  650.      if (country) {
  651.        if (biggestNonEUCountries.has(country)) {
  652.          document.body.className += ' is-outside-eu';
  653.        }
  654.      }
  655.    }
  656.  }
  657.  
  658.  const EXPIRY_IN_MINS = 1140
  659.  
  660.  const getCountry = () => "US"
  661.  
  662.  const setCountryInStorage = () => {
  663.    try {
  664.      const country = getCountry()
  665.  
  666.      if (country) {
  667.        const countryAsAlpha3 = alpha_conversion[country]
  668.  
  669.        const countryToStore = {
  670.          timeSet: Date.now(),
  671.          country: countryAsAlpha3,
  672.        }
  673.  
  674.        window.localStorage.setItem('country', JSON.stringify(countryToStore))
  675.      }
  676.  
  677.    } catch (err) {
  678.      console.error(`Error fetching country and setting in local storage: ${err}`)
  679.    }
  680.  }
  681.  
  682.  const checkLocalStorage = () => {
  683.    const countryInStorage = window.localStorage.getItem('country')
  684.  
  685.    if (countryInStorage) {
  686.      const dateAdded = JSON.parse(countryInStorage).timeSet
  687.      const timeDiffinMS = Date.now() - dateAdded
  688.      const mins = Math.ceil(timeDiffinMS / 1000 / 60)
  689.  
  690.      if (mins > EXPIRY_IN_MINS) {
  691.        setCountryInStorage()
  692.      }
  693.    } else {
  694.      setCountryInStorage()
  695.    }
  696.  
  697.    hideOutsideEU()
  698.  }
  699.  
  700.  checkLocalStorage()  
  701.  
  702. </script>
  703.  
  704.  
  705.  <script>
  706.    _sift = [['_setAccount', 'c66d8a3fe6'],['_setUserId',''],['_setSessionId', '502e0563747acaa7ba8a30de9541efc0'],['_trackPageview']];
  707.    (function() {
  708.      function ls() {
  709.        var e = document.createElement('script');
  710.        e.src = 'https://cdn.sift.com/s.js';
  711.        document.body.appendChild(e);
  712.      }
  713.      if (window.attachEvent) {
  714.        window.attachEvent('onload', ls);
  715.      } else {
  716.        window.addEventListener('load', ls, false);
  717.      }
  718.    })();
  719.  </script>
  720.  
  721.  <script type="text/javascript">
  722.    (function (f, b) { if (!b.__SV) { var e, g, i, h; window.mixpanel = b; b._i = []; b.init = function (e, f, c) { function g(a, d) { var b = d.split("."); 2 == b.length && ((a = a[b[0]]), (d = b[1])); a[d] = function () { a.push([d].concat(Array.prototype.slice.call(arguments, 0))); }; } var a = b; "undefined" !== typeof c ? (a = b[c] = []) : (c = "mixpanel"); a.people = a.people || []; a.toString = function (a) { var d = "mixpanel"; "mixpanel" !== c && (d += "." + c); a || (d += " (stub)"); return d; }; a.people.toString = function () { return a.toString(1) + ".people (stub)"; }; i = "disable time_event track track_pageview track_links track_forms track_with_groups add_group set_group remove_group register register_once alias unregister identify name_tag set_config reset opt_in_tracking opt_out_tracking has_opted_in_tracking has_opted_out_tracking clear_opt_in_out_tracking start_batch_senders people.set people.set_once people.unset people.increment people.append people.union people.track_charge people.clear_charges people.delete_user people.remove".split( " "); for (h = 0; h < i.length; h++) g(a, i[h]); var j = "set set_once union unset remove delete".split(" "); a.get_group = function () { function b(c) { d[c] = function () { call2_args = arguments; call2 = [c].concat(Array.prototype.slice.call(call2_args, 0)); a.push([e, call2]); }; } for ( var d = {}, e = ["get_group"].concat( Array.prototype.slice.call(arguments, 0)), c = 0; c < j.length; c++) b(j[c]); return d; }; b._i.push([e, f, c]); }; b.__SV = 1.2; e = f.createElement("script"); e.type = "text/javascript"; e.async = !0; e.src = "undefined" !== typeof MIXPANEL_CUSTOM_LIB_URL ? MIXPANEL_CUSTOM_LIB_URL : "file:" === f.location.protocol && "//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//) ? "https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js" : "//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js"; g = f.getElementsByTagName("script")[0]; g.parentNode.insertBefore(e, g); } })(document, window.mixpanel || []);
  723.  </script>
  724.  <script async defer>
  725.    window.mixpanel.init("aec5c4f1313da460ef91ed9e5d0b9e93", {debug: true, track_pageview: true, persistence: 'localStorage'});
  726.  </script>
  727.  
  728.  
  729.      <!-- Intercom's script -->
  730.  
  731.  
  732.      
  733.  
  734.      <script src="/assets/application_esbuild-f2133d4e3c67bc734c28ce7b6cd6bd254ff5b2975f73a63e557cc410ee5fc5b2.js" data-turbo-track="reload"></script>
  735.      <link rel="stylesheet" href="/assets/postcss_application-98a66a4709ad37671f3ad00817c9f239582ff9385aacf6c9ca798f428d4e2f8f.css" data-turbo-track="reload" />
  736. <link rel="stylesheet" href="/assets/application_esbuild-d040ccc086a0009c11f0fadc7dd00c27b872fa4389ba5bfc36bc2ffe6e87de33.css" data-turbo-track="reload" />
  737.      
  738.    </head>
  739.    
  740.    <body
  741.      id="wefunder_2021"
  742.      class="wefunder_2025 investor_profiles flex flex-col min-h-screen">
  743.  
  744.      <noscript>
  745.  <iframe
  746.    src="https://www.googletagmanager.com/ns.html?id=GTM-KZJN642D"
  747.    height="0"
  748.    width="0"
  749.    style="display:none;visibility:hidden">
  750.  </iframe>
  751. </noscript>
  752.  
  753.        
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.        
  763. <header class="w-full text-sm px-4 py-3 h-16 leading-8 flex flex-col justify-center items-center border-b">
  764.  <nav class="flex items-center justify-between w-full">
  765.  
  766.    <div class="flex items-center">
  767.  
  768.      <a href="/home"
  769.        title="Home"
  770.        class="block h-8 hover:opacity-95 transition-opacity duration-500"
  771.        data-turbo='false'>
  772.  
  773.        <img class="h-8 w-8 bg-cover md:hidden"
  774.             src="https://uploads.wefunder.com/2021/w-blue.svg"
  775.             alt="Wefunder logo"
  776.        >
  777.  
  778.        <img class="h-8 hidden md:inline-block md:-mt-[5px]"
  779.             style="
  780.                vertical-align: top;
  781.              "
  782.              alt="Wefunder logo"
  783.              src="https://uploads.wefunder.com/2021/logo.svg"
  784.              width="117"
  785.              height="32"
  786.        >
  787.      </a>
  788.        
  789.      <div class="pl-4 md:inline-block md:pl-8 w-28 md:w-auto md:mr-3">
  790.        <ul class="flex md:items-center md:space-x-6">
  791.  
  792.          <li class="hidden md:inline-block">
  793.            <a href="/explore" class="wf-link-nav">Explore</a>
  794.          </li>
  795.  
  796.          <li style="color: #585858">
  797.            <div style="width:100%" data-controller="turbo-mount-shared--layout--wf-navigation-search--wf-navigation-search" data-turbo-mount-shared--layout--wf-navigation-search--wf-navigation-search-component-value="shared/layout/wf_navigation_search/wf_navigation_search" data-turbo-mount-shared--layout--wf-navigation-search--wf-navigation-search-props-value="{&quot;disableAnimation&quot;:false}"></div>
  798.          </li>
  799.        </ul>
  800.      </div>
  801.    </div>
  802.    
  803.    <div style="grid-area: menu; justify-self: end;">
  804.      
  805. <turbo-frame id="user_menu">
  806.  
  807.  <ul data-controller="user-menu" class="flex items-center gap-x-4 lg:pr-4">
  808.  
  809.    <li class="hidden md:block md:px-2 wf-link-nav">
  810.        <a href="/raise" data-turbo="false">
  811.          <span class="xl:hidden">Raise</span>
  812.          <span class="hidden xl:inline-block">Raise Money</span>
  813.        </a>
  814.    </li>
  815.  
  816.    <li class="hidden md:block">
  817.      <div data-controller="popover toggle-active" class="relative">
  818.        <span class="cursor-pointer relative flex items-center gap-1 wf-link-nav"
  819.              data-action="mouseenter->popover#show mouseleave->popover#hide mouseenter->toggle-active#toggle mouseleave->toggle-active#toggle">
  820.          Learn
  821.          <i data-toggle-active-target="target"
  822.             data-state="inactive"
  823.             class="fa fa-chevron-down data-[state=inactive]:rotate-0 data-[state=active]:rotate-180 transition-all text-lg"></i>
  824.        </span>
  825.  
  826.        <template data-popover-target="content">
  827.          <div data-popover-target="card" class="absolute z-50 w-64 top-1/2 left-1/2 -translate-x-1/2 pt-6">
  828.            <div class="border shadow-sm rounded overflow-hidden">
  829.              <div class="min-[925px]:shadow-md bg-white text-sm z-10">
  830.  <ul class="min-[925px]:px-2 px-4 py-2">
  831.    <li>
  832.      <a class="wf-link-nav-modal dark:text-gray-700" href="https://help.wefunder.com/#/investor/getting-started-for-investors" data-turbo="false">
  833.        <span class="wf-link-nav-modal-icon fa fa-comment" ></span>
  834.        <span class="wf-link-nav-modal-label">Investor FAQ</span></a>
  835.    </li>
  836.    <li>
  837.      <a class="wf-link-nav-modal dark:text-gray-700" target="_blank" data-turbo="false" href="/school">
  838.        <span class="wf-link-nav-modal-icon fa fa-graduation-cap"></span>
  839.        <span class="wf-link-nav-modal-label">Investor School</span></a>
  840. </a>    <hr class="m-2 bg-coolgray-300"/>
  841.    <li>
  842.      <a class="wf-link-nav-modal dark:text-gray-700" href="https://help.wefunder.com/#/founder/why-wefunder" data-turbo="false">
  843.        <span class="wf-link-nav-modal-icon fa fa-comment"></span>
  844.        <span class="wf-link-nav-modal-label">Founder FAQ</span></a>
  845.    </li>
  846.    <li>
  847.      <a class="wf-link-nav-modal dark:text-gray-700" target="_blank" href="https://guides.wefunder.com/" data-turbo="false">
  848.        <span class="wf-link-nav-modal-icon fa fa-clipboard"></span>
  849.        <span class="wf-link-nav-modal-label">Fundraising Playbook</span></a>
  850.    </li>
  851.    <hr class="m-2 bg-coolgray-300"/>
  852.    <li>
  853.      <a class="wf-link-nav-modal dark:text-gray-700" href="/blog" data-turbo="false">
  854.        <span class="wf-link-nav-modal-icon fa fa-blog2"></span>
  855.        <span class="wf-link-nav-modal-label">Blog</span></a>
  856.    </li>
  857.    <li>
  858.      <a class="wf-link-nav-modal dark:text-gray-700" href="/rewards" data-turbo="false">
  859.        <span class="wf-link-nav-modal-icon fa fa-cash"></span>
  860.        <span class="wf-link-nav-modal-label">Earn up to $10,000</span></a>
  861.    </li>
  862.  </ul>
  863. </div>
  864.  
  865.            </div>
  866.          </div>
  867.        </template>
  868.      </div>
  869.    </li>
  870.  
  871.    <li class="hidden md:block h-8 border-r mx-4 "></li>
  872.  
  873.  
  874.  
  875.      <li class="wf-link-nav">
  876.        <a href="/login" class="hidden md:inline-block text-center leading-normal" data-turbo="false">
  877.          Log in
  878.        </a>
  879.        <a href="/login" class="md:hidden" data-turbo="false">
  880.          <span class="text-xl px-2 py-1 border rounded-full bg-gray-100 fa fa-user"></span>
  881.        </a>
  882.      </li>
  883.  
  884.      <li class="hidden md:inline-block wf-link-nav">
  885.        <a href="/signup" class="text-center leading-normal" data-turbo="false">
  886.          Sign up
  887.        </a>
  888.      </li>
  889.  
  890.    <li id="mobile-menu-icon" class="flex items-center gap-3 md:hidden wf-link-nav">
  891.      <span id="menu-lines-icon" class="group block cursor-pointer" data-state="inactive">
  892.        <span class="block my-1 h-0.5 w-5 bg-coolgray-800 rounded transition-all group-data-[state=active]:rotate-45 group-data-[state=active]:translate-y-1.5"></span>
  893.        <span class="block my-1 h-0.5 w-5 bg-coolgray-800 rounded transition-all group-data-[state=active]:bg-transparent"></span>
  894.        <span class="block my-1 h-0.5 w-5 bg-coolgray-800 rounded transition-all group-data-[state=active]:-rotate-45 group-data-[state=active]:-translate-y-1.5"></span>
  895.      </span>
  896.    </li>
  897.  </ul>
  898. </turbo-frame>
  899.    </div>
  900.  </nav>
  901. </header>
  902.  
  903. <div id="mobile-menu"
  904.     class="relative bg-white hidden border-blue-200 absolute w-full text-sm md:hidden z-[1000]">
  905.  <nav id="user-menu"
  906.     class="border border-blue-50 shadow-sm top-14 bg-white text-sm mr-0 w-screen md:right-4 md:w-64 z-10">
  907.  
  908.  
  909.    <div class="min-[925px]:hidden">
  910.      <ul class="pt-2 px-4">
  911.        <li>
  912.          <a class="wf-link-nav-modal dark:text-gray-700" href="/login">
  913.            <span class="wf-link-nav-modal-icon fa fa-login" aria-hidden="true"></span>
  914.            <span class="wf-link-nav-modal-label">Login</span>
  915.          </a>
  916.        </li>
  917.        <li>
  918.          <a class="wf-link-nav-modal dark:text-gray-700" href="/signup">
  919.            <span class="wf-link-nav-modal-icon fa fa-pencil-2" aria-hidden="true"></span>
  920.            <span class="wf-link-nav-modal-label">Signup</span>
  921.          </a>
  922.        </li>
  923.      </ul>
  924.      <hr class="m-2 mt-0"/>
  925.    </div>
  926.  
  927.  <div class="sm:hidden" data-controller="toggle-active">
  928.    <ul class="pt-2 px-4">
  929.      <li>
  930.        <a href="/explore" class="wf-link-nav-modal dark:text-gray-700">
  931.          <span class="wf-link-nav-modal-icon fa fa-search-2"></span>
  932.          <span class="wf-link-nav-modal-label">Explore startups</span>
  933.        </a>
  934.      <li>
  935.      <li>
  936.        <a href="/raise" class="wf-link-nav-modal dark:text-gray-700">
  937.          <span class="wf-link-nav-modal-icon fa fa-wf-logo"></span>
  938.          <span class="wf-link-nav-modal-label">Raise Money</span>
  939.        </a>
  940.      <li>
  941.      <li>
  942.        <button class="group flex items-center w-full justify-between mb-2"
  943.                data-action="click->toggle-active#toggle">
  944.          <span class="wf-link-nav-modal dark:text-gray-700">
  945.            <span class="wf-link-nav-modal-icon fa fa-graduation-cap"></span>
  946.            <span class="wf-link-nav-modal-label">Learn</span>
  947.          </span>
  948.          <i data-toggle-active-target="target"
  949.             data-state="inactive"
  950.             class="fa fa-chevron-down data-[state=inactive]:rotate-0 data-[state=active]:rotate-180 transition-all text-lg wf-text-dim"></i>
  951.        </button>
  952.      </li>
  953.    </ul>
  954.    <div data-toggle-active-target="target"
  955.         data-state="inactive"
  956.         class="data-[state=inactive]:hidden">
  957.      <div class="min-[925px]:shadow-md bg-white text-sm z-10">
  958.  <ul class="min-[925px]:px-2 px-4 py-2">
  959.    <li>
  960.      <a class="wf-link-nav-modal dark:text-gray-700" href="https://help.wefunder.com/#/investor/getting-started-for-investors" data-turbo="false">
  961.        <span class="wf-link-nav-modal-icon fa fa-comment" ></span>
  962.        <span class="wf-link-nav-modal-label">Investor FAQ</span></a>
  963.    </li>
  964.    <li>
  965.      <a class="wf-link-nav-modal dark:text-gray-700" target="_blank" data-turbo="false" href="/school">
  966.        <span class="wf-link-nav-modal-icon fa fa-graduation-cap"></span>
  967.        <span class="wf-link-nav-modal-label">Investor School</span></a>
  968. </a>    <hr class="m-2 bg-coolgray-300"/>
  969.    <li>
  970.      <a class="wf-link-nav-modal dark:text-gray-700" href="https://help.wefunder.com/#/founder/why-wefunder" data-turbo="false">
  971.        <span class="wf-link-nav-modal-icon fa fa-comment"></span>
  972.        <span class="wf-link-nav-modal-label">Founder FAQ</span></a>
  973.    </li>
  974.    <li>
  975.      <a class="wf-link-nav-modal dark:text-gray-700" target="_blank" href="https://guides.wefunder.com/" data-turbo="false">
  976.        <span class="wf-link-nav-modal-icon fa fa-clipboard"></span>
  977.        <span class="wf-link-nav-modal-label">Fundraising Playbook</span></a>
  978.    </li>
  979.    <hr class="m-2 bg-coolgray-300"/>
  980.    <li>
  981.      <a class="wf-link-nav-modal dark:text-gray-700" href="/blog" data-turbo="false">
  982.        <span class="wf-link-nav-modal-icon fa fa-blog2"></span>
  983.        <span class="wf-link-nav-modal-label">Blog</span></a>
  984.    </li>
  985.    <li>
  986.      <a class="wf-link-nav-modal dark:text-gray-700" href="/rewards" data-turbo="false">
  987.        <span class="wf-link-nav-modal-icon fa fa-cash"></span>
  988.        <span class="wf-link-nav-modal-label">Earn up to $10,000</span></a>
  989.    </li>
  990.  </ul>
  991. </div>
  992.  
  993.    </div>
  994.  </div>
  995.  
  996. </nav>
  997. </div>
  998.  
  999. <script>
  1000.  document.addEventListener('click', toggleMobileMenu)
  1001.  
  1002.  function toggleMobileMenu(e) {
  1003.    const mobileMenu = document.getElementById('mobile-menu')
  1004.    const linesIcon = document.getElementById('menu-lines-icon')
  1005.    const icon = document.getElementById('mobile-menu-icon')
  1006.  
  1007.    if (mobileMenu) {
  1008.      if (!mobileMenu?.contains(e.target) && !icon?.contains(e.target)) {
  1009.        mobileMenu?.classList?.add('hidden');
  1010.        if (linesIcon) linesIcon.dataset.state = "inactive"
  1011.      } else if (icon?.contains(e.target)) {
  1012.        mobileMenu?.classList?.toggle('hidden')
  1013.        if (linesIcon) linesIcon.dataset.state = linesIcon.dataset.state == 'active' ? "inactive" : 'active'
  1014.      }
  1015.    }
  1016.  }
  1017. </script>
  1018.  
  1019.      
  1020.      
  1021.      <main
  1022.        id="main-content"
  1023.        class="flex-grow min-h-full">
  1024.  
  1025.        
  1026.  
  1027. <div data-controller="turbo-mount-investor-profile--index" data-turbo-mount-investor-profile--index-component-value="investor_profile/index" data-turbo-mount-investor-profile--index-props-value="{&quot;data&quot;:{&quot;investorProfile&quot;:{&quot;id&quot;:4204330,&quot;profilePictureUrl&quot;:&quot;https://uploads.wefunder.com/2021/user_default_icon_circle.png&quot;,&quot;fullName&quot;:&quot;Courtney Butler&quot;,&quot;firstName&quot;:&quot;Courtney&quot;,&quot;username&quot;:&quot;courtneybutler1&quot;,&quot;kycVerified&quot;:null,&quot;verifiedAccredited&quot;:null,&quot;bio&quot;:&quot;В Ростове-на-Дону компания \&quot;Песок\&quot; предлагает качественные строительные материалы - песок и щебень с оперативной доставкой. В ассортименте &quot;,&quot;website&quot;:&quot;https://pesok-scheben-cement.ru&quot;,&quot;twitterUrl&quot;:null,&quot;twitterName&quot;:null,&quot;linkedinUrl&quot;:null,&quot;linkedinName&quot;:null,&quot;usAddress&quot;:false,&quot;city&quot;:&quot;New Yourk&quot;,&quot;state&quot;:null,&quot;region&quot;:&quot;USA&quot;,&quot;joinedAt&quot;:&quot;April 2025&quot;,&quot;angelInvestmentAmountPerStartupRange&quot;:{&quot;min&quot;:null,&quot;max&quot;:null},&quot;followerCount&quot;:0,&quot;companies&quot;:[],&quot;portfolio&quot;:[],&quot;thesis&quot;:null,&quot;about&quot;:null,&quot;interests&quot;:[],&quot;editProfileUrl&quot;:&quot;https://wefunder.com/settings/public_profile&quot;,&quot;addOffPlatformInvestmentUrl&quot;:&quot;https://wefunder.com/admin/investor_profiles/4204330/add_off_platform_investments&quot;,&quot;adminOnlyUrl&quot;:&quot;https://wefunder.com/courtneybutler1/admin&quot;,&quot;loginAsUrl&quot;:&quot;about:blank&quot;,&quot;privateInvestor&quot;:false,&quot;privateLocation&quot;:false,&quot;badges&quot;:[],&quot;coinvestors&quot;:{&quot;totalAmount&quot;:0,&quot;totalCount&quot;:0},&quot;reviews&quot;:[]},&quot;currentUser&quot;:{&quot;id&quot;:null,&quot;isOwner&quot;:false,&quot;isAdmin&quot;:null,&quot;emailUnfollow&quot;:false,&quot;emailUnsubscribe&quot;:false,&quot;follow&quot;:{&quot;isFollower&quot;:null,&quot;isCoinvestor&quot;:null,&quot;amount&quot;:null,&quot;presentableAmount&quot;:null}},&quot;ahoyEventData&quot;:{&quot;followInvestorProfileEventName&quot;:&quot;follow_investor_profile&quot;,&quot;unfollowInvestorProfileEventName&quot;:&quot;unfollow_investor_profile&quot;,&quot;investorCardProfileComponentProperty&quot;:&quot;investor_card_profile&quot;,&quot;coinvestWithInvestorProfileEventName&quot;:&quot;coinvest_with_investor_profile&quot;,&quot;stopCoinvestWithInvestorProfileEventName&quot;:&quot;stop_coinvest_with_investor_profile&quot;,&quot;followVersionA&quot;:&quot;A&quot;,&quot;altLocation&quot;:&quot;investor_profile&quot;}}}"></div>
  1028.  
  1029.  
  1030.  
  1031.        
  1032.  
  1033. <div data-controller="turbo-mount-shared--wf-login-signup-form--wf-login-signup-form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-component-value="shared/wf_login_signup_form/wf_login_signup_form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-props-value="{&quot;openOnEvent&quot;:&quot;2021-login-signup-required&quot;,&quot;successEventName&quot;:&quot;2021-user-session&quot;,&quot;default_tab&quot;:&quot;&quot;,&quot;outerContainerClass&quot;:&quot;min-h-[622px] flex&quot;,&quot;innerContainerClass&quot;:&quot;w-full my-auto&quot;,&quot;isCapitalize&quot;:false,&quot;useSuccessCallback&quot;:true}"></div>
  1034.  
  1035. <div data-controller="turbo-mount-shared--wf-login-signup-form--wf-login-signup-form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-component-value="shared/wf_login_signup_form/wf_login_signup_form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-props-value="{&quot;openOnEvent&quot;:&quot;2021-login-signup-required-yc&quot;,&quot;successEventName&quot;:&quot;2021-user-session-yc&quot;,&quot;customSidePanel&quot;:{&quot;title&quot;:&quot;component.wf_login_signup_form.welcome_yc&quot;},&quot;default_tab&quot;:&quot;&quot;,&quot;outerContainerClass&quot;:&quot;min-h-[622px] flex&quot;,&quot;innerContainerClass&quot;:&quot;w-full my-auto&quot;,&quot;isCapitalize&quot;:false,&quot;useSuccessCallback&quot;:true}"></div>
  1036.  
  1037. <div data-controller="turbo-mount-shared--wf-login-signup-form--wf-login-signup-form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-component-value="shared/wf_login_signup_form/wf_login_signup_form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-props-value="{&quot;openOnEvent&quot;:&quot;2023-login-signup-required-follow-user&quot;,&quot;successEventName&quot;:&quot;2023-user-session-follow-user&quot;,&quot;skipTranslation&quot;:true,&quot;customSidePanel&quot;:{&quot;title&quot;:&quot;Sign up or Login to Follow Investors&quot;},&quot;default_tab&quot;:&quot;&quot;,&quot;outerContainerClass&quot;:&quot;min-h-[622px] flex&quot;,&quot;innerContainerClass&quot;:&quot;w-full my-auto&quot;,&quot;isCapitalize&quot;:false,&quot;useSuccessCallback&quot;:true}"></div>
  1038.  
  1039. <div data-controller="turbo-mount-shared--wf-login-signup-form--wf-login-signup-form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-component-value="shared/wf_login_signup_form/wf_login_signup_form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-props-value="{&quot;openOnEvent&quot;:&quot;2021-login-signup-required-eu&quot;,&quot;successEventName&quot;:&quot;2021-user-session-eu&quot;,&quot;customSidePanel&quot;:{&quot;title&quot;:&quot;component.wf_login_signup_form.welcome_eu&quot;},&quot;default_tab&quot;:&quot;&quot;,&quot;outerContainerClass&quot;:&quot;min-h-[622px] flex&quot;,&quot;innerContainerClass&quot;:&quot;w-full my-auto&quot;,&quot;isCapitalize&quot;:false,&quot;useSuccessCallback&quot;:true}"></div>
  1040.  
  1041. <div data-controller="turbo-mount-shared--wf-login-signup-form--wf-login-signup-form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-component-value="shared/wf_login_signup_form/wf_login_signup_form" data-turbo-mount-shared--wf-login-signup-form--wf-login-signup-form-props-value="{&quot;openOnEvent&quot;:&quot;2024-login-signup-required-save-search&quot;,&quot;successEventName&quot;:&quot;2024-user-session-save-search&quot;,&quot;customSidePanel&quot;:{&quot;title&quot;:&quot;Sign up or Login to Save Search&quot;},&quot;skipTranslation&quot;:true,&quot;default_tab&quot;:&quot;&quot;,&quot;outerContainerClass&quot;:&quot;min-h-[622px] flex&quot;,&quot;innerContainerClass&quot;:&quot;w-full my-auto&quot;,&quot;isCapitalize&quot;:false,&quot;useSuccessCallback&quot;:true}"></div>
  1042.  
  1043.  
  1044.  
  1045.  
  1046.      </main>
  1047.  
  1048.        <footer class="mt-auto ">
  1049.  
  1050.  
  1051.    <hr class="my-0">
  1052.    <div class="bg-gray-50">
  1053.      <div id="footer-signup" class="fluid-container wf-u-panel relative">
  1054.          <h2 class="text-2xl sm:text-3xl font-medium text-center">Invest in the founders <span class="inline-block">you believe in</span></h2>
  1055.          <h3 class="text-xl sm:text-2xl text-center mt-6 font-light">
  1056.            Join over 1 million investors who are funding the future
  1057.          </h3>
  1058.        <div data-controller="turbo-mount-shared--wf-signup-form" data-turbo-mount-shared--wf-signup-form-component-value="shared/wf_signup_form" data-turbo-mount-shared--wf-signup-form-props-value="{&quot;standalone&quot;:true}"></div>
  1059.        <div class="flex flex-wrap justify-around max-w-lg md:max-w-4xl mx-auto mt-4 md:mt-10 ">
  1060.    <div class="p-2 md:p-4 inline-block invert-20 hover:grayscale " style=" margin-top:4px;">
  1061.      <a target="_blank" rel="noopener noreferrer" aria-label="kqed" href="http://blogs.kqed.org/newsfix/2013/09/17/111497/startups-consider-crowdfunding-to-raise-investment-capital">
  1062.        <img alt="kqed logo" src="https://uploads.wefunder.com/uploads/remote_files/12850-hEfVMBE4G1jsOReA0xPOY5Br/npr_2x.png" class="" style="width:58px; height:19px;" loading="lazy">
  1063.      </a>
  1064.    </div>
  1065.    <div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:3px;">
  1066.      <a target="_blank" rel="noopener noreferrer" aria-label="forbes" href="http://www.forbes.com/sites/techonomy/2012/03/15/would-the-jobs-act-help-small-business-or-unleash-fraud/">
  1067.        <img alt="forbes logo" src='https://uploads.wefunder.com/uploads/remote_files/13668-a860eoRQcqApahuM8uxtkNed/forbes_2x.png' style="width:77px; height:19px;" loading="lazy">
  1068.      </a>
  1069.    </div>
  1070.    <div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:0px;">
  1071.      <a target="_blank" rel="noopener noreferrer" aria-label="business week" href="http://www.businessweek.com/articles/2012-03-06/alone-in-a-crowd-how-crowdfunding-could-strand-startups">
  1072.        <img alt="business week logo" src="https://uploads.wefunder.com/uploads/remote_files/13725-cKRWvAxxVxlp7G4mdfotCMk7/bloomberg_2x.png" style="width:103px; margin-left:25px; height:25px;" loading="lazy">
  1073.      </a>
  1074.    </div>
  1075.    <div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:3px;">
  1076.      <a target="_blank" rel="noopener noreferrer" aria-label="money cnn" href="http://money.cnn.com/galleries/2012/technology/1204/gallery.crowdfunding-startups/">
  1077.        <img alt="cnn money logo" src="https://uploads.wefunder.com/uploads/remote_files/13706-lSXSQM0MzRJLHceEHzUsyT7G/cnn_2x.png" style="width:130px; height:26px; " loading="lazy">
  1078.      </a>
  1079.    </div>
  1080.    <div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:2px;">
  1081.      <a target="_blank" rel="noopener noreferrer" aria-label="pbs" href="http://www.pbs.org/mediashift/2013/09/private-equity-goes-public/">
  1082.        <img alt="pbs logo" src="https://uploads.wefunder.com/uploads/remote_files/12844-sjfyNtcNOXocki88TTHiZlsX/pbs_2x.png" style="width:50px; height:25px; " loading="lazy">
  1083.      </a>
  1084.    </div>
  1085.    <div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
  1086.      <a target="_blank" rel="noopener noreferrer" aria-label="business - time" href="http://business.time.com/2013/09/24/the-crowdfunding-economy-is-about-to-pop/">
  1087.        <img alt="time business logo" src="https://uploads.wefunder.com/uploads/remote_files/12796-2Zk0W1xM93xsxfczmy2XIeTS/time_2x.png" style="width:64px; height:19px;" loading="lazy">
  1088.      </a>
  1089.    </div>
  1090.    <div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
  1091.      <a target="_blank" rel="noopener noreferrer" aria-label="l.a. times" href="http://www.latimes.com/business/la-fi-crowdfunding-20131024,0,6219000.story#axzz2iseXToU4">
  1092.        <img alt="la times logo" src="https://uploads.wefunder.com/uploads/remote_files/12872-91g4CYooW2zkXB5eOa5lpvou/latimes_2x.png" style="width:150px; height:19px; " loading="lazy">
  1093.      </a>
  1094.    </div>
  1095.    <div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
  1096.      <a target="_blank" rel="noopener noreferrer" aria-label="boston globe" href="http://www.bostonglobe.com/business/2013/09/23/with-firm-rules-change-start-turns-look-cambridge-firm-fund-start-funds-with-sec-rules-change-start-ups-look-cambridge/OqzNAanYqgMHcuGrAd1XZN/story.html">
  1097.        <img alt="boston globe logo" src="https://uploads.wefunder.com/uploads/remote_files/13264-TZP2rq3WgMutFMBvM5mHOzTA/globe_2x.png" style="width:144px; height:19px; " loading="lazy">
  1098.      </a>
  1099.    </div>
  1100.    <div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
  1101.      <a target="_blank" rel="noopener noreferrer" aria-label="inc" href="http://www.inc.com/magazine/201206/issie-lapowsky/does-the-jobs-act-help-you.html">
  1102.        <img alt="inc logo" src="https://uploads.wefunder.com/uploads/remote_files/12874-ftxbpRerROMpvMmaw6eJ2szt/inc_2x.png" style="width:50px; height:18px; " loading="lazy">
  1103.      </a>
  1104.    </div>
  1105.    <div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
  1106.      <a target="_blank" rel="noopener noreferrer" aria-label="all things" href="http://allthingsd.com/20130319/meet-wefunder-the-crowdfunding-platform-for-would-be-investors/">
  1107.        <img alt="all things logo" src="https://uploads.wefunder.com/uploads/remote_files/12761-YvFB2br5v3esxOHHYpBJFDz2/wsj_2x.png" style="width:220px; height:15px; margin-top:1px" loading="lazy">
  1108.      </a>
  1109.    </div>
  1110.    <div class="p-2 md:p-4 invert-20 hover:opacity-80 hidden lg:inline-block" style=" margin-top:5px;">
  1111.      <a target="_blank" rel="noopener noreferrer" aria-label="ft" href="http://www.ft.com/intl/cms/s/0/ea20e300-2601-11e3-8ef6-00144feab7de.html#axzz2fwI3CgnR">
  1112.        <img alt="ft logo" src="https://uploads.wefunder.com/uploads/remote_files/13651-OU4xVLMTTTMvgU9RozPnatH7/ft_2x.png" style="width:174px; height:15px; margin-top:1px;" loading="lazy">
  1113.      </a>
  1114.    </div>
  1115.  </div>
  1116. </div>
  1117.  
  1118.      </div>
  1119.    </div>
  1120.    <hr class="my-0">
  1121.  
  1122.  
  1123.  <div class="fluid-container">
  1124.    
  1125.    <div class="flex flex-col lg:ml-2 ">
  1126.  
  1127.      <div class="flex-none mr-4 xl:mr-12">
  1128.        <div class="flex-col lg:flex-row flex">
  1129.          <div class="flex-none">
  1130.            <a href="/pbc" aria-label="PBC">
  1131.              <img
  1132.                class="h-18 w-18 mb-2x md:h-20 md:w-20 lg:h-24 lg:w-24 bg-cover mx-auto lg:mx-0"
  1133.                alt="Wefunder logo"
  1134.                src="https://uploads.wefunder.com/2021/w-blue.svg"
  1135.                width="50"
  1136.                height="50"
  1137.                loading="lazy"
  1138.              >
  1139.            </a>
  1140.          </div>
  1141.          <div class="flex-grow lg:ml-8 mt-3 text-sm lg:text-base text-center lg:text-left lg:mt-1">
  1142.            <div class="font-sm lg-font-base font-medium leading-7">
  1143.              Wefunder is a Public Benefit Corporation.<br>
  1144.              We're here to fix capitalism.
  1145.            </div>
  1146.            <a href="/pbc">
  1147.              <button class="mt-4 wf-btn-blue-o px-6 py-2 lg:px-12 lg:py-4 mb-8 lg:mb-0">
  1148.                2012–2025 IMPACT REPORT
  1149.              </button>
  1150.            </a>
  1151.          </div>
  1152.        </div>
  1153.      </div>
  1154.  
  1155.      <div>
  1156.        <hr class="mb-8">
  1157.  
  1158.        <div class="flex flex-col-reverse sm:flex-row lg:ml-2 font-light">
  1159.  
  1160.          <div class="flow-grow text-xs lg:text-sm leading-5 text-gray-700 dark:text-gray-200 max-w-xl lg:max-w-2xl  mr-4">
  1161.            <p>
  1162.              Wefunder means Wefunder Inc and its wholly owned subsidiaries: Wefunder Advisors LLC, Capitalize Advisors LLC, and Wefunder Portal LLC.
  1163.              This page is hosted by Wefunder Inc.
  1164.            </p>
  1165.              <p class="mt-5">
  1166.                Wefunder Portal LLC is a member of the <a class="wf-link-inline-muted" target="_blank" rel="noopener noreferrer" href="https://www.finra.org/about/firms-we-regulate/funding-portals-we-regulate">Financial Industry Regulatory Authority</a> (FINRA).
  1167.                Wefunder Portal LLC is located in Gun Barrel City, Texas.
  1168.              </p>
  1169.              <p class="mt-5 empty:hidden">The information in this profile is not financial advice. It should not replace advice from a qualified professional who understands an individual&#39;s specific situation.
  1170.        The content on this profile is user-generated by Courtney Butler and has not been verified by Wefunder.</p>
  1171.          </div>
  1172.  
  1173.          <div class="flex justify-between sm:block sm:flex-grow  mb-4 sm:mb-0 text-left sm:text-right  -mt-2 text-2xl  mr-0 lg:mr-12">
  1174.            <a target="_blank" rel='noopener noreferrer' aria-label="Wefunder's Facebook" href="https://www.facebook.com/wefunder"><span class="fa fa-facebook-square p-3 sm:p-2 text-gray-600 hover:text-gray-800"></span></a>
  1175.            <a target="_blank" rel='noopener noreferrer' aria-label="Wefunder's X" href="https://x.com/wefunder"><span class="fa fa-x-square p-3 sm:p-3 text-gray-600 hover:text-gray-800"></span></a>
  1176.            <a target="_blank" rel='noopener noreferrer' aria-label="Wefunder's Linkedin" href="https://www.linkedin.com/company/3229238/admin/"><span class="fa fa-linkedin p-3 sm:p-2 text-gray-600 hover:text-gray-800"></span></a>
  1177.            <a target="_blank" rel='noopener noreferrer' aria-label="Wefunder's Youtube" href="https://www.youtube.com/Wefunder"><span class="fa fa-youtube-square p-3 sm:p-2 text-gray-600 hover:text-gray-800"></span></a>
  1178.            <a target="_blank" rel='noopener noreferrer' aria-label="Wefunder's Instagram" href="https://www.instagram.com/wefunder/"><span class="fa fa-instagram p-3 sm:p-2 text-gray-600 hover:text-gray-800"></span></a>
  1179.            <a target="_blank" rel='noopener noreferrer' aria-label="Wefunder's Podcast on Apple" href="https://podcasts.apple.com/us/podcast/adventure-capital-equity-crowdfunding/id1468541404"><span class="fa fa-podcast p-3 sm:p-2 text-gray-600 hover:text-gray-800"></span></a>
  1180.          </div>
  1181.  
  1182.        </div>
  1183.  
  1184.        <div class="flex text-xs text-gray-500 mt-4 flex-col sm:flex-row lg:ml-2 items-center flex-wrap gap-x-4">
  1185.  
  1186.          <div class="flex-grow flex flex-col xs:flex-row flex-wrap text-center gap-x-3">
  1187.            <div data-controller="turbo-mount-shared--wf-modal--wf-modal" data-turbo-mount-shared--wf-modal--wf-modal-component-value="shared/wf_modal/wf_modal" data-turbo-mount-shared--wf-modal--wf-modal-props-value="{&quot;defaultSize&quot;:&quot;md&quot;,&quot;customModalTriggerHtml&quot;:&quot;\u003cbutton class=\&quot;wf-btn-flat wf-btn-med-gray-flat text-xs px-0\&quot;\u003e\n  IMPORTANT DISCLOSURES\n\u003c/button\u003e\n&quot;,&quot;html&quot;:&quot;\u003cdiv class=\&quot;prose-lg text-black font-reading\&quot;\u003e\n  \u003ch1\u003eDisclosures\u003c/h1\u003e\n  \u003cp\u003ewefunder.com is a website owned by Wefunder Inc., the parent company of Wefunder Advisors LLC and Wefunder Portal LLC. Wefunder Inc. operates sections of wefunder.com where certain Regulation D and Regulation A+ offerings are available. Wefunder Inc. is not regulated in any capacity, is not registered as either a broker-dealer or funding portal, and is not a member of FINRA or any other self-regulatory organization.\u003c/p\u003e\n  \u003cp\u003eWefunder Advisors is an exempt reporting adviser that makes filings with the SEC and certain states. Wefunder Advisors advises special purpose vehicles (SPVs) used in certain Regulation D offerings that are available on wefunder.com.\u003c/p\u003e\n  \u003cp\u003eWefunder Portal is a funding portal (CRD #283503) that is registered with the SEC and is a member of FINRA. Wefunder Portal operates sections of wefunder.com where certain Regulation Crowdfunding offerings are available. For Reg CF investments, Wefunder Portal may charge issuers up to a 7.9% fee. Anyone with a financial stake in a company fundraising on Wefunder, such as a promoter, employee, or founder, must disclose their relationship when communicating with other investors. Investors should read our educational materials on startup investing. Educational materials are continually updated at \u003ca href=\&quot;https://help.wefunder.com\&quot; target=\&quot;_blank\&quot;\u003ehttps://help.wefunder.com\u003c/a\u003e.\u003c/p\u003e\n  \n  \u003cp\u003e\n    By using wefunder.com, you accept our \u003ca class=\&quot;wf-link-inline\&quot; href=\&quot;/terms\&quot;\u003eTerms\u003c/a\u003e \u0026 \u003ca class=\&quot;wf-link-inline\&quot; href=\&quot;/terms#privacy\&quot;\u003ePrivacy Policy\u003c/a\u003e. If investing, you accept our \u003ca class=\&quot;wf-link-inline\&quot; href=\&quot;/terms#investor\&quot;\u003eInvestor Agreement\u003c/a\u003e. You may also view our \u003ca target=\&quot;_blank\&quot; class=\&quot;wf-link-inline\&quot; href=\&quot;https://uploads.wefunder.com/static/privacy_notice.pdf\&quot;\u003ePrivacy Notice\u003c/a\u003e.\n  \u003c/p\u003e\n  \u003cp\u003eAll investments involve risks, including possible loss of capital.\u003c/p\u003e\n\u003c/div\u003e\n&quot;}"></div>
  1188.            <a href="/terms">
  1189.              <button class="wf-btn-flat wf-btn-med-gray-flat text-xs px-0 uppercase">Terms</button>
  1190.            </a>
  1191.            <a href="/terms#privacy">
  1192.              <button class="wf-btn-flat wf-btn-med-gray-flat text-xs px-0 uppercase">Privacy</button>
  1193.            </a>
  1194.            <a class="wf-btn-flat wf-btn-med-gray-flat text-xs px-0 uppercase" href="#" onclick="window.revisitCkyConsent()">Cookies</a>
  1195.          </div>
  1196.  
  1197.          <div class="flex-none lg:mr-14 mt-4 sm:my-0 text-left mx-auto">
  1198.            <div style="display: flex; flex-direction: row; gap: 0.5rem; align-items: center;">
  1199.  <span class="fa fa-translate" style="font-size: 1.25rem; color: rgb(174, 174, 174);" aria-hidden="true"></span>
  1200.  <select
  1201.    id="footer_language_selector"
  1202.    style="font-size: 0.75rem; color: rgb(139, 139, 139); padding: 0.5rem; padding-right: 30px; width: auto;"
  1203.    title="Language"
  1204.  >
  1205.  
  1206.      <option value="de" >Deutsch</option>
  1207.      <option value="en" selected>English</option>
  1208.      <option value="es" >español</option>
  1209.      <option value="fr" >français</option>
  1210.      <option value="it" >italiano</option>
  1211.      <option value="nl" >Nederlands</option>
  1212.      <option value="pt" >português</option>
  1213.  </select>
  1214.  
  1215.  
  1216.  <script type="module">
  1217.    const selector = document.getElementById("footer_language_selector");
  1218.    selector.addEventListener("change", ev => {
  1219.      const queryParams = new URLSearchParams(document.location.search);
  1220.      queryParams.delete("override_locale");
  1221.  
  1222.        queryParams.set("locale", ev.target.value);
  1223.  
  1224.      document.location.search = "?" + queryParams.toString();
  1225.    });
  1226.  </script>
  1227. </div>
  1228.  
  1229.          </div>
  1230.        </div>
  1231.      </div>
  1232.    </div>
  1233.  </div>
  1234. </footer>  
  1235.        
  1236.  
  1237.      
  1238.    <script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'94b88c22ae4538dd',t:'MTc0OTIxOTU5NC4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
  1239.  </html>
  1240.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda