public static string eax(this SosController sosController)
 {
     try
     {
         sosController.setController();
         var eax = "!dso".sosExec().split_onLines()[2]
                   .split(" ")
                   .removeEmpty()
                   .second();
         return(eax);
     }
     catch (Exception ex)
     {
         "Prob getting eax".error();
         return(null);
     }
 }