function getTotalSells(arr) {
var out = 0;
Object.keys(arr).map(function( prop ) {
out += arr[prop].sells
});
return out;
}
function getTotalReturns(arr) {
var out = 0;
Object.keys(arr).map(function( prop ) {
out += arr[prop].returns
});
return out;
}function getAllTotalSells(arr) {
getTotalSells(arr) - getTotalReturns(arr)
}
function a() {
return handlebars.helpers.b()
}
function b() {
return 'bbbbbbbbbbbbbbbbb'
}