<!DOCTYPE html>
<html
lang="en-us"
controller="investor_profiles"
action="show"
class=""
>
<head>
<meta name="Description" content="Follow deals that Courtney Butler invests in. Decide to invest alongside for $100 or more." />
<style>.grecaptcha-badge { display: none !important; }</style>
<script src="https://www.google.com/recaptcha/enterprise.js?render=6LcAO10qAAAAABc0ME2BDIJrFRu9k41ffvzbpkv8" async defer></script>
<title>Coinvest with Courtney Butler on Wefunder</title>
<script>Object.defineProperty(window, "BASE_PAGE_TITLE", {writable: false, value: "Wefunder, Home of the Community Round"})</script>
<script>
Object.defineProperty(window, "WF_LOCALE", {writable: false, value: "en-us"});
Object.defineProperty(window, "WF_LANGUAGE", {writable: false, value: "en"});
Object.defineProperty(window, "WF_FULL_LANGUAGES", {
writable: false,
value: Object.freeze(["de","en","es","fr","it","nl","pt"])
});
Object.defineProperty(window, "WF_LIMITED_LANGUAGES", {
writable: false,
value: Object.freeze(["da","pl","sv"])
});
</script>
<script src="/intl-messageformat@10.1.1.iife.min.js"></script>
<script type="module" src="/-/translations/en-us" async></script>
<script type="module">
const {IntlMessageFormat, memoize} = window.IntlMessageFormat;
//See: https://formatjs.io/docs/intl-messageformat/#formatters
//The vendored IntlMessageFormat file has been monkeypatched to re-export the memoize function it uses.
const formatters = {
getNumberFormat: memoize((...args) => new Intl.NumberFormat(...args)),
getDateTimeFormat: memoize((...args) => new Intl.DateTimeFormat(...args)),
getPluralRules: memoize((...args) => new Intl.PluralRules(...args))
};
//This used to be just part of the below callback, but was extracted to support downloading language overrides
window.parseWfTranslations = ({locale, messages: nestedMessages}) => {
//Time to build the final IntlMessageFormat-powered messages dictionary...
const _messages = {};
//First, we need to flatten the object...
function flattenMessages(nested, prefix) {
for (const [key, value] of Object.entries(nested)) {
const prefixedKey = [prefix, key].filter(Boolean).join(".");
switch (typeof value) {
case "string":
_messages[prefixedKey] = value;
break;
case "object":
//Handle nulls in case of accidents with Phrase
if (value !== null) {
flattenMessages(value, prefixedKey);
}
break;
}
}
}
flattenMessages(nestedMessages);
//Next, seal the object so properties cannot be added or removed.
//Not completely freezing because the below Proxy still needs write access.
Object.seal(_messages);
//Wrap the dictionary in a Proxy that lazily parses the ICU messages.
//This means that we only parse each message once, but also don't parse messages we don't use.
const messages = new Proxy(_messages, {
get(target, property, receiver) {
const currentValue = Reflect.get(target, property, receiver);
if (currentValue === undefined || currentValue instanceof IntlMessageFormat) return currentValue;
else {
let parsed;
try {
parsed = new IntlMessageFormat(currentValue, locale, undefined, {
formatters,
ignoreTag: true //Disable IntlMessageFormat's weird built-in XML tag parsing
});
}
catch (err) {
console.error(err);
//Don't need to worry about if it's truly a syntax error;
//it'll already have been notified from the backend.
//However we should avoid swallowing unexpected weirdness.
if (!(err instanceof SyntaxError)) throw err;
parsed = undefined;
}
target[property] = parsed;
return parsed;
}
},
//Not bothering to override getOwnPropertyDescriptor
set(target, property, value, receiver) {
//Prevent writing directly to the object
if (receiver === target) return false;
return Reflect.set(target, property, value, receiver);
}
});
return Object.freeze({locale, messages});
};
let readyCallbacks = [];
window.onWfTranslationsReady = cb => {
if (window.WF_TRANSLATIONS) {
cb();
}
else {
readyCallbacks.push(cb);
}
};
//Can't use ??= since this code isn't compiled by Babel
(window.onWfTranslationsLoaded || (window.onWfTranslationsLoaded = [])).push(() => {
Object.defineProperty(window, "WF_TRANSLATIONS", {
writable: false,
value: parseWfTranslations(window._RAW_WF_TRANSLATIONS)
});
readyCallbacks.forEach(cb => cb());
readyCallbacks = null;
});
</script>
<script type="module">
//Check to see if we're navigating to a new URL with a different value of ?override_locale and force a reload if so
function checkOverrideLocaleChange(newUrl) {
const currentQueryParams = new URLSearchParams(document.location.search);
const newQueryParams = new URL(newUrl, document.location).searchParams;
if (newQueryParams.get("override_locale") !== currentQueryParams.get("override_locale")) {
//Force a full reload so the correct locale is downloaded and server-rendered strings are refreshed
document.location.href = newUrl;
//Prevent React Router from navigating
throw "OVERRIDE_LOCALE_REDIRECT";
}
}
window.addEventListener("error", ev => {
if (ev.error === "OVERRIDE_LOCALE_REDIRECT") {
ev.stopImmediatePropagation();
}
}, {capture: true});
//Why is there a proper event to listen to for popping a state but not pushing/replacing??
const _pushState = window.history.pushState;
window.history.pushState = function(state, unused, url) {
if (url) {
checkOverrideLocaleChange(url);
}
_pushState.call(this, state, unused, url);
}
const _replaceState = window.history.replaceState;
window.history.replaceState = function(state, unused, url) {
if (url) {
checkOverrideLocaleChange(url);
}
_replaceState.call(this, state, unused, url);
}
</script>
<meta property="twitter:account_id" content="468423167" />
<meta name="pusher-key" content="1a6fe21b49e4893d98cb" />
<meta name="csrf-param" content="authenticity_token" />
<meta name="csrf-token" content="ynwS1zOi9hlqlvlEFqlnzVuldsQKQK9_UTUr9ezh-RQKtoixnBwiwgylMCjwikTwY0hz_uzE2xlIPxRXnHG6nA" />
<meta name="current_user.id" />
<meta name="current_user.admin" />
<meta name="current_user.paid_subscription" />
<meta name="vip_feature_enabled" content="true" />
<meta name="current_user.email" />
<meta name="current_user.accredited" />
<meta name="current_user.slug" />
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<script>
window.FACEBOOK_APP_ID = "216076798476059";
</script>
<script>
window.debug_ajax = true;
</script>
<script>
window._gaq = window._gaq || [];
window._kmk = window._kmk || [];
window._pq = window._pq || [];
</script>
<meta property="fb:app_id" content="216076798476059" />
<meta property="fb:app_id" content="216076798476059" />
<meta property="og:url" content="http://wefunder.com/courtneybutler1" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Coinvest with Courtney Butler on Wefunder" />
<meta property="og:description" content="Follow deals that Courtney Butler invests in. Decide to invest alongside for $100 or more." />
<meta property="og:image" content="https://uploads.wefunder.com/raise-2023/raise_unfurl_card.webp" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@wefunder">
<meta name="twitter:creator" content="@wefunder">
<meta name="twitter:description" content="Follow deals that Courtney Butler invests in. Decide to invest alongside for $100 or more.">
<meta name="twitter:title" content="Coinvest with Courtney Butler on Wefunder">
<meta name="twitter:image" content="https://uploads.wefunder.com/raise-2023/raise_unfurl_card.webp">
<script>
window['_fs_debug'] = false;
window['_fs_host'] = 'fullstory.com';
window['_fs_script'] = 'edge.fullstory.com/s/fs.js';
window['_fs_org'] = '1qJS';
window['_fs_namespace'] = 'FS';
(function(m,n,e,t,l,o,g,y){
if (e in m) {if(m.console && m.console.log) { m.console.log('FullStory namespace conflict. Please set window["_fs_namespace"].');} return;}
g=m[e]=function(a,b,s){g.q?g.q.push([a,b,s]):g._api(a,b,s);};g.q=[];
o=n.createElement(t);o.async=1;o.crossOrigin='anonymous';o.src='https://'+_fs_script;
y=n.getElementsByTagName(t)[0];y.parentNode.insertBefore(o,y);
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)};
g.shutdown=function(){g("rec",!1)};g.restart=function(){g("rec",!0)};
g.log = function(a,b){g("log",[a,b])};
g.consent=function(a){g("consent",!arguments.length||a)};
g.identifyAccount=function(i,v){o='account';v=v||{};v.acctId=i;g(o,v)};
g.clearUserCookie=function(){};
g._w={};y='XMLHttpRequest';g._w[y]=m[y];y='fetch';g._w[y]=m[y];
if(m[y])m[y]=function(){return g._w[y].apply(this,arguments)};
g._v="1.1.1";
})(window,document,window['_fs_namespace'],'script','user');
</script>
<script async defer>
UPLOADCARE_PUBLIC_KEY = 'ef574386a2260d9f9023';
window.addEventListener('blinkloader:ready', function() {
window.Blinkloader.optimize({
pubkey:'ef574386a2260d9f9023',
fadeIn:true,
lazyload: true,
smartCompression: true,
responsive: true,
retina: true,
webp: true
});
});
</script>
<script async defer type='text/javascript' >
function setHelpToken() {
Cookies.set('help_token', '0', { path: '/', domain: "wefunder.com"});
}
window.Cookies ? setHelpToken() : window.addEventListener('js-cookies:ready', setHelpToken);
</script>
<script id="wefunder-google-tag-manager-script" type="text/javascript">
window.wefunderDataLayer = window.wefunderDataLayer || [];
(
function(w,d,s,l,i){
w[l]=w[l]||[];
w[l].push(
{'gtm.start': new Date().getTime(),event:'gtm.js'});
var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';
j.async=true;
j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;
f.parentNode.insertBefore(j,f);
}
)(window,document,'script','wefunderDataLayer','GTM-KZJN642D');
</script>
<script async defer>
!function(e,t,n,s,u,a){
e.twq||(
s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);},
s.version='1.1',
s.queue=[],
u=t.createElement(n),
u.async=!0,
u.src='https://static.ads-twitter.com/uwt.js',
a=t.getElementsByTagName(n)[0],
a.parentNode.insertBefore(u,a))
}(window,document,'script');
twq('config','o9wkn');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0, user-scalable=no">
<meta name="eu_countries" id="eu_country_codes" content='["RUS", "UKR", "FRA", "ESP", "SWE", "NOR", "DEU", "FIN", "POL", "ITA", "GBR", "ROU", "BLR", "KAZ", "GRC", "BGR", "ISL", "HUN", "PRT", "SRB", "AUT", "CZE", "IRL", "LTU", "LVA", "HRV", "BIH", "SVK", "EST", "DNK", "CHE", "NLD", "MDA", "BEL", "ALB", "MKD", "TUR", "SVN", "MNE", "AZE", "GEO", "LUX", "AND", "MLT", "LIE", "SMR", "MCO", "VAT", "CYP", "ARM"]'>
<!-- Always use protection -->
<meta name="csrf-param" content="authenticity_token" />
<meta name="csrf-token" content="noxLYYyuGUsc0xqG7FKHs9nCTUudPDGqNQZSQbWIUMteRtEHIxDNkHrg0-oKcaSO4S9IcXu4RcwsDG3jxRgTQw" />
<script type='text/javascript' >
function setPayPIHost() {
window.PayPI.init_host("https://paypi.wefunder.com");
}
window.PayPI ? setPayPIHost() : window.addEventListener('paypi:ready', setPayPIHost);
</script>
<!-- External fonts -->
<link rel="stylesheet" type="text/css" href="https://cloud.typography.com/7970354/7332832/css/fonts.css" />
<!-- External icons -->
<script src="https://use.fortawesome.com/d55bc9ce.js" async defer></script>
<!-- Payment processing libraries -->
<script src="https://js.stripe.com/v3/" async defer></script>
<script src="https://cdn.plaid.com/link/v2/stable/link-initialize.js" async defer></script>
<!-- ADMIN SESSION? false -->
<script type='text/javascript' >
var _pq = _pq || [ ];
</script>
<script type="module" defer>
const alpha_conversion = {
BD: 'BGD',
BE: 'BEL',
BF: 'BFA',
BG: 'BGR',
BA: 'BIH',
BB: 'BRB',
WF: 'WLF',
BL: 'BLM',
BM: 'BMU',
BN: 'BRN',
BO: 'BOL',
BH: 'BHR',
BI: 'BDI',
BJ: 'BEN',
BT: 'BTN',
JM: 'JAM',
BV: 'BVT',
BW: 'BWA',
WS: 'WSM',
BQ: 'BES',
BR: 'BRA',
BS: 'BHS',
JE: 'JEY',
BY: 'BLR',
BZ: 'BLZ',
RU: 'RUS',
RW: 'RWA',
RS: 'SRB',
TL: 'TLS',
RE: 'REU',
TM: 'TKM',
TJ: 'TJK',
RO: 'ROU',
TK: 'TKL',
GW: 'GNB',
GU: 'GUM',
GT: 'GTM',
GS: 'SGS',
GR: 'GRC',
GQ: 'GNQ',
GP: 'GLP',
JP: 'JPN',
GY: 'GUY',
GG: 'GGY',
GF: 'GUF',
GE: 'GEO',
GD: 'GRD',
GB: 'GBR',
GA: 'GAB',
SV: 'SLV',
GN: 'GIN',
GM: 'GMB',
GL: 'GRL',
GI: 'GIB',
GH: 'GHA',
OM: 'OMN',
TN: 'TUN',
JO: 'JOR',
HR: 'HRV',
HT: 'HTI',
HU: 'HUN',
HK: 'HKG',
HN: 'HND',
HM: 'HMD',
VE: 'VEN',
PR: 'PRI',
PS: 'PSE',
PW: 'PLW',
PT: 'PRT',
SJ: 'SJM',
PY: 'PRY',
IQ: 'IRQ',
PA: 'PAN',
PF: 'PYF',
PG: 'PNG',
PE: 'PER',
PK: 'PAK',
PH: 'PHL',
PN: 'PCN',
PL: 'POL',
PM: 'SPM',
ZM: 'ZMB',
EH: 'ESH',
EE: 'EST',
EG: 'EGY',
ZA: 'ZAF',
EC: 'ECU',
IT: 'ITA',
VN: 'VNM',
SB: 'SLB',
ET: 'ETH',
SO: 'SOM',
ZW: 'ZWE',
SA: 'SAU',
ES: 'ESP',
ER: 'ERI',
ME: 'MNE',
MD: 'MDA',
MG: 'MDG',
MF: 'MAF',
MA: 'MAR',
MC: 'MCO',
UZ: 'UZB',
MM: 'MMR',
ML: 'MLI',
MO: 'MAC',
MN: 'MNG',
MH: 'MHL',
MK: 'MKD',
MU: 'MUS',
MT: 'MLT',
MW: 'MWI',
MV: 'MDV',
MQ: 'MTQ',
MP: 'MNP',
MS: 'MSR',
MR: 'MRT',
IM: 'IMN',
UG: 'UGA',
TZ: 'TZA',
MY: 'MYS',
MX: 'MEX',
IL: 'ISR',
FR: 'FRA',
IO: 'IOT',
SH: 'SHN',
FI: 'FIN',
FJ: 'FJI',
FK: 'FLK',
FM: 'FSM',
FO: 'FRO',
NI: 'NIC',
NL: 'NLD',
NO: 'NOR',
NA: 'NAM',
VU: 'VUT',
NC: 'NCL',
NE: 'NER',
NF: 'NFK',
NG: 'NGA',
NZ: 'NZL',
NP: 'NPL',
NR: 'NRU',
NU: 'NIU',
CK: 'COK',
XK: 'XKX',
CI: 'CIV',
CH: 'CHE',
CO: 'COL',
CN: 'CHN',
CM: 'CMR',
CL: 'CHL',
CC: 'CCK',
CA: 'CAN',
CG: 'COG',
CF: 'CAF',
CD: 'COD',
CZ: 'CZE',
CY: 'CYP',
CX: 'CXR',
CR: 'CRI',
CW: 'CUW',
CV: 'CPV',
CU: 'CUB',
SZ: 'SWZ',
SY: 'SYR',
SX: 'SXM',
KG: 'KGZ',
KE: 'KEN',
SS: 'SSD',
SR: 'SUR',
KI: 'KIR',
KH: 'KHM',
KN: 'KNA',
KM: 'COM',
ST: 'STP',
SK: 'SVK',
KR: 'KOR',
SI: 'SVN',
KP: 'PRK',
KW: 'KWT',
SN: 'SEN',
SM: 'SMR',
SL: 'SLE',
SC: 'SYC',
KZ: 'KAZ',
KY: 'CYM',
SG: 'SGP',
SE: 'SWE',
SD: 'SDN',
DO: 'DOM',
DM: 'DMA',
DJ: 'DJI',
DK: 'DNK',
VG: 'VGB',
DE: 'DEU',
YE: 'YEM',
DZ: 'DZA',
US: 'USA',
UY: 'URY',
YT: 'MYT',
UM: 'UMI',
LB: 'LBN',
LC: 'LCA',
LA: 'LAO',
TV: 'TUV',
TW: 'TWN',
TT: 'TTO',
TR: 'TUR',
LK: 'LKA',
LI: 'LIE',
LV: 'LVA',
TO: 'TON',
LT: 'LTU',
LU: 'LUX',
LR: 'LBR',
LS: 'LSO',
TH: 'THA',
TF: 'ATF',
TG: 'TGO',
TD: 'TCD',
TC: 'TCA',
LY: 'LBY',
VA: 'VAT',
VC: 'VCT',
AE: 'ARE',
AD: 'AND',
AG: 'ATG',
AF: 'AFG',
AI: 'AIA',
VI: 'VIR',
IS: 'ISL',
IR: 'IRN',
AM: 'ARM',
AL: 'ALB',
AO: 'AGO',
AQ: 'ATA',
AS: 'ASM',
AR: 'ARG',
AU: 'AUS',
AT: 'AUT',
AW: 'ABW',
IN: 'IND',
AX: 'ALA',
AZ: 'AZE',
IE: 'IRL',
ID: 'IDN',
UA: 'UKR',
QA: 'QAT',
MZ: 'MOZ',
}
const biggestNonEUCountries = new Set([
'USA',
'CHN',
'JPN',
'IND',
'CAN',
'BRA',
'RUS',
'KOR',
'AUS',
'IRN',
'MEX',
'IDN',
'SAU',
'TWN',
'TUR',
'ARG',
'THA',
'ISR',
'NGA',
])
const hideOutsideEU = () => {
const countryInStorage = window.localStorage.getItem('country')
if (countryInStorage) {
const country = JSON.parse(countryInStorage).country
if (country) {
if (biggestNonEUCountries.has(country)) {
document.body.className += ' is-outside-eu';
}
}
}
}
const EXPIRY_IN_MINS = 1140
const getCountry = () => "US"
const setCountryInStorage = () => {
try {
const country = getCountry()
if (country) {
const countryAsAlpha3 = alpha_conversion[country]
const countryToStore = {
timeSet: Date.now(),
country: countryAsAlpha3,
}
window.localStorage.setItem('country', JSON.stringify(countryToStore))
}
} catch (err) {
console.error(`Error fetching country and setting in local storage: ${err}`)
}
}
const checkLocalStorage = () => {
const countryInStorage = window.localStorage.getItem('country')
if (countryInStorage) {
const dateAdded = JSON.parse(countryInStorage).timeSet
const timeDiffinMS = Date.now() - dateAdded
const mins = Math.ceil(timeDiffinMS / 1000 / 60)
if (mins > EXPIRY_IN_MINS) {
setCountryInStorage()
}
} else {
setCountryInStorage()
}
hideOutsideEU()
}
checkLocalStorage()
</script>
<script>
_sift = [['_setAccount', 'c66d8a3fe6'],['_setUserId',''],['_setSessionId', '502e0563747acaa7ba8a30de9541efc0'],['_trackPageview']];
(function() {
function ls() {
var e = document.createElement('script');
e.src = 'https://cdn.sift.com/s.js';
document.body.appendChild(e);
}
if (window.attachEvent) {
window.attachEvent('onload', ls);
} else {
window.addEventListener('load', ls, false);
}
})();
</script>
<script type="text/javascript">
(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 || []);
</script>
<script async defer>
window.mixpanel.init("aec5c4f1313da460ef91ed9e5d0b9e93", {debug: true, track_pageview: true, persistence: 'localStorage'});
</script>
<!-- Intercom's script -->
<script src="/assets/application_esbuild-f2133d4e3c67bc734c28ce7b6cd6bd254ff5b2975f73a63e557cc410ee5fc5b2.js" data-turbo-track="reload"></script>
<link rel="stylesheet" href="/assets/postcss_application-98a66a4709ad37671f3ad00817c9f239582ff9385aacf6c9ca798f428d4e2f8f.css" data-turbo-track="reload" />
<link rel="stylesheet" href="/assets/application_esbuild-d040ccc086a0009c11f0fadc7dd00c27b872fa4389ba5bfc36bc2ffe6e87de33.css" data-turbo-track="reload" />
</head>
<body
id="wefunder_2021"
class="wefunder_2025 investor_profiles flex flex-col min-h-screen">
<noscript>
<iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-KZJN642D"
height="0"
width="0"
style="display:none;visibility:hidden">
</iframe>
</noscript>
<header class="w-full text-sm px-4 py-3 h-16 leading-8 flex flex-col justify-center items-center border-b">
<nav class="flex items-center justify-between w-full">
<div class="flex items-center">
<a href="/home"
title="Home"
class="block h-8 hover:opacity-95 transition-opacity duration-500"
data-turbo='false'>
<img class="h-8 w-8 bg-cover md:hidden"
src="https://uploads.wefunder.com/2021/w-blue.svg"
alt="Wefunder logo"
>
<img class="h-8 hidden md:inline-block md:-mt-[5px]"
style="
vertical-align: top;
"
alt="Wefunder logo"
src="https://uploads.wefunder.com/2021/logo.svg"
width="117"
height="32"
>
</a>
<div class="pl-4 md:inline-block md:pl-8 w-28 md:w-auto md:mr-3">
<ul class="flex md:items-center md:space-x-6">
<li class="hidden md:inline-block">
<a href="/explore" class="wf-link-nav">Explore</a>
</li>
<li style="color: #585858">
<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="{"disableAnimation":false}"></div>
</li>
</ul>
</div>
</div>
<div style="grid-area: menu; justify-self: end;">
<turbo-frame id="user_menu">
<ul data-controller="user-menu" class="flex items-center gap-x-4 lg:pr-4">
<li class="hidden md:block md:px-2 wf-link-nav">
<a href="/raise" data-turbo="false">
<span class="xl:hidden">Raise</span>
<span class="hidden xl:inline-block">Raise Money</span>
</a>
</li>
<li class="hidden md:block">
<div data-controller="popover toggle-active" class="relative">
<span class="cursor-pointer relative flex items-center gap-1 wf-link-nav"
data-action="mouseenter->popover#show mouseleave->popover#hide mouseenter->toggle-active#toggle mouseleave->toggle-active#toggle">
Learn
<i data-toggle-active-target="target"
data-state="inactive"
class="fa fa-chevron-down data-[state=inactive]:rotate-0 data-[state=active]:rotate-180 transition-all text-lg"></i>
</span>
<template data-popover-target="content">
<div data-popover-target="card" class="absolute z-50 w-64 top-1/2 left-1/2 -translate-x-1/2 pt-6">
<div class="border shadow-sm rounded overflow-hidden">
<div class="min-[925px]:shadow-md bg-white text-sm z-10">
<ul class="min-[925px]:px-2 px-4 py-2">
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="https://help.wefunder.com/#/investor/getting-started-for-investors" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-comment" ></span>
<span class="wf-link-nav-modal-label">Investor FAQ</span></a>
</li>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" target="_blank" data-turbo="false" href="/school">
<span class="wf-link-nav-modal-icon fa fa-graduation-cap"></span>
<span class="wf-link-nav-modal-label">Investor School</span></a>
</a> <hr class="m-2 bg-coolgray-300"/>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="https://help.wefunder.com/#/founder/why-wefunder" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-comment"></span>
<span class="wf-link-nav-modal-label">Founder FAQ</span></a>
</li>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" target="_blank" href="https://guides.wefunder.com/" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-clipboard"></span>
<span class="wf-link-nav-modal-label">Fundraising Playbook</span></a>
</li>
<hr class="m-2 bg-coolgray-300"/>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="/blog" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-blog2"></span>
<span class="wf-link-nav-modal-label">Blog</span></a>
</li>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="/rewards" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-cash"></span>
<span class="wf-link-nav-modal-label">Earn up to $10,000</span></a>
</li>
</ul>
</div>
</div>
</div>
</template>
</div>
</li>
<li class="hidden md:block h-8 border-r mx-4 "></li>
<li class="wf-link-nav">
<a href="/login" class="hidden md:inline-block text-center leading-normal" data-turbo="false">
Log in
</a>
<a href="/login" class="md:hidden" data-turbo="false">
<span class="text-xl px-2 py-1 border rounded-full bg-gray-100 fa fa-user"></span>
</a>
</li>
<li class="hidden md:inline-block wf-link-nav">
<a href="/signup" class="text-center leading-normal" data-turbo="false">
Sign up
</a>
</li>
<li id="mobile-menu-icon" class="flex items-center gap-3 md:hidden wf-link-nav">
<span id="menu-lines-icon" class="group block cursor-pointer" data-state="inactive">
<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>
<span class="block my-1 h-0.5 w-5 bg-coolgray-800 rounded transition-all group-data-[state=active]:bg-transparent"></span>
<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>
</span>
</li>
</ul>
</turbo-frame>
</div>
</nav>
</header>
<div id="mobile-menu"
class="relative bg-white hidden border-blue-200 absolute w-full text-sm md:hidden z-[1000]">
<nav id="user-menu"
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">
<div class="min-[925px]:hidden">
<ul class="pt-2 px-4">
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="/login">
<span class="wf-link-nav-modal-icon fa fa-login" aria-hidden="true"></span>
<span class="wf-link-nav-modal-label">Login</span>
</a>
</li>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="/signup">
<span class="wf-link-nav-modal-icon fa fa-pencil-2" aria-hidden="true"></span>
<span class="wf-link-nav-modal-label">Signup</span>
</a>
</li>
</ul>
<hr class="m-2 mt-0"/>
</div>
<div class="sm:hidden" data-controller="toggle-active">
<ul class="pt-2 px-4">
<li>
<a href="/explore" class="wf-link-nav-modal dark:text-gray-700">
<span class="wf-link-nav-modal-icon fa fa-search-2"></span>
<span class="wf-link-nav-modal-label">Explore startups</span>
</a>
<li>
<li>
<a href="/raise" class="wf-link-nav-modal dark:text-gray-700">
<span class="wf-link-nav-modal-icon fa fa-wf-logo"></span>
<span class="wf-link-nav-modal-label">Raise Money</span>
</a>
<li>
<li>
<button class="group flex items-center w-full justify-between mb-2"
data-action="click->toggle-active#toggle">
<span class="wf-link-nav-modal dark:text-gray-700">
<span class="wf-link-nav-modal-icon fa fa-graduation-cap"></span>
<span class="wf-link-nav-modal-label">Learn</span>
</span>
<i data-toggle-active-target="target"
data-state="inactive"
class="fa fa-chevron-down data-[state=inactive]:rotate-0 data-[state=active]:rotate-180 transition-all text-lg wf-text-dim"></i>
</button>
</li>
</ul>
<div data-toggle-active-target="target"
data-state="inactive"
class="data-[state=inactive]:hidden">
<div class="min-[925px]:shadow-md bg-white text-sm z-10">
<ul class="min-[925px]:px-2 px-4 py-2">
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="https://help.wefunder.com/#/investor/getting-started-for-investors" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-comment" ></span>
<span class="wf-link-nav-modal-label">Investor FAQ</span></a>
</li>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" target="_blank" data-turbo="false" href="/school">
<span class="wf-link-nav-modal-icon fa fa-graduation-cap"></span>
<span class="wf-link-nav-modal-label">Investor School</span></a>
</a> <hr class="m-2 bg-coolgray-300"/>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="https://help.wefunder.com/#/founder/why-wefunder" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-comment"></span>
<span class="wf-link-nav-modal-label">Founder FAQ</span></a>
</li>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" target="_blank" href="https://guides.wefunder.com/" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-clipboard"></span>
<span class="wf-link-nav-modal-label">Fundraising Playbook</span></a>
</li>
<hr class="m-2 bg-coolgray-300"/>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="/blog" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-blog2"></span>
<span class="wf-link-nav-modal-label">Blog</span></a>
</li>
<li>
<a class="wf-link-nav-modal dark:text-gray-700" href="/rewards" data-turbo="false">
<span class="wf-link-nav-modal-icon fa fa-cash"></span>
<span class="wf-link-nav-modal-label">Earn up to $10,000</span></a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</div>
<script>
document.addEventListener('click', toggleMobileMenu)
function toggleMobileMenu(e) {
const mobileMenu = document.getElementById('mobile-menu')
const linesIcon = document.getElementById('menu-lines-icon')
const icon = document.getElementById('mobile-menu-icon')
if (mobileMenu) {
if (!mobileMenu?.contains(e.target) && !icon?.contains(e.target)) {
mobileMenu?.classList?.add('hidden');
if (linesIcon) linesIcon.dataset.state = "inactive"
} else if (icon?.contains(e.target)) {
mobileMenu?.classList?.toggle('hidden')
if (linesIcon) linesIcon.dataset.state = linesIcon.dataset.state == 'active' ? "inactive" : 'active'
}
}
}
</script>
<main
id="main-content"
class="flex-grow min-h-full">
<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="{"data":{"investorProfile":{"id":4204330,"profilePictureUrl":"https://uploads.wefunder.com/2021/user_default_icon_circle.png","fullName":"Courtney Butler","firstName":"Courtney","username":"courtneybutler1","kycVerified":null,"verifiedAccredited":null,"bio":"В Ростове-на-Дону компания \"Песок\" предлагает качественные строительные материалы - песок и щебень с оперативной доставкой. В ассортименте ","website":"https://pesok-scheben-cement.ru","twitterUrl":null,"twitterName":null,"linkedinUrl":null,"linkedinName":null,"usAddress":false,"city":"New Yourk","state":null,"region":"USA","joinedAt":"April 2025","angelInvestmentAmountPerStartupRange":{"min":null,"max":null},"followerCount":0,"companies":[],"portfolio":[],"thesis":null,"about":null,"interests":[],"editProfileUrl":"https://wefunder.com/settings/public_profile","addOffPlatformInvestmentUrl":"https://wefunder.com/admin/investor_profiles/4204330/add_off_platform_investments","adminOnlyUrl":"https://wefunder.com/courtneybutler1/admin","loginAsUrl":"about:blank","privateInvestor":false,"privateLocation":false,"badges":[],"coinvestors":{"totalAmount":0,"totalCount":0},"reviews":[]},"currentUser":{"id":null,"isOwner":false,"isAdmin":null,"emailUnfollow":false,"emailUnsubscribe":false,"follow":{"isFollower":null,"isCoinvestor":null,"amount":null,"presentableAmount":null}},"ahoyEventData":{"followInvestorProfileEventName":"follow_investor_profile","unfollowInvestorProfileEventName":"unfollow_investor_profile","investorCardProfileComponentProperty":"investor_card_profile","coinvestWithInvestorProfileEventName":"coinvest_with_investor_profile","stopCoinvestWithInvestorProfileEventName":"stop_coinvest_with_investor_profile","followVersionA":"A","altLocation":"investor_profile"}}}"></div>
<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="{"openOnEvent":"2021-login-signup-required","successEventName":"2021-user-session","default_tab":"","outerContainerClass":"min-h-[622px] flex","innerContainerClass":"w-full my-auto","isCapitalize":false,"useSuccessCallback":true}"></div>
<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="{"openOnEvent":"2021-login-signup-required-yc","successEventName":"2021-user-session-yc","customSidePanel":{"title":"component.wf_login_signup_form.welcome_yc"},"default_tab":"","outerContainerClass":"min-h-[622px] flex","innerContainerClass":"w-full my-auto","isCapitalize":false,"useSuccessCallback":true}"></div>
<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="{"openOnEvent":"2023-login-signup-required-follow-user","successEventName":"2023-user-session-follow-user","skipTranslation":true,"customSidePanel":{"title":"Sign up or Login to Follow Investors"},"default_tab":"","outerContainerClass":"min-h-[622px] flex","innerContainerClass":"w-full my-auto","isCapitalize":false,"useSuccessCallback":true}"></div>
<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="{"openOnEvent":"2021-login-signup-required-eu","successEventName":"2021-user-session-eu","customSidePanel":{"title":"component.wf_login_signup_form.welcome_eu"},"default_tab":"","outerContainerClass":"min-h-[622px] flex","innerContainerClass":"w-full my-auto","isCapitalize":false,"useSuccessCallback":true}"></div>
<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="{"openOnEvent":"2024-login-signup-required-save-search","successEventName":"2024-user-session-save-search","customSidePanel":{"title":"Sign up or Login to Save Search"},"skipTranslation":true,"default_tab":"","outerContainerClass":"min-h-[622px] flex","innerContainerClass":"w-full my-auto","isCapitalize":false,"useSuccessCallback":true}"></div>
</main>
<footer class="mt-auto ">
<hr class="my-0">
<div class="bg-gray-50">
<div id="footer-signup" class="fluid-container wf-u-panel relative">
<h2 class="text-2xl sm:text-3xl font-medium text-center">Invest in the founders <span class="inline-block">you believe in</span></h2>
<h3 class="text-xl sm:text-2xl text-center mt-6 font-light">
Join over 1 million investors who are funding the future
</h3>
<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="{"standalone":true}"></div>
<div class="flex flex-wrap justify-around max-w-lg md:max-w-4xl mx-auto mt-4 md:mt-10 ">
<div class="p-2 md:p-4 inline-block invert-20 hover:grayscale " style=" margin-top:4px;">
<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">
<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">
</a>
</div>
<div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:3px;">
<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/">
<img alt="forbes logo" src='https://uploads.wefunder.com/uploads/remote_files/13668-a860eoRQcqApahuM8uxtkNed/forbes_2x.png' style="width:77px; height:19px;" loading="lazy">
</a>
</div>
<div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:0px;">
<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">
<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">
</a>
</div>
<div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:3px;">
<a target="_blank" rel="noopener noreferrer" aria-label="money cnn" href="http://money.cnn.com/galleries/2012/technology/1204/gallery.crowdfunding-startups/">
<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">
</a>
</div>
<div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:2px;">
<a target="_blank" rel="noopener noreferrer" aria-label="pbs" href="http://www.pbs.org/mediashift/2013/09/private-equity-goes-public/">
<img alt="pbs logo" src="https://uploads.wefunder.com/uploads/remote_files/12844-sjfyNtcNOXocki88TTHiZlsX/pbs_2x.png" style="width:50px; height:25px; " loading="lazy">
</a>
</div>
<div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
<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/">
<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">
</a>
</div>
<div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
<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">
<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">
</a>
</div>
<div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
<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">
<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">
</a>
</div>
<div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
<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">
<img alt="inc logo" src="https://uploads.wefunder.com/uploads/remote_files/12874-ftxbpRerROMpvMmaw6eJ2szt/inc_2x.png" style="width:50px; height:18px; " loading="lazy">
</a>
</div>
<div class="p-2 md:p-4 inline-block invert-20 hover:opacity-80" style="margin-top:5px;">
<a target="_blank" rel="noopener noreferrer" aria-label="all things" href="http://allthingsd.com/20130319/meet-wefunder-the-crowdfunding-platform-for-would-be-investors/">
<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">
</a>
</div>
<div class="p-2 md:p-4 invert-20 hover:opacity-80 hidden lg:inline-block" style=" margin-top:5px;">
<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">
<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">
</a>
</div>
</div>
</div>
</div>
</div>
<hr class="my-0">
<div class="fluid-container">
<div class="flex flex-col lg:ml-2 ">
<div class="flex-none mr-4 xl:mr-12">
<div class="flex-col lg:flex-row flex">
<div class="flex-none">
<a href="/pbc" aria-label="PBC">
<img
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"
alt="Wefunder logo"
src="https://uploads.wefunder.com/2021/w-blue.svg"
width="50"
height="50"
loading="lazy"
>
</a>
</div>
<div class="flex-grow lg:ml-8 mt-3 text-sm lg:text-base text-center lg:text-left lg:mt-1">
<div class="font-sm lg-font-base font-medium leading-7">
Wefunder is a Public Benefit Corporation.<br>
We're here to fix capitalism.
</div>
<a href="/pbc">
<button class="mt-4 wf-btn-blue-o px-6 py-2 lg:px-12 lg:py-4 mb-8 lg:mb-0">
2012–2025 IMPACT REPORT
</button>
</a>
</div>
</div>
</div>
<div>
<hr class="mb-8">
<div class="flex flex-col-reverse sm:flex-row lg:ml-2 font-light">
<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">
<p>
Wefunder means Wefunder Inc and its wholly owned subsidiaries: Wefunder Advisors LLC, Capitalize Advisors LLC, and Wefunder Portal LLC.
This page is hosted by Wefunder Inc.
</p>
<p class="mt-5">
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).
Wefunder Portal LLC is located in Gun Barrel City, Texas.
</p>
<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's specific situation.
The content on this profile is user-generated by Courtney Butler and has not been verified by Wefunder.</p>
</div>
<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">
<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>
<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>
<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>
<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>
<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>
<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>
</div>
</div>
<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">
<div class="flex-grow flex flex-col xs:flex-row flex-wrap text-center gap-x-3">
<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="{"defaultSize":"md","customModalTriggerHtml":"\u003cbutton class=\"wf-btn-flat wf-btn-med-gray-flat text-xs px-0\"\u003e\n IMPORTANT DISCLOSURES\n\u003c/button\u003e\n","html":"\u003cdiv class=\"prose-lg text-black font-reading\"\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=\"https://help.wefunder.com\" target=\"_blank\"\u003ehttps://help.wefunder.com\u003c/a\u003e.\u003c/p\u003e\n \n \u003cp\u003e\n By using wefunder.com, you accept our \u003ca class=\"wf-link-inline\" href=\"/terms\"\u003eTerms\u003c/a\u003e \u0026 \u003ca class=\"wf-link-inline\" href=\"/terms#privacy\"\u003ePrivacy Policy\u003c/a\u003e. If investing, you accept our \u003ca class=\"wf-link-inline\" href=\"/terms#investor\"\u003eInvestor Agreement\u003c/a\u003e. You may also view our \u003ca target=\"_blank\" class=\"wf-link-inline\" href=\"https://uploads.wefunder.com/static/privacy_notice.pdf\"\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"}"></div>
<a href="/terms">
<button class="wf-btn-flat wf-btn-med-gray-flat text-xs px-0 uppercase">Terms</button>
</a>
<a href="/terms#privacy">
<button class="wf-btn-flat wf-btn-med-gray-flat text-xs px-0 uppercase">Privacy</button>
</a>
<a class="wf-btn-flat wf-btn-med-gray-flat text-xs px-0 uppercase" href="#" onclick="window.revisitCkyConsent()">Cookies</a>
</div>
<div class="flex-none lg:mr-14 mt-4 sm:my-0 text-left mx-auto">
<div style="display: flex; flex-direction: row; gap: 0.5rem; align-items: center;">
<span class="fa fa-translate" style="font-size: 1.25rem; color: rgb(174, 174, 174);" aria-hidden="true"></span>
<select
id="footer_language_selector"
style="font-size: 0.75rem; color: rgb(139, 139, 139); padding: 0.5rem; padding-right: 30px; width: auto;"
title="Language"
>
<option value="de" >Deutsch</option>
<option value="en" selected>English</option>
<option value="es" >español</option>
<option value="fr" >français</option>
<option value="it" >italiano</option>
<option value="nl" >Nederlands</option>
<option value="pt" >português</option>
</select>
<script type="module">
const selector = document.getElementById("footer_language_selector");
selector.addEventListener("change", ev => {
const queryParams = new URLSearchParams(document.location.search);
queryParams.delete("override_locale");
queryParams.set("locale", ev.target.value);
document.location.search = "?" + queryParams.toString();
});
</script>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<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>
</html>