sclass ServerMechLists extends VirtualMechLists {
  S mL_raw(S listName) {
    ret main.mL_raw(listName);
  }
  
  void append(S listName, S text) {
    botAppendToMechList(listName, text);
  }
  
  void setText(S listName, S text) {
    botEditMechList(listName, text);
  }
}