recognizeServer function
Implementation
String recognizeServer(int uid) {
var server = servers[uid.toString()[0]];
if (server != null) {
return server;
} else {
print("UID $uid isn't associated with any server");
throw Error();
}
}