local Count = {} function Count:__index(key) self[key] = 0 return 0 end function Count:new() return setmetatable({}, self) end return Count