Police are looking for a serial bank robber believed to be responsible for three bank robberies and one attempted robbery in Aurora and Denver, the FBI Denver Division said Monday.
Cody Giron, 21, is believed to have robbed a TCF Bank in Aurora on Nov. 6 and two Chase Banks in Aurora on Oct. 26 and Oct. 30. He is also suspected of an attempted robbery at a Denver Chase Bank on Nov. 5.
During the robberies, Giron allegedly presented the tellers with a note demanding money and then fled the banks. No weapon was mentioned or displayed.
Giron is a white male, approximately 5-feet-8-inches tall, with a medium build.
In each of the robberies, Giron wore a black, hooded jacket. He’s been seen wearing an orange Denver Broncos baseball hat, a black and white patterned face mask and a blue and orange Colorado hat.
The search is being led by the FBI Rocky Mountain Safe Streets Task Force, the Denver Police Department and the Aurora Police Department.
Police ask people to be on the lookout for anyone matching this description who recently changed their spending habits or discussed coming into money.
Bank robbery is punishable by up to 20 years in prison for each offense.
Anyone with information about the robberies is asked to call the FBI Rocky Mountain Safe Streets Task Force at 303-629-7171 or the Metro Denver Crime Stoppers at 720-913-7867.
Crime stopper tipsters can remain anonymous and are eligible for a reward of up to $2,000.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}