^start of line
.*any character (except for line terminators), repeated any number of times
time:the literal text time: (case sensitive) \s*any whitespace character, repeated any number of times
\[the literal [ (9110 / 1338 / 5B16)
Group low(?<low>\d+\.?\d*) \d+a digit, repeated at least once
\.?optionally matches the literal . (4610 / 568 / 2E16)
\d*a digit, repeated any number of times
\sany whitespace character
Non-Capturing Group(?:\w{1,2}) \w{1,2}any word character, repeated between 1 and 2 times
\sany whitespace character
Group value(?<value>\d+\.?\d*) \d+a digit, repeated at least once
\.?optionally matches the literal . (4610 / 568 / 2E16)
\d*a digit, repeated any number of times
\sany whitespace character
Group unit(?<unit>\w{1,2}) \w{1,2}any word character, repeated between 1 and 2 times
\sany whitespace character
Group high(?<high>\d+\.?\d*) \d+a digit, repeated at least once
\.?optionally matches the literal . (4610 / 568 / 2E16)
\d*a digit, repeated any number of times
.*any character (except for line terminators), repeated any number of times
$end of line
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
g modifier: global. Finds all matches instead of stopping after the first