vestaColors = function(){
let arr = [];
const c = function(specifier) {
var n = specifier.length / 6 | 0, colors = new Array(n), i = 0;
while (i < n) colors[i] = "#" + specifier.slice(i * 6, ++i * 6);
return colors;
}
const cols = c("009fe3fee9001c427ee73458ff862d512d6d");
return cols;
}