# Each line that's not blank and doesn't begin with a '#' will be treated
# as a regular expression pattern and replacement string, separated by a
# " -> " (spaces around the arrow). Each replacement will be performed
# when importing treatment summary data. Searching is case-sensitive (but
# can be controlled via Pattern flags). Spaces are *not* trimmed off of
# each line, allowing the replacement string to have trailing spaces so
# that it can, for instance, match the length of the search pattern.
# 
# The Pattern syntax is specified by
#    https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html
 
# A simple text-replace example:
# (do note all the trailing spaces after "MSC:" to make it the same length)
# 
# Maximum Sustained Coherence: -> MSC:                        

# This is a more advanced example, showing how you can use 
# regular expression syntax and capturing groups in replacements:
# 
# Maximum Sustained (Power|Coherence): -> $1 Max Sustained:

# Uncomment the below two lines (remove the '#' characters) to replace µ (micro) and ² (superscript)
# characters in the treatment summary with ASCII equivalents. These characters
# are missing from many non-Western fonts, and can cause display issues.

# µ -> u
# ² -> ^2

# Write your own replacements below this line, remembering that they
# shouldn't start with '#'

static impedance [^:] -> Static Impedance:
