diff --git a/bin/foamCreateBashCompletions b/bin/foamCreateBashCompletions
index 4171229c73e30d491b8c1790e6e7c677e6a3513f..1c6a76cdcc347ddad6d67abd944124229938e670 100755
--- a/bin/foamCreateBashCompletions
+++ b/bin/foamCreateBashCompletions
@@ -82,8 +82,8 @@ touch $outFile
 writeFilterFunction()
 {
     cat<< WRITEFILTER >> $1
-unset -f _filter_opts 2>/dev/null
-_filter_opts()
+unset -f _of_filter_opts 2>/dev/null
+_of_filter_opts()
 {
     local allOpts=\$1
     local applied=\$2
@@ -166,8 +166,8 @@ do
         opts=($(awk '/^ {0,4}-[a-z]/ && !/</ {print $1}' <<< "$appHelp"))
 
         cat<<WRITECOMPLETION >> $outFile
-unset -f _${appName} 2>/dev/null
-_${appName}()
+unset -f _of_${appName} 2>/dev/null
+_of_${appName}()
 {
     local cur="\${COMP_WORDS[COMP_CWORD]}"
     local prev="\${COMP_WORDS[COMP_CWORD-1]}"
@@ -185,8 +185,8 @@ $(commonOptions ${optsWithArgs[@]})
                 COMPREPLY=(\$(compgen -f -- \${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=\$(_filter_opts "\${opts}" "\${COMP_LINE}")
-                optsWithArgs=\$(_filter_opts "\${optsWithArgs}" "\${COMP_LINE}")
+                opts=\$(_of_filter_opts "\${opts}" "\${COMP_LINE}")
+                optsWithArgs=\$(_of_filter_opts "\${optsWithArgs}" "\${COMP_LINE}")
                 COMPREPLY=(\$(compgen -W "\${opts} \${optsWithArgs}" -- \${cur}))
             fi
             ;;
@@ -194,7 +194,7 @@ $(commonOptions ${optsWithArgs[@]})
 
     return 0
 }
-complete -o nospace -F _${appName} $appName
+complete -o nospace -F _of_${appName} $appName
 
 WRITECOMPLETION
     done
diff --git a/etc/config.sh/bashcompletion b/etc/config.sh/bashcompletion
index d19b51ddd2db8b9faa1fdf517cc3230f5302bd14..b7b919e15d5f7f4d3be431880c5bd3594b2e12c7 100644
--- a/etc/config.sh/bashcompletion
+++ b/etc/config.sh/bashcompletion
@@ -1,8 +1,8 @@
 #----------------------------------*-sh-*--------------------------------------
 # Bash completions for OpenFOAM applications
 
-unset -f _filter_opts 2>/dev/null
-_filter_opts()
+unset -f _of_filter_opts 2>/dev/null
+_of_filter_opts()
 {
     local allOpts=$1
     local applied=$2
@@ -11,8 +11,8 @@ _filter_opts()
     done
 }
 
-unset -f _adiabaticFlameT 2>/dev/null
-_adiabaticFlameT()
+unset -f _of_adiabaticFlameT 2>/dev/null
+_of_adiabaticFlameT()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -32,8 +32,8 @@ _adiabaticFlameT()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -41,10 +41,10 @@ _adiabaticFlameT()
 
     return 0
 }
-complete -o nospace -F _adiabaticFlameT adiabaticFlameT
+complete -o nospace -F _of_adiabaticFlameT adiabaticFlameT
 
-unset -f _adjointShapeOptimizationFoam 2>/dev/null
-_adjointShapeOptimizationFoam()
+unset -f _of_adjointShapeOptimizationFoam 2>/dev/null
+_of_adjointShapeOptimizationFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -67,8 +67,8 @@ _adjointShapeOptimizationFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -76,10 +76,10 @@ _adjointShapeOptimizationFoam()
 
     return 0
 }
-complete -o nospace -F _adjointShapeOptimizationFoam adjointShapeOptimizationFoam
+complete -o nospace -F _of_adjointShapeOptimizationFoam adjointShapeOptimizationFoam
 
-unset -f _ansysToFoam 2>/dev/null
-_ansysToFoam()
+unset -f _of_ansysToFoam 2>/dev/null
+_of_ansysToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -99,8 +99,8 @@ _ansysToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -108,10 +108,10 @@ _ansysToFoam()
 
     return 0
 }
-complete -o nospace -F _ansysToFoam ansysToFoam
+complete -o nospace -F _of_ansysToFoam ansysToFoam
 
-unset -f _applyBoundaryLayer 2>/dev/null
-_applyBoundaryLayer()
+unset -f _of_applyBoundaryLayer 2>/dev/null
+_of_applyBoundaryLayer()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -138,8 +138,8 @@ _applyBoundaryLayer()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -147,10 +147,10 @@ _applyBoundaryLayer()
 
     return 0
 }
-complete -o nospace -F _applyBoundaryLayer applyBoundaryLayer
+complete -o nospace -F _of_applyBoundaryLayer applyBoundaryLayer
 
-unset -f _attachMesh 2>/dev/null
-_attachMesh()
+unset -f _of_attachMesh 2>/dev/null
+_of_attachMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -170,8 +170,8 @@ _attachMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -179,10 +179,10 @@ _attachMesh()
 
     return 0
 }
-complete -o nospace -F _attachMesh attachMesh
+complete -o nospace -F _of_attachMesh attachMesh
 
-unset -f _autoPatch 2>/dev/null
-_autoPatch()
+unset -f _of_autoPatch 2>/dev/null
+_of_autoPatch()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -202,8 +202,8 @@ _autoPatch()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -211,10 +211,10 @@ _autoPatch()
 
     return 0
 }
-complete -o nospace -F _autoPatch autoPatch
+complete -o nospace -F _of_autoPatch autoPatch
 
-unset -f _blockMesh 2>/dev/null
-_blockMesh()
+unset -f _of_blockMesh 2>/dev/null
+_of_blockMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -238,8 +238,8 @@ _blockMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -247,10 +247,10 @@ _blockMesh()
 
     return 0
 }
-complete -o nospace -F _blockMesh blockMesh
+complete -o nospace -F _of_blockMesh blockMesh
 
-unset -f _boundaryFoam 2>/dev/null
-_boundaryFoam()
+unset -f _of_boundaryFoam 2>/dev/null
+_of_boundaryFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -270,8 +270,8 @@ _boundaryFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -279,10 +279,10 @@ _boundaryFoam()
 
     return 0
 }
-complete -o nospace -F _boundaryFoam boundaryFoam
+complete -o nospace -F _of_boundaryFoam boundaryFoam
 
-unset -f _boxTurb 2>/dev/null
-_boxTurb()
+unset -f _of_boxTurb 2>/dev/null
+_of_boxTurb()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -302,8 +302,8 @@ _boxTurb()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -311,10 +311,10 @@ _boxTurb()
 
     return 0
 }
-complete -o nospace -F _boxTurb boxTurb
+complete -o nospace -F _of_boxTurb boxTurb
 
-unset -f _buoyantBoussinesqPimpleFoam 2>/dev/null
-_buoyantBoussinesqPimpleFoam()
+unset -f _of_buoyantBoussinesqPimpleFoam 2>/dev/null
+_of_buoyantBoussinesqPimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -337,8 +337,8 @@ _buoyantBoussinesqPimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -346,10 +346,10 @@ _buoyantBoussinesqPimpleFoam()
 
     return 0
 }
-complete -o nospace -F _buoyantBoussinesqPimpleFoam buoyantBoussinesqPimpleFoam
+complete -o nospace -F _of_buoyantBoussinesqPimpleFoam buoyantBoussinesqPimpleFoam
 
-unset -f _buoyantBoussinesqSimpleFoam 2>/dev/null
-_buoyantBoussinesqSimpleFoam()
+unset -f _of_buoyantBoussinesqSimpleFoam 2>/dev/null
+_of_buoyantBoussinesqSimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -372,8 +372,8 @@ _buoyantBoussinesqSimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -381,10 +381,10 @@ _buoyantBoussinesqSimpleFoam()
 
     return 0
 }
-complete -o nospace -F _buoyantBoussinesqSimpleFoam buoyantBoussinesqSimpleFoam
+complete -o nospace -F _of_buoyantBoussinesqSimpleFoam buoyantBoussinesqSimpleFoam
 
-unset -f _buoyantPimpleFoam 2>/dev/null
-_buoyantPimpleFoam()
+unset -f _of_buoyantPimpleFoam 2>/dev/null
+_of_buoyantPimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -407,8 +407,8 @@ _buoyantPimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -416,10 +416,10 @@ _buoyantPimpleFoam()
 
     return 0
 }
-complete -o nospace -F _buoyantPimpleFoam buoyantPimpleFoam
+complete -o nospace -F _of_buoyantPimpleFoam buoyantPimpleFoam
 
-unset -f _buoyantSimpleFoam 2>/dev/null
-_buoyantSimpleFoam()
+unset -f _of_buoyantSimpleFoam 2>/dev/null
+_of_buoyantSimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -442,8 +442,8 @@ _buoyantSimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -451,10 +451,10 @@ _buoyantSimpleFoam()
 
     return 0
 }
-complete -o nospace -F _buoyantSimpleFoam buoyantSimpleFoam
+complete -o nospace -F _of_buoyantSimpleFoam buoyantSimpleFoam
 
-unset -f _cavitatingDyMFoam 2>/dev/null
-_cavitatingDyMFoam()
+unset -f _of_cavitatingDyMFoam 2>/dev/null
+_of_cavitatingDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -477,8 +477,8 @@ _cavitatingDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -486,10 +486,10 @@ _cavitatingDyMFoam()
 
     return 0
 }
-complete -o nospace -F _cavitatingDyMFoam cavitatingDyMFoam
+complete -o nospace -F _of_cavitatingDyMFoam cavitatingDyMFoam
 
-unset -f _cavitatingFoam 2>/dev/null
-_cavitatingFoam()
+unset -f _of_cavitatingFoam 2>/dev/null
+_of_cavitatingFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -512,8 +512,8 @@ _cavitatingFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -521,10 +521,10 @@ _cavitatingFoam()
 
     return 0
 }
-complete -o nospace -F _cavitatingFoam cavitatingFoam
+complete -o nospace -F _of_cavitatingFoam cavitatingFoam
 
-unset -f _cfx4ToFoam 2>/dev/null
-_cfx4ToFoam()
+unset -f _of_cfx4ToFoam 2>/dev/null
+_of_cfx4ToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -544,8 +544,8 @@ _cfx4ToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -553,10 +553,10 @@ _cfx4ToFoam()
 
     return 0
 }
-complete -o nospace -F _cfx4ToFoam cfx4ToFoam
+complete -o nospace -F _of_cfx4ToFoam cfx4ToFoam
 
-unset -f _changeDictionary 2>/dev/null
-_changeDictionary()
+unset -f _of_changeDictionary 2>/dev/null
+_of_changeDictionary()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -589,8 +589,8 @@ _changeDictionary()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -598,10 +598,10 @@ _changeDictionary()
 
     return 0
 }
-complete -o nospace -F _changeDictionary changeDictionary
+complete -o nospace -F _of_changeDictionary changeDictionary
 
-unset -f _checkMesh 2>/dev/null
-_checkMesh()
+unset -f _of_checkMesh 2>/dev/null
+_of_checkMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -631,8 +631,8 @@ _checkMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -640,10 +640,10 @@ _checkMesh()
 
     return 0
 }
-complete -o nospace -F _checkMesh checkMesh
+complete -o nospace -F _of_checkMesh checkMesh
 
-unset -f _chemFoam 2>/dev/null
-_chemFoam()
+unset -f _of_chemFoam 2>/dev/null
+_of_chemFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -663,8 +663,8 @@ _chemFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -672,10 +672,10 @@ _chemFoam()
 
     return 0
 }
-complete -o nospace -F _chemFoam chemFoam
+complete -o nospace -F _of_chemFoam chemFoam
 
-unset -f _chemkinToFoam 2>/dev/null
-_chemkinToFoam()
+unset -f _of_chemkinToFoam 2>/dev/null
+_of_chemkinToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -695,8 +695,8 @@ _chemkinToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -704,10 +704,10 @@ _chemkinToFoam()
 
     return 0
 }
-complete -o nospace -F _chemkinToFoam chemkinToFoam
+complete -o nospace -F _of_chemkinToFoam chemkinToFoam
 
-unset -f _chtMultiRegionFoam 2>/dev/null
-_chtMultiRegionFoam()
+unset -f _of_chtMultiRegionFoam 2>/dev/null
+_of_chtMultiRegionFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -730,8 +730,8 @@ _chtMultiRegionFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -739,10 +739,10 @@ _chtMultiRegionFoam()
 
     return 0
 }
-complete -o nospace -F _chtMultiRegionFoam chtMultiRegionFoam
+complete -o nospace -F _of_chtMultiRegionFoam chtMultiRegionFoam
 
-unset -f _chtMultiRegionSimpleFoam 2>/dev/null
-_chtMultiRegionSimpleFoam()
+unset -f _of_chtMultiRegionSimpleFoam 2>/dev/null
+_of_chtMultiRegionSimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -765,8 +765,8 @@ _chtMultiRegionSimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -774,10 +774,10 @@ _chtMultiRegionSimpleFoam()
 
     return 0
 }
-complete -o nospace -F _chtMultiRegionSimpleFoam chtMultiRegionSimpleFoam
+complete -o nospace -F _of_chtMultiRegionSimpleFoam chtMultiRegionSimpleFoam
 
-unset -f _coalChemistryFoam 2>/dev/null
-_coalChemistryFoam()
+unset -f _of_coalChemistryFoam 2>/dev/null
+_of_coalChemistryFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -800,8 +800,8 @@ _coalChemistryFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -809,10 +809,10 @@ _coalChemistryFoam()
 
     return 0
 }
-complete -o nospace -F _coalChemistryFoam coalChemistryFoam
+complete -o nospace -F _of_coalChemistryFoam coalChemistryFoam
 
-unset -f _coldEngineFoam 2>/dev/null
-_coldEngineFoam()
+unset -f _of_coldEngineFoam 2>/dev/null
+_of_coldEngineFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -835,8 +835,8 @@ _coldEngineFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -844,10 +844,10 @@ _coldEngineFoam()
 
     return 0
 }
-complete -o nospace -F _coldEngineFoam coldEngineFoam
+complete -o nospace -F _of_coldEngineFoam coldEngineFoam
 
-unset -f _collapseEdges 2>/dev/null
-_collapseEdges()
+unset -f _of_collapseEdges 2>/dev/null
+_of_collapseEdges()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -873,8 +873,8 @@ _collapseEdges()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -882,10 +882,10 @@ _collapseEdges()
 
     return 0
 }
-complete -o nospace -F _collapseEdges collapseEdges
+complete -o nospace -F _of_collapseEdges collapseEdges
 
-unset -f _combinePatchFaces 2>/dev/null
-_combinePatchFaces()
+unset -f _of_combinePatchFaces 2>/dev/null
+_of_combinePatchFaces()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -908,8 +908,8 @@ _combinePatchFaces()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -917,10 +917,10 @@ _combinePatchFaces()
 
     return 0
 }
-complete -o nospace -F _combinePatchFaces combinePatchFaces
+complete -o nospace -F _of_combinePatchFaces combinePatchFaces
 
-unset -f _compressibleInterDyMFoam 2>/dev/null
-_compressibleInterDyMFoam()
+unset -f _of_compressibleInterDyMFoam 2>/dev/null
+_of_compressibleInterDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -943,8 +943,8 @@ _compressibleInterDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -952,10 +952,10 @@ _compressibleInterDyMFoam()
 
     return 0
 }
-complete -o nospace -F _compressibleInterDyMFoam compressibleInterDyMFoam
+complete -o nospace -F _of_compressibleInterDyMFoam compressibleInterDyMFoam
 
-unset -f _compressibleInterFoam 2>/dev/null
-_compressibleInterFoam()
+unset -f _of_compressibleInterFoam 2>/dev/null
+_of_compressibleInterFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -978,8 +978,8 @@ _compressibleInterFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -987,10 +987,10 @@ _compressibleInterFoam()
 
     return 0
 }
-complete -o nospace -F _compressibleInterFoam compressibleInterFoam
+complete -o nospace -F _of_compressibleInterFoam compressibleInterFoam
 
-unset -f _compressibleMultiphaseInterFoam 2>/dev/null
-_compressibleMultiphaseInterFoam()
+unset -f _of_compressibleMultiphaseInterFoam 2>/dev/null
+_of_compressibleMultiphaseInterFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1013,8 +1013,8 @@ _compressibleMultiphaseInterFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1022,10 +1022,10 @@ _compressibleMultiphaseInterFoam()
 
     return 0
 }
-complete -o nospace -F _compressibleMultiphaseInterFoam compressibleMultiphaseInterFoam
+complete -o nospace -F _of_compressibleMultiphaseInterFoam compressibleMultiphaseInterFoam
 
-unset -f _createBaffles 2>/dev/null
-_createBaffles()
+unset -f _of_createBaffles 2>/dev/null
+_of_createBaffles()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1052,8 +1052,8 @@ _createBaffles()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1061,10 +1061,10 @@ _createBaffles()
 
     return 0
 }
-complete -o nospace -F _createBaffles createBaffles
+complete -o nospace -F _of_createBaffles createBaffles
 
-unset -f _createExternalCoupledPatchGeometry 2>/dev/null
-_createExternalCoupledPatchGeometry()
+unset -f _of_createExternalCoupledPatchGeometry 2>/dev/null
+_of_createExternalCoupledPatchGeometry()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1091,8 +1091,8 @@ _createExternalCoupledPatchGeometry()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1100,10 +1100,10 @@ _createExternalCoupledPatchGeometry()
 
     return 0
 }
-complete -o nospace -F _createExternalCoupledPatchGeometry createExternalCoupledPatchGeometry
+complete -o nospace -F _of_createExternalCoupledPatchGeometry createExternalCoupledPatchGeometry
 
-unset -f _createPatch 2>/dev/null
-_createPatch()
+unset -f _of_createPatch 2>/dev/null
+_of_createPatch()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1130,8 +1130,8 @@ _createPatch()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1139,10 +1139,10 @@ _createPatch()
 
     return 0
 }
-complete -o nospace -F _createPatch createPatch
+complete -o nospace -F _of_createPatch createPatch
 
-unset -f _createZeroDirectory 2>/dev/null
-_createZeroDirectory()
+unset -f _of_createZeroDirectory 2>/dev/null
+_of_createZeroDirectory()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1165,8 +1165,8 @@ _createZeroDirectory()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1174,10 +1174,10 @@ _createZeroDirectory()
 
     return 0
 }
-complete -o nospace -F _createZeroDirectory createZeroDirectory
+complete -o nospace -F _of_createZeroDirectory createZeroDirectory
 
-unset -f _datToFoam 2>/dev/null
-_datToFoam()
+unset -f _of_datToFoam 2>/dev/null
+_of_datToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1197,8 +1197,8 @@ _datToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1206,10 +1206,10 @@ _datToFoam()
 
     return 0
 }
-complete -o nospace -F _datToFoam datToFoam
+complete -o nospace -F _of_datToFoam datToFoam
 
-unset -f _decomposePar 2>/dev/null
-_decomposePar()
+unset -f _of_decomposePar 2>/dev/null
+_of_decomposePar()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1239,8 +1239,8 @@ _decomposePar()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1248,10 +1248,10 @@ _decomposePar()
 
     return 0
 }
-complete -o nospace -F _decomposePar decomposePar
+complete -o nospace -F _of_decomposePar decomposePar
 
-unset -f _deformedGeom 2>/dev/null
-_deformedGeom()
+unset -f _of_deformedGeom 2>/dev/null
+_of_deformedGeom()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1274,8 +1274,8 @@ _deformedGeom()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1283,10 +1283,10 @@ _deformedGeom()
 
     return 0
 }
-complete -o nospace -F _deformedGeom deformedGeom
+complete -o nospace -F _of_deformedGeom deformedGeom
 
-unset -f _dnsFoam 2>/dev/null
-_dnsFoam()
+unset -f _of_dnsFoam 2>/dev/null
+_of_dnsFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1309,8 +1309,8 @@ _dnsFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1318,10 +1318,10 @@ _dnsFoam()
 
     return 0
 }
-complete -o nospace -F _dnsFoam dnsFoam
+complete -o nospace -F _of_dnsFoam dnsFoam
 
-unset -f _DPMDyMFoam 2>/dev/null
-_DPMDyMFoam()
+unset -f _of_DPMDyMFoam 2>/dev/null
+_of_DPMDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1344,8 +1344,8 @@ _DPMDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1353,10 +1353,10 @@ _DPMDyMFoam()
 
     return 0
 }
-complete -o nospace -F _DPMDyMFoam DPMDyMFoam
+complete -o nospace -F _of_DPMDyMFoam DPMDyMFoam
 
-unset -f _DPMFoam 2>/dev/null
-_DPMFoam()
+unset -f _of_DPMFoam 2>/dev/null
+_of_DPMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1379,8 +1379,8 @@ _DPMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1388,10 +1388,10 @@ _DPMFoam()
 
     return 0
 }
-complete -o nospace -F _DPMFoam DPMFoam
+complete -o nospace -F _of_DPMFoam DPMFoam
 
-unset -f _driftFluxFoam 2>/dev/null
-_driftFluxFoam()
+unset -f _of_driftFluxFoam 2>/dev/null
+_of_driftFluxFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1414,8 +1414,8 @@ _driftFluxFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1423,10 +1423,10 @@ _driftFluxFoam()
 
     return 0
 }
-complete -o nospace -F _driftFluxFoam driftFluxFoam
+complete -o nospace -F _of_driftFluxFoam driftFluxFoam
 
-unset -f _dsmcFoam 2>/dev/null
-_dsmcFoam()
+unset -f _of_dsmcFoam 2>/dev/null
+_of_dsmcFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1449,8 +1449,8 @@ _dsmcFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1458,10 +1458,10 @@ _dsmcFoam()
 
     return 0
 }
-complete -o nospace -F _dsmcFoam dsmcFoam
+complete -o nospace -F _of_dsmcFoam dsmcFoam
 
-unset -f _dsmcInitialise 2>/dev/null
-_dsmcInitialise()
+unset -f _of_dsmcInitialise 2>/dev/null
+_of_dsmcInitialise()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1484,8 +1484,8 @@ _dsmcInitialise()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1493,10 +1493,10 @@ _dsmcInitialise()
 
     return 0
 }
-complete -o nospace -F _dsmcInitialise dsmcInitialise
+complete -o nospace -F _of_dsmcInitialise dsmcInitialise
 
-unset -f _electrostaticFoam 2>/dev/null
-_electrostaticFoam()
+unset -f _of_electrostaticFoam 2>/dev/null
+_of_electrostaticFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1519,8 +1519,8 @@ _electrostaticFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1528,10 +1528,10 @@ _electrostaticFoam()
 
     return 0
 }
-complete -o nospace -F _electrostaticFoam electrostaticFoam
+complete -o nospace -F _of_electrostaticFoam electrostaticFoam
 
-unset -f _engineCompRatio 2>/dev/null
-_engineCompRatio()
+unset -f _of_engineCompRatio 2>/dev/null
+_of_engineCompRatio()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1554,8 +1554,8 @@ _engineCompRatio()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1563,10 +1563,10 @@ _engineCompRatio()
 
     return 0
 }
-complete -o nospace -F _engineCompRatio engineCompRatio
+complete -o nospace -F _of_engineCompRatio engineCompRatio
 
-unset -f _engineFoam 2>/dev/null
-_engineFoam()
+unset -f _of_engineFoam 2>/dev/null
+_of_engineFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1589,8 +1589,8 @@ _engineFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1598,10 +1598,10 @@ _engineFoam()
 
     return 0
 }
-complete -o nospace -F _engineFoam engineFoam
+complete -o nospace -F _of_engineFoam engineFoam
 
-unset -f _engineSwirl 2>/dev/null
-_engineSwirl()
+unset -f _of_engineSwirl 2>/dev/null
+_of_engineSwirl()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1624,8 +1624,8 @@ _engineSwirl()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1633,10 +1633,10 @@ _engineSwirl()
 
     return 0
 }
-complete -o nospace -F _engineSwirl engineSwirl
+complete -o nospace -F _of_engineSwirl engineSwirl
 
-unset -f _equilibriumCO 2>/dev/null
-_equilibriumCO()
+unset -f _of_equilibriumCO 2>/dev/null
+_of_equilibriumCO()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1656,8 +1656,8 @@ _equilibriumCO()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1665,10 +1665,10 @@ _equilibriumCO()
 
     return 0
 }
-complete -o nospace -F _equilibriumCO equilibriumCO
+complete -o nospace -F _of_equilibriumCO equilibriumCO
 
-unset -f _equilibriumFlameT 2>/dev/null
-_equilibriumFlameT()
+unset -f _of_equilibriumFlameT 2>/dev/null
+_of_equilibriumFlameT()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1688,8 +1688,8 @@ _equilibriumFlameT()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1697,10 +1697,10 @@ _equilibriumFlameT()
 
     return 0
 }
-complete -o nospace -F _equilibriumFlameT equilibriumFlameT
+complete -o nospace -F _of_equilibriumFlameT equilibriumFlameT
 
-unset -f _extrude2DMesh 2>/dev/null
-_extrude2DMesh()
+unset -f _of_extrude2DMesh 2>/dev/null
+_of_extrude2DMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1723,8 +1723,8 @@ _extrude2DMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1732,10 +1732,10 @@ _extrude2DMesh()
 
     return 0
 }
-complete -o nospace -F _extrude2DMesh extrude2DMesh
+complete -o nospace -F _of_extrude2DMesh extrude2DMesh
 
-unset -f _extrudeMesh 2>/dev/null
-_extrudeMesh()
+unset -f _of_extrudeMesh 2>/dev/null
+_of_extrudeMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1762,8 +1762,8 @@ _extrudeMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1771,10 +1771,10 @@ _extrudeMesh()
 
     return 0
 }
-complete -o nospace -F _extrudeMesh extrudeMesh
+complete -o nospace -F _of_extrudeMesh extrudeMesh
 
-unset -f _extrudeToRegionMesh 2>/dev/null
-_extrudeToRegionMesh()
+unset -f _of_extrudeToRegionMesh 2>/dev/null
+_of_extrudeToRegionMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1801,8 +1801,8 @@ _extrudeToRegionMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1810,10 +1810,10 @@ _extrudeToRegionMesh()
 
     return 0
 }
-complete -o nospace -F _extrudeToRegionMesh extrudeToRegionMesh
+complete -o nospace -F _of_extrudeToRegionMesh extrudeToRegionMesh
 
-unset -f _faceAgglomerate 2>/dev/null
-_faceAgglomerate()
+unset -f _of_faceAgglomerate 2>/dev/null
+_of_faceAgglomerate()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1840,8 +1840,8 @@ _faceAgglomerate()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1849,10 +1849,10 @@ _faceAgglomerate()
 
     return 0
 }
-complete -o nospace -F _faceAgglomerate faceAgglomerate
+complete -o nospace -F _of_faceAgglomerate faceAgglomerate
 
-unset -f _financialFoam 2>/dev/null
-_financialFoam()
+unset -f _of_financialFoam 2>/dev/null
+_of_financialFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1875,8 +1875,8 @@ _financialFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1884,10 +1884,10 @@ _financialFoam()
 
     return 0
 }
-complete -o nospace -F _financialFoam financialFoam
+complete -o nospace -F _of_financialFoam financialFoam
 
-unset -f _fireFoam 2>/dev/null
-_fireFoam()
+unset -f _of_fireFoam 2>/dev/null
+_of_fireFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1910,8 +1910,8 @@ _fireFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1919,10 +1919,10 @@ _fireFoam()
 
     return 0
 }
-complete -o nospace -F _fireFoam fireFoam
+complete -o nospace -F _of_fireFoam fireFoam
 
-unset -f _fireToFoam 2>/dev/null
-_fireToFoam()
+unset -f _of_fireToFoam 2>/dev/null
+_of_fireToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1942,8 +1942,8 @@ _fireToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1951,10 +1951,10 @@ _fireToFoam()
 
     return 0
 }
-complete -o nospace -F _fireToFoam fireToFoam
+complete -o nospace -F _of_fireToFoam fireToFoam
 
-unset -f _flattenMesh 2>/dev/null
-_flattenMesh()
+unset -f _of_flattenMesh 2>/dev/null
+_of_flattenMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -1977,8 +1977,8 @@ _flattenMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -1986,10 +1986,10 @@ _flattenMesh()
 
     return 0
 }
-complete -o nospace -F _flattenMesh flattenMesh
+complete -o nospace -F _of_flattenMesh flattenMesh
 
-unset -f _fluent3DMeshToFoam 2>/dev/null
-_fluent3DMeshToFoam()
+unset -f _of_fluent3DMeshToFoam 2>/dev/null
+_of_fluent3DMeshToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2009,8 +2009,8 @@ _fluent3DMeshToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2018,10 +2018,10 @@ _fluent3DMeshToFoam()
 
     return 0
 }
-complete -o nospace -F _fluent3DMeshToFoam fluent3DMeshToFoam
+complete -o nospace -F _of_fluent3DMeshToFoam fluent3DMeshToFoam
 
-unset -f _fluentMeshToFoam 2>/dev/null
-_fluentMeshToFoam()
+unset -f _of_fluentMeshToFoam 2>/dev/null
+_of_fluentMeshToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2041,8 +2041,8 @@ _fluentMeshToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2050,10 +2050,10 @@ _fluentMeshToFoam()
 
     return 0
 }
-complete -o nospace -F _fluentMeshToFoam fluentMeshToFoam
+complete -o nospace -F _of_fluentMeshToFoam fluentMeshToFoam
 
-unset -f _foamDataToFluent 2>/dev/null
-_foamDataToFluent()
+unset -f _of_foamDataToFluent 2>/dev/null
+_of_foamDataToFluent()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2076,8 +2076,8 @@ _foamDataToFluent()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2085,10 +2085,10 @@ _foamDataToFluent()
 
     return 0
 }
-complete -o nospace -F _foamDataToFluent foamDataToFluent
+complete -o nospace -F _of_foamDataToFluent foamDataToFluent
 
-unset -f _foamDictionary 2>/dev/null
-_foamDictionary()
+unset -f _of_foamDictionary 2>/dev/null
+_of_foamDictionary()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2111,8 +2111,8 @@ _foamDictionary()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2120,10 +2120,10 @@ _foamDictionary()
 
     return 0
 }
-complete -o nospace -F _foamDictionary foamDictionary
+complete -o nospace -F _of_foamDictionary foamDictionary
 
-unset -f _foamFormatConvert 2>/dev/null
-_foamFormatConvert()
+unset -f _of_foamFormatConvert 2>/dev/null
+_of_foamFormatConvert()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2153,8 +2153,8 @@ _foamFormatConvert()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2162,10 +2162,10 @@ _foamFormatConvert()
 
     return 0
 }
-complete -o nospace -F _foamFormatConvert foamFormatConvert
+complete -o nospace -F _of_foamFormatConvert foamFormatConvert
 
-unset -f _foamHelp 2>/dev/null
-_foamHelp()
+unset -f _of_foamHelp 2>/dev/null
+_of_foamHelp()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2192,8 +2192,8 @@ _foamHelp()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2201,10 +2201,10 @@ _foamHelp()
 
     return 0
 }
-complete -o nospace -F _foamHelp foamHelp
+complete -o nospace -F _of_foamHelp foamHelp
 
-unset -f _foamList 2>/dev/null
-_foamList()
+unset -f _of_foamList 2>/dev/null
+_of_foamList()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2224,8 +2224,8 @@ _foamList()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2233,10 +2233,10 @@ _foamList()
 
     return 0
 }
-complete -o nospace -F _foamList foamList
+complete -o nospace -F _of_foamList foamList
 
-unset -f _foamListTimes 2>/dev/null
-_foamListTimes()
+unset -f _of_foamListTimes 2>/dev/null
+_of_foamListTimes()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2259,8 +2259,8 @@ _foamListTimes()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2268,10 +2268,10 @@ _foamListTimes()
 
     return 0
 }
-complete -o nospace -F _foamListTimes foamListTimes
+complete -o nospace -F _of_foamListTimes foamListTimes
 
-unset -f _foamMeshToFluent 2>/dev/null
-_foamMeshToFluent()
+unset -f _of_foamMeshToFluent 2>/dev/null
+_of_foamMeshToFluent()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2291,8 +2291,8 @@ _foamMeshToFluent()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2300,10 +2300,10 @@ _foamMeshToFluent()
 
     return 0
 }
-complete -o nospace -F _foamMeshToFluent foamMeshToFluent
+complete -o nospace -F _of_foamMeshToFluent foamMeshToFluent
 
-unset -f _foamToEnsight 2>/dev/null
-_foamToEnsight()
+unset -f _of_foamToEnsight 2>/dev/null
+_of_foamToEnsight()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2333,8 +2333,8 @@ _foamToEnsight()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2342,10 +2342,10 @@ _foamToEnsight()
 
     return 0
 }
-complete -o nospace -F _foamToEnsight foamToEnsight
+complete -o nospace -F _of_foamToEnsight foamToEnsight
 
-unset -f _foamToEnsightParts 2>/dev/null
-_foamToEnsightParts()
+unset -f _of_foamToEnsightParts 2>/dev/null
+_of_foamToEnsightParts()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2368,8 +2368,8 @@ _foamToEnsightParts()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2377,10 +2377,10 @@ _foamToEnsightParts()
 
     return 0
 }
-complete -o nospace -F _foamToEnsightParts foamToEnsightParts
+complete -o nospace -F _of_foamToEnsightParts foamToEnsightParts
 
-unset -f _foamToFireMesh 2>/dev/null
-_foamToFireMesh()
+unset -f _of_foamToFireMesh 2>/dev/null
+_of_foamToFireMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2403,8 +2403,8 @@ _foamToFireMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2412,10 +2412,10 @@ _foamToFireMesh()
 
     return 0
 }
-complete -o nospace -F _foamToFireMesh foamToFireMesh
+complete -o nospace -F _of_foamToFireMesh foamToFireMesh
 
-unset -f _foamToGMV 2>/dev/null
-_foamToGMV()
+unset -f _of_foamToGMV 2>/dev/null
+_of_foamToGMV()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2438,8 +2438,8 @@ _foamToGMV()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2447,10 +2447,10 @@ _foamToGMV()
 
     return 0
 }
-complete -o nospace -F _foamToGMV foamToGMV
+complete -o nospace -F _of_foamToGMV foamToGMV
 
-unset -f _foamToStarMesh 2>/dev/null
-_foamToStarMesh()
+unset -f _of_foamToStarMesh 2>/dev/null
+_of_foamToStarMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2473,8 +2473,8 @@ _foamToStarMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2482,10 +2482,10 @@ _foamToStarMesh()
 
     return 0
 }
-complete -o nospace -F _foamToStarMesh foamToStarMesh
+complete -o nospace -F _of_foamToStarMesh foamToStarMesh
 
-unset -f _foamToSurface 2>/dev/null
-_foamToSurface()
+unset -f _of_foamToSurface 2>/dev/null
+_of_foamToSurface()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2508,8 +2508,8 @@ _foamToSurface()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2517,10 +2517,10 @@ _foamToSurface()
 
     return 0
 }
-complete -o nospace -F _foamToSurface foamToSurface
+complete -o nospace -F _of_foamToSurface foamToSurface
 
-unset -f _foamToTetDualMesh 2>/dev/null
-_foamToTetDualMesh()
+unset -f _of_foamToTetDualMesh 2>/dev/null
+_of_foamToTetDualMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2546,8 +2546,8 @@ _foamToTetDualMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2555,10 +2555,10 @@ _foamToTetDualMesh()
 
     return 0
 }
-complete -o nospace -F _foamToTetDualMesh foamToTetDualMesh
+complete -o nospace -F _of_foamToTetDualMesh foamToTetDualMesh
 
-unset -f _foamToVTK 2>/dev/null
-_foamToVTK()
+unset -f _of_foamToVTK 2>/dev/null
+_of_foamToVTK()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2588,8 +2588,8 @@ _foamToVTK()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2597,10 +2597,10 @@ _foamToVTK()
 
     return 0
 }
-complete -o nospace -F _foamToVTK foamToVTK
+complete -o nospace -F _of_foamToVTK foamToVTK
 
-unset -f _foamUpgradeCyclics 2>/dev/null
-_foamUpgradeCyclics()
+unset -f _of_foamUpgradeCyclics 2>/dev/null
+_of_foamUpgradeCyclics()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2630,8 +2630,8 @@ _foamUpgradeCyclics()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2639,10 +2639,10 @@ _foamUpgradeCyclics()
 
     return 0
 }
-complete -o nospace -F _foamUpgradeCyclics foamUpgradeCyclics
+complete -o nospace -F _of_foamUpgradeCyclics foamUpgradeCyclics
 
-unset -f _foamyHexMesh 2>/dev/null
-_foamyHexMesh()
+unset -f _of_foamyHexMesh 2>/dev/null
+_of_foamyHexMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2665,8 +2665,8 @@ _foamyHexMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2674,10 +2674,10 @@ _foamyHexMesh()
 
     return 0
 }
-complete -o nospace -F _foamyHexMesh foamyHexMesh
+complete -o nospace -F _of_foamyHexMesh foamyHexMesh
 
-unset -f _foamyQuadMesh 2>/dev/null
-_foamyQuadMesh()
+unset -f _of_foamyQuadMesh 2>/dev/null
+_of_foamyQuadMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2697,8 +2697,8 @@ _foamyQuadMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2706,10 +2706,10 @@ _foamyQuadMesh()
 
     return 0
 }
-complete -o nospace -F _foamyQuadMesh foamyQuadMesh
+complete -o nospace -F _of_foamyQuadMesh foamyQuadMesh
 
-unset -f _gambitToFoam 2>/dev/null
-_gambitToFoam()
+unset -f _of_gambitToFoam 2>/dev/null
+_of_gambitToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2729,8 +2729,8 @@ _gambitToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2738,10 +2738,10 @@ _gambitToFoam()
 
     return 0
 }
-complete -o nospace -F _gambitToFoam gambitToFoam
+complete -o nospace -F _of_gambitToFoam gambitToFoam
 
-unset -f _gmshToFoam 2>/dev/null
-_gmshToFoam()
+unset -f _of_gmshToFoam 2>/dev/null
+_of_gmshToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2765,8 +2765,8 @@ _gmshToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2774,10 +2774,10 @@ _gmshToFoam()
 
     return 0
 }
-complete -o nospace -F _gmshToFoam gmshToFoam
+complete -o nospace -F _of_gmshToFoam gmshToFoam
 
-unset -f _icoFoam 2>/dev/null
-_icoFoam()
+unset -f _of_icoFoam 2>/dev/null
+_of_icoFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2800,8 +2800,8 @@ _icoFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2809,10 +2809,10 @@ _icoFoam()
 
     return 0
 }
-complete -o nospace -F _icoFoam icoFoam
+complete -o nospace -F _of_icoFoam icoFoam
 
-unset -f _icoUncoupledKinematicParcelDyMFoam 2>/dev/null
-_icoUncoupledKinematicParcelDyMFoam()
+unset -f _of_icoUncoupledKinematicParcelDyMFoam 2>/dev/null
+_of_icoUncoupledKinematicParcelDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2835,8 +2835,8 @@ _icoUncoupledKinematicParcelDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2844,10 +2844,10 @@ _icoUncoupledKinematicParcelDyMFoam()
 
     return 0
 }
-complete -o nospace -F _icoUncoupledKinematicParcelDyMFoam icoUncoupledKinematicParcelDyMFoam
+complete -o nospace -F _of_icoUncoupledKinematicParcelDyMFoam icoUncoupledKinematicParcelDyMFoam
 
-unset -f _icoUncoupledKinematicParcelFoam 2>/dev/null
-_icoUncoupledKinematicParcelFoam()
+unset -f _of_icoUncoupledKinematicParcelFoam 2>/dev/null
+_of_icoUncoupledKinematicParcelFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2870,8 +2870,8 @@ _icoUncoupledKinematicParcelFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2879,10 +2879,10 @@ _icoUncoupledKinematicParcelFoam()
 
     return 0
 }
-complete -o nospace -F _icoUncoupledKinematicParcelFoam icoUncoupledKinematicParcelFoam
+complete -o nospace -F _of_icoUncoupledKinematicParcelFoam icoUncoupledKinematicParcelFoam
 
-unset -f _ideasUnvToFoam 2>/dev/null
-_ideasUnvToFoam()
+unset -f _of_ideasUnvToFoam 2>/dev/null
+_of_ideasUnvToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2902,8 +2902,8 @@ _ideasUnvToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2911,10 +2911,10 @@ _ideasUnvToFoam()
 
     return 0
 }
-complete -o nospace -F _ideasUnvToFoam ideasUnvToFoam
+complete -o nospace -F _of_ideasUnvToFoam ideasUnvToFoam
 
-unset -f _insideCells 2>/dev/null
-_insideCells()
+unset -f _of_insideCells 2>/dev/null
+_of_insideCells()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2937,8 +2937,8 @@ _insideCells()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2946,10 +2946,10 @@ _insideCells()
 
     return 0
 }
-complete -o nospace -F _insideCells insideCells
+complete -o nospace -F _of_insideCells insideCells
 
-unset -f _interCondensatingEvaporatingFoam 2>/dev/null
-_interCondensatingEvaporatingFoam()
+unset -f _of_interCondensatingEvaporatingFoam 2>/dev/null
+_of_interCondensatingEvaporatingFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -2972,8 +2972,8 @@ _interCondensatingEvaporatingFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -2981,10 +2981,10 @@ _interCondensatingEvaporatingFoam()
 
     return 0
 }
-complete -o nospace -F _interCondensatingEvaporatingFoam interCondensatingEvaporatingFoam
+complete -o nospace -F _of_interCondensatingEvaporatingFoam interCondensatingEvaporatingFoam
 
-unset -f _interDyMFoam 2>/dev/null
-_interDyMFoam()
+unset -f _of_interDyMFoam 2>/dev/null
+_of_interDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3007,8 +3007,8 @@ _interDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3016,10 +3016,10 @@ _interDyMFoam()
 
     return 0
 }
-complete -o nospace -F _interDyMFoam interDyMFoam
+complete -o nospace -F _of_interDyMFoam interDyMFoam
 
-unset -f _interFoam 2>/dev/null
-_interFoam()
+unset -f _of_interFoam 2>/dev/null
+_of_interFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3042,8 +3042,8 @@ _interFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3051,10 +3051,10 @@ _interFoam()
 
     return 0
 }
-complete -o nospace -F _interFoam interFoam
+complete -o nospace -F _of_interFoam interFoam
 
-unset -f _interMixingFoam 2>/dev/null
-_interMixingFoam()
+unset -f _of_interMixingFoam 2>/dev/null
+_of_interMixingFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3077,8 +3077,8 @@ _interMixingFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3086,10 +3086,10 @@ _interMixingFoam()
 
     return 0
 }
-complete -o nospace -F _interMixingFoam interMixingFoam
+complete -o nospace -F _of_interMixingFoam interMixingFoam
 
-unset -f _interPhaseChangeDyMFoam 2>/dev/null
-_interPhaseChangeDyMFoam()
+unset -f _of_interPhaseChangeDyMFoam 2>/dev/null
+_of_interPhaseChangeDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3112,8 +3112,8 @@ _interPhaseChangeDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3121,10 +3121,10 @@ _interPhaseChangeDyMFoam()
 
     return 0
 }
-complete -o nospace -F _interPhaseChangeDyMFoam interPhaseChangeDyMFoam
+complete -o nospace -F _of_interPhaseChangeDyMFoam interPhaseChangeDyMFoam
 
-unset -f _interPhaseChangeFoam 2>/dev/null
-_interPhaseChangeFoam()
+unset -f _of_interPhaseChangeFoam 2>/dev/null
+_of_interPhaseChangeFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3147,8 +3147,8 @@ _interPhaseChangeFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3156,10 +3156,10 @@ _interPhaseChangeFoam()
 
     return 0
 }
-complete -o nospace -F _interPhaseChangeFoam interPhaseChangeFoam
+complete -o nospace -F _of_interPhaseChangeFoam interPhaseChangeFoam
 
-unset -f _kivaToFoam 2>/dev/null
-_kivaToFoam()
+unset -f _of_kivaToFoam 2>/dev/null
+_of_kivaToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3179,8 +3179,8 @@ _kivaToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3188,10 +3188,10 @@ _kivaToFoam()
 
     return 0
 }
-complete -o nospace -F _kivaToFoam kivaToFoam
+complete -o nospace -F _of_kivaToFoam kivaToFoam
 
-unset -f _laplacianFoam 2>/dev/null
-_laplacianFoam()
+unset -f _of_laplacianFoam 2>/dev/null
+_of_laplacianFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3214,8 +3214,8 @@ _laplacianFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3223,10 +3223,10 @@ _laplacianFoam()
 
     return 0
 }
-complete -o nospace -F _laplacianFoam laplacianFoam
+complete -o nospace -F _of_laplacianFoam laplacianFoam
 
-unset -f _magneticFoam 2>/dev/null
-_magneticFoam()
+unset -f _of_magneticFoam 2>/dev/null
+_of_magneticFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3249,8 +3249,8 @@ _magneticFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3258,10 +3258,10 @@ _magneticFoam()
 
     return 0
 }
-complete -o nospace -F _magneticFoam magneticFoam
+complete -o nospace -F _of_magneticFoam magneticFoam
 
-unset -f _mapFields 2>/dev/null
-_mapFields()
+unset -f _of_mapFields 2>/dev/null
+_of_mapFields()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3287,8 +3287,8 @@ _mapFields()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3296,10 +3296,10 @@ _mapFields()
 
     return 0
 }
-complete -o nospace -F _mapFields mapFields
+complete -o nospace -F _of_mapFields mapFields
 
-unset -f _mapFieldsPar 2>/dev/null
-_mapFieldsPar()
+unset -f _of_mapFieldsPar 2>/dev/null
+_of_mapFieldsPar()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3322,8 +3322,8 @@ _mapFieldsPar()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3331,10 +3331,10 @@ _mapFieldsPar()
 
     return 0
 }
-complete -o nospace -F _mapFieldsPar mapFieldsPar
+complete -o nospace -F _of_mapFieldsPar mapFieldsPar
 
-unset -f _mdEquilibrationFoam 2>/dev/null
-_mdEquilibrationFoam()
+unset -f _of_mdEquilibrationFoam 2>/dev/null
+_of_mdEquilibrationFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3357,8 +3357,8 @@ _mdEquilibrationFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3366,10 +3366,10 @@ _mdEquilibrationFoam()
 
     return 0
 }
-complete -o nospace -F _mdEquilibrationFoam mdEquilibrationFoam
+complete -o nospace -F _of_mdEquilibrationFoam mdEquilibrationFoam
 
-unset -f _mdFoam 2>/dev/null
-_mdFoam()
+unset -f _of_mdFoam 2>/dev/null
+_of_mdFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3392,8 +3392,8 @@ _mdFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3401,10 +3401,10 @@ _mdFoam()
 
     return 0
 }
-complete -o nospace -F _mdFoam mdFoam
+complete -o nospace -F _of_mdFoam mdFoam
 
-unset -f _mdInitialise 2>/dev/null
-_mdInitialise()
+unset -f _of_mdInitialise 2>/dev/null
+_of_mdInitialise()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3427,8 +3427,8 @@ _mdInitialise()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3436,10 +3436,10 @@ _mdInitialise()
 
     return 0
 }
-complete -o nospace -F _mdInitialise mdInitialise
+complete -o nospace -F _of_mdInitialise mdInitialise
 
-unset -f _mergeMeshes 2>/dev/null
-_mergeMeshes()
+unset -f _of_mergeMeshes 2>/dev/null
+_of_mergeMeshes()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3462,8 +3462,8 @@ _mergeMeshes()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3471,10 +3471,10 @@ _mergeMeshes()
 
     return 0
 }
-complete -o nospace -F _mergeMeshes mergeMeshes
+complete -o nospace -F _of_mergeMeshes mergeMeshes
 
-unset -f _mergeOrSplitBaffles 2>/dev/null
-_mergeOrSplitBaffles()
+unset -f _of_mergeOrSplitBaffles 2>/dev/null
+_of_mergeOrSplitBaffles()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3501,8 +3501,8 @@ _mergeOrSplitBaffles()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3510,10 +3510,10 @@ _mergeOrSplitBaffles()
 
     return 0
 }
-complete -o nospace -F _mergeOrSplitBaffles mergeOrSplitBaffles
+complete -o nospace -F _of_mergeOrSplitBaffles mergeOrSplitBaffles
 
-unset -f _mhdFoam 2>/dev/null
-_mhdFoam()
+unset -f _of_mhdFoam 2>/dev/null
+_of_mhdFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3536,8 +3536,8 @@ _mhdFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3545,10 +3545,10 @@ _mhdFoam()
 
     return 0
 }
-complete -o nospace -F _mhdFoam mhdFoam
+complete -o nospace -F _of_mhdFoam mhdFoam
 
-unset -f _mirrorMesh 2>/dev/null
-_mirrorMesh()
+unset -f _of_mirrorMesh 2>/dev/null
+_of_mirrorMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3571,8 +3571,8 @@ _mirrorMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3580,10 +3580,10 @@ _mirrorMesh()
 
     return 0
 }
-complete -o nospace -F _mirrorMesh mirrorMesh
+complete -o nospace -F _of_mirrorMesh mirrorMesh
 
-unset -f _mixtureAdiabaticFlameT 2>/dev/null
-_mixtureAdiabaticFlameT()
+unset -f _of_mixtureAdiabaticFlameT 2>/dev/null
+_of_mixtureAdiabaticFlameT()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3603,8 +3603,8 @@ _mixtureAdiabaticFlameT()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3612,10 +3612,10 @@ _mixtureAdiabaticFlameT()
 
     return 0
 }
-complete -o nospace -F _mixtureAdiabaticFlameT mixtureAdiabaticFlameT
+complete -o nospace -F _of_mixtureAdiabaticFlameT mixtureAdiabaticFlameT
 
-unset -f _modifyMesh 2>/dev/null
-_modifyMesh()
+unset -f _of_modifyMesh 2>/dev/null
+_of_modifyMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3638,8 +3638,8 @@ _modifyMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3647,10 +3647,10 @@ _modifyMesh()
 
     return 0
 }
-complete -o nospace -F _modifyMesh modifyMesh
+complete -o nospace -F _of_modifyMesh modifyMesh
 
-unset -f _moveDynamicMesh 2>/dev/null
-_moveDynamicMesh()
+unset -f _of_moveDynamicMesh 2>/dev/null
+_of_moveDynamicMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3677,8 +3677,8 @@ _moveDynamicMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3686,10 +3686,10 @@ _moveDynamicMesh()
 
     return 0
 }
-complete -o nospace -F _moveDynamicMesh moveDynamicMesh
+complete -o nospace -F _of_moveDynamicMesh moveDynamicMesh
 
-unset -f _moveEngineMesh 2>/dev/null
-_moveEngineMesh()
+unset -f _of_moveEngineMesh 2>/dev/null
+_of_moveEngineMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3712,8 +3712,8 @@ _moveEngineMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3721,10 +3721,10 @@ _moveEngineMesh()
 
     return 0
 }
-complete -o nospace -F _moveEngineMesh moveEngineMesh
+complete -o nospace -F _of_moveEngineMesh moveEngineMesh
 
-unset -f _moveMesh 2>/dev/null
-_moveMesh()
+unset -f _of_moveMesh 2>/dev/null
+_of_moveMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3747,8 +3747,8 @@ _moveMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3756,10 +3756,10 @@ _moveMesh()
 
     return 0
 }
-complete -o nospace -F _moveMesh moveMesh
+complete -o nospace -F _of_moveMesh moveMesh
 
-unset -f _MPPICDyMFoam 2>/dev/null
-_MPPICDyMFoam()
+unset -f _of_MPPICDyMFoam 2>/dev/null
+_of_MPPICDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3782,8 +3782,8 @@ _MPPICDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3791,10 +3791,10 @@ _MPPICDyMFoam()
 
     return 0
 }
-complete -o nospace -F _MPPICDyMFoam MPPICDyMFoam
+complete -o nospace -F _of_MPPICDyMFoam MPPICDyMFoam
 
-unset -f _MPPICFoam 2>/dev/null
-_MPPICFoam()
+unset -f _of_MPPICFoam 2>/dev/null
+_of_MPPICFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3817,8 +3817,8 @@ _MPPICFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3826,10 +3826,10 @@ _MPPICFoam()
 
     return 0
 }
-complete -o nospace -F _MPPICFoam MPPICFoam
+complete -o nospace -F _of_MPPICFoam MPPICFoam
 
-unset -f _MPPICInterFoam 2>/dev/null
-_MPPICInterFoam()
+unset -f _of_MPPICInterFoam 2>/dev/null
+_of_MPPICInterFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3852,8 +3852,8 @@ _MPPICInterFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3861,10 +3861,10 @@ _MPPICInterFoam()
 
     return 0
 }
-complete -o nospace -F _MPPICInterFoam MPPICInterFoam
+complete -o nospace -F _of_MPPICInterFoam MPPICInterFoam
 
-unset -f _mshToFoam 2>/dev/null
-_mshToFoam()
+unset -f _of_mshToFoam 2>/dev/null
+_of_mshToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3884,8 +3884,8 @@ _mshToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3893,10 +3893,10 @@ _mshToFoam()
 
     return 0
 }
-complete -o nospace -F _mshToFoam mshToFoam
+complete -o nospace -F _of_mshToFoam mshToFoam
 
-unset -f _multiphaseEulerFoam 2>/dev/null
-_multiphaseEulerFoam()
+unset -f _of_multiphaseEulerFoam 2>/dev/null
+_of_multiphaseEulerFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3919,8 +3919,8 @@ _multiphaseEulerFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3928,10 +3928,10 @@ _multiphaseEulerFoam()
 
     return 0
 }
-complete -o nospace -F _multiphaseEulerFoam multiphaseEulerFoam
+complete -o nospace -F _of_multiphaseEulerFoam multiphaseEulerFoam
 
-unset -f _multiphaseInterDyMFoam 2>/dev/null
-_multiphaseInterDyMFoam()
+unset -f _of_multiphaseInterDyMFoam 2>/dev/null
+_of_multiphaseInterDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3954,8 +3954,8 @@ _multiphaseInterDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3963,10 +3963,10 @@ _multiphaseInterDyMFoam()
 
     return 0
 }
-complete -o nospace -F _multiphaseInterDyMFoam multiphaseInterDyMFoam
+complete -o nospace -F _of_multiphaseInterDyMFoam multiphaseInterDyMFoam
 
-unset -f _multiphaseInterFoam 2>/dev/null
-_multiphaseInterFoam()
+unset -f _of_multiphaseInterFoam 2>/dev/null
+_of_multiphaseInterFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -3989,8 +3989,8 @@ _multiphaseInterFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -3998,10 +3998,10 @@ _multiphaseInterFoam()
 
     return 0
 }
-complete -o nospace -F _multiphaseInterFoam multiphaseInterFoam
+complete -o nospace -F _of_multiphaseInterFoam multiphaseInterFoam
 
-unset -f _netgenNeutralToFoam 2>/dev/null
-_netgenNeutralToFoam()
+unset -f _of_netgenNeutralToFoam 2>/dev/null
+_of_netgenNeutralToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4024,8 +4024,8 @@ _netgenNeutralToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4033,10 +4033,10 @@ _netgenNeutralToFoam()
 
     return 0
 }
-complete -o nospace -F _netgenNeutralToFoam netgenNeutralToFoam
+complete -o nospace -F _of_netgenNeutralToFoam netgenNeutralToFoam
 
-unset -f _noise 2>/dev/null
-_noise()
+unset -f _of_noise 2>/dev/null
+_of_noise()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4059,8 +4059,8 @@ _noise()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4068,10 +4068,10 @@ _noise()
 
     return 0
 }
-complete -o nospace -F _noise noise
+complete -o nospace -F _of_noise noise
 
-unset -f _nonNewtonianIcoFoam 2>/dev/null
-_nonNewtonianIcoFoam()
+unset -f _of_nonNewtonianIcoFoam 2>/dev/null
+_of_nonNewtonianIcoFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4094,8 +4094,8 @@ _nonNewtonianIcoFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4103,10 +4103,10 @@ _nonNewtonianIcoFoam()
 
     return 0
 }
-complete -o nospace -F _nonNewtonianIcoFoam nonNewtonianIcoFoam
+complete -o nospace -F _of_nonNewtonianIcoFoam nonNewtonianIcoFoam
 
-unset -f _objToVTK 2>/dev/null
-_objToVTK()
+unset -f _of_objToVTK 2>/dev/null
+_of_objToVTK()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4126,8 +4126,8 @@ _objToVTK()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4135,10 +4135,10 @@ _objToVTK()
 
     return 0
 }
-complete -o nospace -F _objToVTK objToVTK
+complete -o nospace -F _of_objToVTK objToVTK
 
-unset -f _orientFaceZone 2>/dev/null
-_orientFaceZone()
+unset -f _of_orientFaceZone 2>/dev/null
+_of_orientFaceZone()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4165,8 +4165,8 @@ _orientFaceZone()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4174,10 +4174,10 @@ _orientFaceZone()
 
     return 0
 }
-complete -o nospace -F _orientFaceZone orientFaceZone
+complete -o nospace -F _of_orientFaceZone orientFaceZone
 
-unset -f _particleTracks 2>/dev/null
-_particleTracks()
+unset -f _of_particleTracks 2>/dev/null
+_of_particleTracks()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4207,8 +4207,8 @@ _particleTracks()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4216,10 +4216,10 @@ _particleTracks()
 
     return 0
 }
-complete -o nospace -F _particleTracks particleTracks
+complete -o nospace -F _of_particleTracks particleTracks
 
-unset -f _patchSummary 2>/dev/null
-_patchSummary()
+unset -f _of_patchSummary 2>/dev/null
+_of_patchSummary()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4249,8 +4249,8 @@ _patchSummary()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4258,10 +4258,10 @@ _patchSummary()
 
     return 0
 }
-complete -o nospace -F _patchSummary patchSummary
+complete -o nospace -F _of_patchSummary patchSummary
 
-unset -f _pdfPlot 2>/dev/null
-_pdfPlot()
+unset -f _of_pdfPlot 2>/dev/null
+_of_pdfPlot()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4284,8 +4284,8 @@ _pdfPlot()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4293,10 +4293,10 @@ _pdfPlot()
 
     return 0
 }
-complete -o nospace -F _pdfPlot pdfPlot
+complete -o nospace -F _of_pdfPlot pdfPlot
 
-unset -f _PDRFoam 2>/dev/null
-_PDRFoam()
+unset -f _of_PDRFoam 2>/dev/null
+_of_PDRFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4319,8 +4319,8 @@ _PDRFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4328,10 +4328,10 @@ _PDRFoam()
 
     return 0
 }
-complete -o nospace -F _PDRFoam PDRFoam
+complete -o nospace -F _of_PDRFoam PDRFoam
 
-unset -f _PDRMesh 2>/dev/null
-_PDRMesh()
+unset -f _of_PDRMesh 2>/dev/null
+_of_PDRMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4354,8 +4354,8 @@ _PDRMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4363,10 +4363,10 @@ _PDRMesh()
 
     return 0
 }
-complete -o nospace -F _PDRMesh PDRMesh
+complete -o nospace -F _of_PDRMesh PDRMesh
 
-unset -f _pimpleDyMFoam 2>/dev/null
-_pimpleDyMFoam()
+unset -f _of_pimpleDyMFoam 2>/dev/null
+_of_pimpleDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4389,8 +4389,8 @@ _pimpleDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4398,10 +4398,10 @@ _pimpleDyMFoam()
 
     return 0
 }
-complete -o nospace -F _pimpleDyMFoam pimpleDyMFoam
+complete -o nospace -F _of_pimpleDyMFoam pimpleDyMFoam
 
-unset -f _pimpleFoam 2>/dev/null
-_pimpleFoam()
+unset -f _of_pimpleFoam 2>/dev/null
+_of_pimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4424,8 +4424,8 @@ _pimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4433,10 +4433,10 @@ _pimpleFoam()
 
     return 0
 }
-complete -o nospace -F _pimpleFoam pimpleFoam
+complete -o nospace -F _of_pimpleFoam pimpleFoam
 
-unset -f _pisoFoam 2>/dev/null
-_pisoFoam()
+unset -f _of_pisoFoam 2>/dev/null
+_of_pisoFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4459,8 +4459,8 @@ _pisoFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4468,10 +4468,10 @@ _pisoFoam()
 
     return 0
 }
-complete -o nospace -F _pisoFoam pisoFoam
+complete -o nospace -F _of_pisoFoam pisoFoam
 
-unset -f _plot3dToFoam 2>/dev/null
-_plot3dToFoam()
+unset -f _of_plot3dToFoam 2>/dev/null
+_of_plot3dToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4491,8 +4491,8 @@ _plot3dToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4500,10 +4500,10 @@ _plot3dToFoam()
 
     return 0
 }
-complete -o nospace -F _plot3dToFoam plot3dToFoam
+complete -o nospace -F _of_plot3dToFoam plot3dToFoam
 
-unset -f _polyDualMesh 2>/dev/null
-_polyDualMesh()
+unset -f _of_polyDualMesh 2>/dev/null
+_of_polyDualMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4523,8 +4523,8 @@ _polyDualMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4532,10 +4532,10 @@ _polyDualMesh()
 
     return 0
 }
-complete -o nospace -F _polyDualMesh polyDualMesh
+complete -o nospace -F _of_polyDualMesh polyDualMesh
 
-unset -f _porousSimpleFoam 2>/dev/null
-_porousSimpleFoam()
+unset -f _of_porousSimpleFoam 2>/dev/null
+_of_porousSimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4558,8 +4558,8 @@ _porousSimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4567,10 +4567,10 @@ _porousSimpleFoam()
 
     return 0
 }
-complete -o nospace -F _porousSimpleFoam porousSimpleFoam
+complete -o nospace -F _of_porousSimpleFoam porousSimpleFoam
 
-unset -f _postChannel 2>/dev/null
-_postChannel()
+unset -f _of_postChannel 2>/dev/null
+_of_postChannel()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4593,8 +4593,8 @@ _postChannel()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4602,10 +4602,10 @@ _postChannel()
 
     return 0
 }
-complete -o nospace -F _postChannel postChannel
+complete -o nospace -F _of_postChannel postChannel
 
-unset -f _postProcess 2>/dev/null
-_postProcess()
+unset -f _of_postProcess 2>/dev/null
+_of_postProcess()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4635,8 +4635,8 @@ _postProcess()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4644,10 +4644,10 @@ _postProcess()
 
     return 0
 }
-complete -o nospace -F _postProcess postProcess
+complete -o nospace -F _of_postProcess postProcess
 
-unset -f _potentialFoam 2>/dev/null
-_potentialFoam()
+unset -f _of_potentialFoam 2>/dev/null
+_of_potentialFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4670,8 +4670,8 @@ _potentialFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4679,10 +4679,10 @@ _potentialFoam()
 
     return 0
 }
-complete -o nospace -F _potentialFoam potentialFoam
+complete -o nospace -F _of_potentialFoam potentialFoam
 
-unset -f _potentialFreeSurfaceDyMFoam 2>/dev/null
-_potentialFreeSurfaceDyMFoam()
+unset -f _of_potentialFreeSurfaceDyMFoam 2>/dev/null
+_of_potentialFreeSurfaceDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4705,8 +4705,8 @@ _potentialFreeSurfaceDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4714,10 +4714,10 @@ _potentialFreeSurfaceDyMFoam()
 
     return 0
 }
-complete -o nospace -F _potentialFreeSurfaceDyMFoam potentialFreeSurfaceDyMFoam
+complete -o nospace -F _of_potentialFreeSurfaceDyMFoam potentialFreeSurfaceDyMFoam
 
-unset -f _potentialFreeSurfaceFoam 2>/dev/null
-_potentialFreeSurfaceFoam()
+unset -f _of_potentialFreeSurfaceFoam 2>/dev/null
+_of_potentialFreeSurfaceFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4740,8 +4740,8 @@ _potentialFreeSurfaceFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4749,10 +4749,10 @@ _potentialFreeSurfaceFoam()
 
     return 0
 }
-complete -o nospace -F _potentialFreeSurfaceFoam potentialFreeSurfaceFoam
+complete -o nospace -F _of_potentialFreeSurfaceFoam potentialFreeSurfaceFoam
 
-unset -f _reactingFoam 2>/dev/null
-_reactingFoam()
+unset -f _of_reactingFoam 2>/dev/null
+_of_reactingFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4775,8 +4775,8 @@ _reactingFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4784,10 +4784,10 @@ _reactingFoam()
 
     return 0
 }
-complete -o nospace -F _reactingFoam reactingFoam
+complete -o nospace -F _of_reactingFoam reactingFoam
 
-unset -f _reactingMultiphaseEulerFoam 2>/dev/null
-_reactingMultiphaseEulerFoam()
+unset -f _of_reactingMultiphaseEulerFoam 2>/dev/null
+_of_reactingMultiphaseEulerFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4810,8 +4810,8 @@ _reactingMultiphaseEulerFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4819,10 +4819,10 @@ _reactingMultiphaseEulerFoam()
 
     return 0
 }
-complete -o nospace -F _reactingMultiphaseEulerFoam reactingMultiphaseEulerFoam
+complete -o nospace -F _of_reactingMultiphaseEulerFoam reactingMultiphaseEulerFoam
 
-unset -f _reactingParcelFilmFoam 2>/dev/null
-_reactingParcelFilmFoam()
+unset -f _of_reactingParcelFilmFoam 2>/dev/null
+_of_reactingParcelFilmFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4845,8 +4845,8 @@ _reactingParcelFilmFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4854,10 +4854,10 @@ _reactingParcelFilmFoam()
 
     return 0
 }
-complete -o nospace -F _reactingParcelFilmFoam reactingParcelFilmFoam
+complete -o nospace -F _of_reactingParcelFilmFoam reactingParcelFilmFoam
 
-unset -f _reactingParcelFoam 2>/dev/null
-_reactingParcelFoam()
+unset -f _of_reactingParcelFoam 2>/dev/null
+_of_reactingParcelFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4880,8 +4880,8 @@ _reactingParcelFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4889,10 +4889,10 @@ _reactingParcelFoam()
 
     return 0
 }
-complete -o nospace -F _reactingParcelFoam reactingParcelFoam
+complete -o nospace -F _of_reactingParcelFoam reactingParcelFoam
 
-unset -f _reactingTwoPhaseEulerFoam 2>/dev/null
-_reactingTwoPhaseEulerFoam()
+unset -f _of_reactingTwoPhaseEulerFoam 2>/dev/null
+_of_reactingTwoPhaseEulerFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4915,8 +4915,8 @@ _reactingTwoPhaseEulerFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4924,10 +4924,10 @@ _reactingTwoPhaseEulerFoam()
 
     return 0
 }
-complete -o nospace -F _reactingTwoPhaseEulerFoam reactingTwoPhaseEulerFoam
+complete -o nospace -F _of_reactingTwoPhaseEulerFoam reactingTwoPhaseEulerFoam
 
-unset -f _reconstructPar 2>/dev/null
-_reconstructPar()
+unset -f _of_reconstructPar 2>/dev/null
+_of_reconstructPar()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4954,8 +4954,8 @@ _reconstructPar()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -4963,10 +4963,10 @@ _reconstructPar()
 
     return 0
 }
-complete -o nospace -F _reconstructPar reconstructPar
+complete -o nospace -F _of_reconstructPar reconstructPar
 
-unset -f _reconstructParMesh 2>/dev/null
-_reconstructParMesh()
+unset -f _of_reconstructParMesh 2>/dev/null
+_of_reconstructParMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -4993,8 +4993,8 @@ _reconstructParMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5002,10 +5002,10 @@ _reconstructParMesh()
 
     return 0
 }
-complete -o nospace -F _reconstructParMesh reconstructParMesh
+complete -o nospace -F _of_reconstructParMesh reconstructParMesh
 
-unset -f _redistributePar 2>/dev/null
-_redistributePar()
+unset -f _of_redistributePar 2>/dev/null
+_of_redistributePar()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5035,8 +5035,8 @@ _redistributePar()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5044,10 +5044,10 @@ _redistributePar()
 
     return 0
 }
-complete -o nospace -F _redistributePar redistributePar
+complete -o nospace -F _of_redistributePar redistributePar
 
-unset -f _refineHexMesh 2>/dev/null
-_refineHexMesh()
+unset -f _of_refineHexMesh 2>/dev/null
+_of_refineHexMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5074,8 +5074,8 @@ _refineHexMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5083,10 +5083,10 @@ _refineHexMesh()
 
     return 0
 }
-complete -o nospace -F _refineHexMesh refineHexMesh
+complete -o nospace -F _of_refineHexMesh refineHexMesh
 
-unset -f _refinementLevel 2>/dev/null
-_refinementLevel()
+unset -f _of_refinementLevel 2>/dev/null
+_of_refinementLevel()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5109,8 +5109,8 @@ _refinementLevel()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5118,10 +5118,10 @@ _refinementLevel()
 
     return 0
 }
-complete -o nospace -F _refinementLevel refinementLevel
+complete -o nospace -F _of_refinementLevel refinementLevel
 
-unset -f _refineMesh 2>/dev/null
-_refineMesh()
+unset -f _of_refineMesh 2>/dev/null
+_of_refineMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5148,8 +5148,8 @@ _refineMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5157,10 +5157,10 @@ _refineMesh()
 
     return 0
 }
-complete -o nospace -F _refineMesh refineMesh
+complete -o nospace -F _of_refineMesh refineMesh
 
-unset -f _refineWallLayer 2>/dev/null
-_refineWallLayer()
+unset -f _of_refineWallLayer 2>/dev/null
+_of_refineWallLayer()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5183,8 +5183,8 @@ _refineWallLayer()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5192,10 +5192,10 @@ _refineWallLayer()
 
     return 0
 }
-complete -o nospace -F _refineWallLayer refineWallLayer
+complete -o nospace -F _of_refineWallLayer refineWallLayer
 
-unset -f _removeFaces 2>/dev/null
-_removeFaces()
+unset -f _of_removeFaces 2>/dev/null
+_of_removeFaces()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5218,8 +5218,8 @@ _removeFaces()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5227,10 +5227,10 @@ _removeFaces()
 
     return 0
 }
-complete -o nospace -F _removeFaces removeFaces
+complete -o nospace -F _of_removeFaces removeFaces
 
-unset -f _renumberMesh 2>/dev/null
-_renumberMesh()
+unset -f _of_renumberMesh 2>/dev/null
+_of_renumberMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5260,8 +5260,8 @@ _renumberMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5269,10 +5269,10 @@ _renumberMesh()
 
     return 0
 }
-complete -o nospace -F _renumberMesh renumberMesh
+complete -o nospace -F _of_renumberMesh renumberMesh
 
-unset -f _rhoCentralDyMFoam 2>/dev/null
-_rhoCentralDyMFoam()
+unset -f _of_rhoCentralDyMFoam 2>/dev/null
+_of_rhoCentralDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5295,8 +5295,8 @@ _rhoCentralDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5304,10 +5304,10 @@ _rhoCentralDyMFoam()
 
     return 0
 }
-complete -o nospace -F _rhoCentralDyMFoam rhoCentralDyMFoam
+complete -o nospace -F _of_rhoCentralDyMFoam rhoCentralDyMFoam
 
-unset -f _rhoCentralFoam 2>/dev/null
-_rhoCentralFoam()
+unset -f _of_rhoCentralFoam 2>/dev/null
+_of_rhoCentralFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5330,8 +5330,8 @@ _rhoCentralFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5339,10 +5339,10 @@ _rhoCentralFoam()
 
     return 0
 }
-complete -o nospace -F _rhoCentralFoam rhoCentralFoam
+complete -o nospace -F _of_rhoCentralFoam rhoCentralFoam
 
-unset -f _rhoPimpleDyMFoam 2>/dev/null
-_rhoPimpleDyMFoam()
+unset -f _of_rhoPimpleDyMFoam 2>/dev/null
+_of_rhoPimpleDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5365,8 +5365,8 @@ _rhoPimpleDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5374,10 +5374,10 @@ _rhoPimpleDyMFoam()
 
     return 0
 }
-complete -o nospace -F _rhoPimpleDyMFoam rhoPimpleDyMFoam
+complete -o nospace -F _of_rhoPimpleDyMFoam rhoPimpleDyMFoam
 
-unset -f _rhoPimpleFoam 2>/dev/null
-_rhoPimpleFoam()
+unset -f _of_rhoPimpleFoam 2>/dev/null
+_of_rhoPimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5400,8 +5400,8 @@ _rhoPimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5409,10 +5409,10 @@ _rhoPimpleFoam()
 
     return 0
 }
-complete -o nospace -F _rhoPimpleFoam rhoPimpleFoam
+complete -o nospace -F _of_rhoPimpleFoam rhoPimpleFoam
 
-unset -f _rhoPorousSimpleFoam 2>/dev/null
-_rhoPorousSimpleFoam()
+unset -f _of_rhoPorousSimpleFoam 2>/dev/null
+_of_rhoPorousSimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5435,8 +5435,8 @@ _rhoPorousSimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5444,10 +5444,10 @@ _rhoPorousSimpleFoam()
 
     return 0
 }
-complete -o nospace -F _rhoPorousSimpleFoam rhoPorousSimpleFoam
+complete -o nospace -F _of_rhoPorousSimpleFoam rhoPorousSimpleFoam
 
-unset -f _rhoReactingBuoyantFoam 2>/dev/null
-_rhoReactingBuoyantFoam()
+unset -f _of_rhoReactingBuoyantFoam 2>/dev/null
+_of_rhoReactingBuoyantFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5470,8 +5470,8 @@ _rhoReactingBuoyantFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5479,10 +5479,10 @@ _rhoReactingBuoyantFoam()
 
     return 0
 }
-complete -o nospace -F _rhoReactingBuoyantFoam rhoReactingBuoyantFoam
+complete -o nospace -F _of_rhoReactingBuoyantFoam rhoReactingBuoyantFoam
 
-unset -f _rhoReactingFoam 2>/dev/null
-_rhoReactingFoam()
+unset -f _of_rhoReactingFoam 2>/dev/null
+_of_rhoReactingFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5505,8 +5505,8 @@ _rhoReactingFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5514,10 +5514,10 @@ _rhoReactingFoam()
 
     return 0
 }
-complete -o nospace -F _rhoReactingFoam rhoReactingFoam
+complete -o nospace -F _of_rhoReactingFoam rhoReactingFoam
 
-unset -f _rhoSimpleFoam 2>/dev/null
-_rhoSimpleFoam()
+unset -f _of_rhoSimpleFoam 2>/dev/null
+_of_rhoSimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5540,8 +5540,8 @@ _rhoSimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5549,10 +5549,10 @@ _rhoSimpleFoam()
 
     return 0
 }
-complete -o nospace -F _rhoSimpleFoam rhoSimpleFoam
+complete -o nospace -F _of_rhoSimpleFoam rhoSimpleFoam
 
-unset -f _rotateMesh 2>/dev/null
-_rotateMesh()
+unset -f _of_rotateMesh 2>/dev/null
+_of_rotateMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5578,8 +5578,8 @@ _rotateMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5587,10 +5587,10 @@ _rotateMesh()
 
     return 0
 }
-complete -o nospace -F _rotateMesh rotateMesh
+complete -o nospace -F _of_rotateMesh rotateMesh
 
-unset -f _scalarTransportFoam 2>/dev/null
-_scalarTransportFoam()
+unset -f _of_scalarTransportFoam 2>/dev/null
+_of_scalarTransportFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5613,8 +5613,8 @@ _scalarTransportFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5622,10 +5622,10 @@ _scalarTransportFoam()
 
     return 0
 }
-complete -o nospace -F _scalarTransportFoam scalarTransportFoam
+complete -o nospace -F _of_scalarTransportFoam scalarTransportFoam
 
-unset -f _selectCells 2>/dev/null
-_selectCells()
+unset -f _of_selectCells 2>/dev/null
+_of_selectCells()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5645,8 +5645,8 @@ _selectCells()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5654,10 +5654,10 @@ _selectCells()
 
     return 0
 }
-complete -o nospace -F _selectCells selectCells
+complete -o nospace -F _of_selectCells selectCells
 
-unset -f _setFields 2>/dev/null
-_setFields()
+unset -f _of_setFields 2>/dev/null
+_of_setFields()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5684,8 +5684,8 @@ _setFields()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5693,10 +5693,10 @@ _setFields()
 
     return 0
 }
-complete -o nospace -F _setFields setFields
+complete -o nospace -F _of_setFields setFields
 
-unset -f _setSet 2>/dev/null
-_setSet()
+unset -f _of_setSet 2>/dev/null
+_of_setSet()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5726,8 +5726,8 @@ _setSet()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5735,10 +5735,10 @@ _setSet()
 
     return 0
 }
-complete -o nospace -F _setSet setSet
+complete -o nospace -F _of_setSet setSet
 
-unset -f _setsToZones 2>/dev/null
-_setsToZones()
+unset -f _of_setsToZones 2>/dev/null
+_of_setsToZones()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5768,8 +5768,8 @@ _setsToZones()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5777,10 +5777,10 @@ _setsToZones()
 
     return 0
 }
-complete -o nospace -F _setsToZones setsToZones
+complete -o nospace -F _of_setsToZones setsToZones
 
-unset -f _shallowWaterFoam 2>/dev/null
-_shallowWaterFoam()
+unset -f _of_shallowWaterFoam 2>/dev/null
+_of_shallowWaterFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5803,8 +5803,8 @@ _shallowWaterFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5812,10 +5812,10 @@ _shallowWaterFoam()
 
     return 0
 }
-complete -o nospace -F _shallowWaterFoam shallowWaterFoam
+complete -o nospace -F _of_shallowWaterFoam shallowWaterFoam
 
-unset -f _simpleCoalParcelFoam 2>/dev/null
-_simpleCoalParcelFoam()
+unset -f _of_simpleCoalParcelFoam 2>/dev/null
+_of_simpleCoalParcelFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5838,8 +5838,8 @@ _simpleCoalParcelFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5847,10 +5847,10 @@ _simpleCoalParcelFoam()
 
     return 0
 }
-complete -o nospace -F _simpleCoalParcelFoam simpleCoalParcelFoam
+complete -o nospace -F _of_simpleCoalParcelFoam simpleCoalParcelFoam
 
-unset -f _simpleFoam 2>/dev/null
-_simpleFoam()
+unset -f _of_simpleFoam 2>/dev/null
+_of_simpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5873,8 +5873,8 @@ _simpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5882,10 +5882,10 @@ _simpleFoam()
 
     return 0
 }
-complete -o nospace -F _simpleFoam simpleFoam
+complete -o nospace -F _of_simpleFoam simpleFoam
 
-unset -f _simpleReactingParcelFoam 2>/dev/null
-_simpleReactingParcelFoam()
+unset -f _of_simpleReactingParcelFoam 2>/dev/null
+_of_simpleReactingParcelFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5908,8 +5908,8 @@ _simpleReactingParcelFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5917,10 +5917,10 @@ _simpleReactingParcelFoam()
 
     return 0
 }
-complete -o nospace -F _simpleReactingParcelFoam simpleReactingParcelFoam
+complete -o nospace -F _of_simpleReactingParcelFoam simpleReactingParcelFoam
 
-unset -f _singleCellMesh 2>/dev/null
-_singleCellMesh()
+unset -f _of_singleCellMesh 2>/dev/null
+_of_singleCellMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5946,8 +5946,8 @@ _singleCellMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5955,10 +5955,10 @@ _singleCellMesh()
 
     return 0
 }
-complete -o nospace -F _singleCellMesh singleCellMesh
+complete -o nospace -F _of_singleCellMesh singleCellMesh
 
-unset -f _smapToFoam 2>/dev/null
-_smapToFoam()
+unset -f _of_smapToFoam 2>/dev/null
+_of_smapToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -5978,8 +5978,8 @@ _smapToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -5987,10 +5987,10 @@ _smapToFoam()
 
     return 0
 }
-complete -o nospace -F _smapToFoam smapToFoam
+complete -o nospace -F _of_smapToFoam smapToFoam
 
-unset -f _snappyHexMesh 2>/dev/null
-_snappyHexMesh()
+unset -f _of_snappyHexMesh 2>/dev/null
+_of_snappyHexMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6017,8 +6017,8 @@ _snappyHexMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6026,10 +6026,10 @@ _snappyHexMesh()
 
     return 0
 }
-complete -o nospace -F _snappyHexMesh snappyHexMesh
+complete -o nospace -F _of_snappyHexMesh snappyHexMesh
 
-unset -f _snappyRefineMesh 2>/dev/null
-_snappyRefineMesh()
+unset -f _of_snappyRefineMesh 2>/dev/null
+_of_snappyRefineMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6049,8 +6049,8 @@ _snappyRefineMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6058,10 +6058,10 @@ _snappyRefineMesh()
 
     return 0
 }
-complete -o nospace -F _snappyRefineMesh snappyRefineMesh
+complete -o nospace -F _of_snappyRefineMesh snappyRefineMesh
 
-unset -f _solidDisplacementFoam 2>/dev/null
-_solidDisplacementFoam()
+unset -f _of_solidDisplacementFoam 2>/dev/null
+_of_solidDisplacementFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6084,8 +6084,8 @@ _solidDisplacementFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6093,10 +6093,10 @@ _solidDisplacementFoam()
 
     return 0
 }
-complete -o nospace -F _solidDisplacementFoam solidDisplacementFoam
+complete -o nospace -F _of_solidDisplacementFoam solidDisplacementFoam
 
-unset -f _solidEquilibriumDisplacementFoam 2>/dev/null
-_solidEquilibriumDisplacementFoam()
+unset -f _of_solidEquilibriumDisplacementFoam 2>/dev/null
+_of_solidEquilibriumDisplacementFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6119,8 +6119,8 @@ _solidEquilibriumDisplacementFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6128,10 +6128,10 @@ _solidEquilibriumDisplacementFoam()
 
     return 0
 }
-complete -o nospace -F _solidEquilibriumDisplacementFoam solidEquilibriumDisplacementFoam
+complete -o nospace -F _of_solidEquilibriumDisplacementFoam solidEquilibriumDisplacementFoam
 
-unset -f _sonicDyMFoam 2>/dev/null
-_sonicDyMFoam()
+unset -f _of_sonicDyMFoam 2>/dev/null
+_of_sonicDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6154,8 +6154,8 @@ _sonicDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6163,10 +6163,10 @@ _sonicDyMFoam()
 
     return 0
 }
-complete -o nospace -F _sonicDyMFoam sonicDyMFoam
+complete -o nospace -F _of_sonicDyMFoam sonicDyMFoam
 
-unset -f _sonicFoam 2>/dev/null
-_sonicFoam()
+unset -f _of_sonicFoam 2>/dev/null
+_of_sonicFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6189,8 +6189,8 @@ _sonicFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6198,10 +6198,10 @@ _sonicFoam()
 
     return 0
 }
-complete -o nospace -F _sonicFoam sonicFoam
+complete -o nospace -F _of_sonicFoam sonicFoam
 
-unset -f _sonicLiquidFoam 2>/dev/null
-_sonicLiquidFoam()
+unset -f _of_sonicLiquidFoam 2>/dev/null
+_of_sonicLiquidFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6224,8 +6224,8 @@ _sonicLiquidFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6233,10 +6233,10 @@ _sonicLiquidFoam()
 
     return 0
 }
-complete -o nospace -F _sonicLiquidFoam sonicLiquidFoam
+complete -o nospace -F _of_sonicLiquidFoam sonicLiquidFoam
 
-unset -f _splitCells 2>/dev/null
-_splitCells()
+unset -f _of_splitCells 2>/dev/null
+_of_splitCells()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6256,8 +6256,8 @@ _splitCells()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6265,10 +6265,10 @@ _splitCells()
 
     return 0
 }
-complete -o nospace -F _splitCells splitCells
+complete -o nospace -F _of_splitCells splitCells
 
-unset -f _splitMesh 2>/dev/null
-_splitMesh()
+unset -f _of_splitMesh 2>/dev/null
+_of_splitMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6288,8 +6288,8 @@ _splitMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6297,10 +6297,10 @@ _splitMesh()
 
     return 0
 }
-complete -o nospace -F _splitMesh splitMesh
+complete -o nospace -F _of_splitMesh splitMesh
 
-unset -f _splitMeshRegions 2>/dev/null
-_splitMeshRegions()
+unset -f _of_splitMeshRegions 2>/dev/null
+_of_splitMeshRegions()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6327,8 +6327,8 @@ _splitMeshRegions()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6336,10 +6336,10 @@ _splitMeshRegions()
 
     return 0
 }
-complete -o nospace -F _splitMeshRegions splitMeshRegions
+complete -o nospace -F _of_splitMeshRegions splitMeshRegions
 
-unset -f _sprayDyMFoam 2>/dev/null
-_sprayDyMFoam()
+unset -f _of_sprayDyMFoam 2>/dev/null
+_of_sprayDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6362,8 +6362,8 @@ _sprayDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6371,10 +6371,10 @@ _sprayDyMFoam()
 
     return 0
 }
-complete -o nospace -F _sprayDyMFoam sprayDyMFoam
+complete -o nospace -F _of_sprayDyMFoam sprayDyMFoam
 
-unset -f _sprayEngineFoam 2>/dev/null
-_sprayEngineFoam()
+unset -f _of_sprayEngineFoam 2>/dev/null
+_of_sprayEngineFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6397,8 +6397,8 @@ _sprayEngineFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6406,10 +6406,10 @@ _sprayEngineFoam()
 
     return 0
 }
-complete -o nospace -F _sprayEngineFoam sprayEngineFoam
+complete -o nospace -F _of_sprayEngineFoam sprayEngineFoam
 
-unset -f _sprayFoam 2>/dev/null
-_sprayFoam()
+unset -f _of_sprayFoam 2>/dev/null
+_of_sprayFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6432,8 +6432,8 @@ _sprayFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6441,10 +6441,10 @@ _sprayFoam()
 
     return 0
 }
-complete -o nospace -F _sprayFoam sprayFoam
+complete -o nospace -F _of_sprayFoam sprayFoam
 
-unset -f _SRFPimpleFoam 2>/dev/null
-_SRFPimpleFoam()
+unset -f _of_SRFPimpleFoam 2>/dev/null
+_of_SRFPimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6467,8 +6467,8 @@ _SRFPimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6476,10 +6476,10 @@ _SRFPimpleFoam()
 
     return 0
 }
-complete -o nospace -F _SRFPimpleFoam SRFPimpleFoam
+complete -o nospace -F _of_SRFPimpleFoam SRFPimpleFoam
 
-unset -f _SRFSimpleFoam 2>/dev/null
-_SRFSimpleFoam()
+unset -f _of_SRFSimpleFoam 2>/dev/null
+_of_SRFSimpleFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6502,8 +6502,8 @@ _SRFSimpleFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6511,10 +6511,10 @@ _SRFSimpleFoam()
 
     return 0
 }
-complete -o nospace -F _SRFSimpleFoam SRFSimpleFoam
+complete -o nospace -F _of_SRFSimpleFoam SRFSimpleFoam
 
-unset -f _star4ToFoam 2>/dev/null
-_star4ToFoam()
+unset -f _of_star4ToFoam 2>/dev/null
+_of_star4ToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6534,8 +6534,8 @@ _star4ToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6543,10 +6543,10 @@ _star4ToFoam()
 
     return 0
 }
-complete -o nospace -F _star4ToFoam star4ToFoam
+complete -o nospace -F _of_star4ToFoam star4ToFoam
 
-unset -f _steadyParticleTracks 2>/dev/null
-_steadyParticleTracks()
+unset -f _of_steadyParticleTracks 2>/dev/null
+_of_steadyParticleTracks()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6573,8 +6573,8 @@ _steadyParticleTracks()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6582,10 +6582,10 @@ _steadyParticleTracks()
 
     return 0
 }
-complete -o nospace -F _steadyParticleTracks steadyParticleTracks
+complete -o nospace -F _of_steadyParticleTracks steadyParticleTracks
 
-unset -f _stitchMesh 2>/dev/null
-_stitchMesh()
+unset -f _of_stitchMesh 2>/dev/null
+_of_stitchMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6612,8 +6612,8 @@ _stitchMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6621,10 +6621,10 @@ _stitchMesh()
 
     return 0
 }
-complete -o nospace -F _stitchMesh stitchMesh
+complete -o nospace -F _of_stitchMesh stitchMesh
 
-unset -f _subsetMesh 2>/dev/null
-_subsetMesh()
+unset -f _of_subsetMesh 2>/dev/null
+_of_subsetMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6651,8 +6651,8 @@ _subsetMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6660,10 +6660,10 @@ _subsetMesh()
 
     return 0
 }
-complete -o nospace -F _subsetMesh subsetMesh
+complete -o nospace -F _of_subsetMesh subsetMesh
 
-unset -f _surfaceAdd 2>/dev/null
-_surfaceAdd()
+unset -f _of_surfaceAdd 2>/dev/null
+_of_surfaceAdd()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6683,8 +6683,8 @@ _surfaceAdd()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6692,10 +6692,10 @@ _surfaceAdd()
 
     return 0
 }
-complete -o nospace -F _surfaceAdd surfaceAdd
+complete -o nospace -F _of_surfaceAdd surfaceAdd
 
-unset -f _surfaceBooleanFeatures 2>/dev/null
-_surfaceBooleanFeatures()
+unset -f _of_surfaceBooleanFeatures 2>/dev/null
+_of_surfaceBooleanFeatures()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6715,8 +6715,8 @@ _surfaceBooleanFeatures()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6724,10 +6724,10 @@ _surfaceBooleanFeatures()
 
     return 0
 }
-complete -o nospace -F _surfaceBooleanFeatures surfaceBooleanFeatures
+complete -o nospace -F _of_surfaceBooleanFeatures surfaceBooleanFeatures
 
-unset -f _surfaceCheck 2>/dev/null
-_surfaceCheck()
+unset -f _of_surfaceCheck 2>/dev/null
+_of_surfaceCheck()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6747,8 +6747,8 @@ _surfaceCheck()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6756,10 +6756,10 @@ _surfaceCheck()
 
     return 0
 }
-complete -o nospace -F _surfaceCheck surfaceCheck
+complete -o nospace -F _of_surfaceCheck surfaceCheck
 
-unset -f _surfaceClean 2>/dev/null
-_surfaceClean()
+unset -f _of_surfaceClean 2>/dev/null
+_of_surfaceClean()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6779,8 +6779,8 @@ _surfaceClean()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6788,10 +6788,10 @@ _surfaceClean()
 
     return 0
 }
-complete -o nospace -F _surfaceClean surfaceClean
+complete -o nospace -F _of_surfaceClean surfaceClean
 
-unset -f _surfaceCoarsen 2>/dev/null
-_surfaceCoarsen()
+unset -f _of_surfaceCoarsen 2>/dev/null
+_of_surfaceCoarsen()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6811,8 +6811,8 @@ _surfaceCoarsen()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6820,10 +6820,10 @@ _surfaceCoarsen()
 
     return 0
 }
-complete -o nospace -F _surfaceCoarsen surfaceCoarsen
+complete -o nospace -F _of_surfaceCoarsen surfaceCoarsen
 
-unset -f _surfaceConvert 2>/dev/null
-_surfaceConvert()
+unset -f _of_surfaceConvert 2>/dev/null
+_of_surfaceConvert()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6843,8 +6843,8 @@ _surfaceConvert()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6852,10 +6852,10 @@ _surfaceConvert()
 
     return 0
 }
-complete -o nospace -F _surfaceConvert surfaceConvert
+complete -o nospace -F _of_surfaceConvert surfaceConvert
 
-unset -f _surfaceFeatureConvert 2>/dev/null
-_surfaceFeatureConvert()
+unset -f _of_surfaceFeatureConvert 2>/dev/null
+_of_surfaceFeatureConvert()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6875,8 +6875,8 @@ _surfaceFeatureConvert()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6884,10 +6884,10 @@ _surfaceFeatureConvert()
 
     return 0
 }
-complete -o nospace -F _surfaceFeatureConvert surfaceFeatureConvert
+complete -o nospace -F _of_surfaceFeatureConvert surfaceFeatureConvert
 
-unset -f _surfaceFeatureExtract 2>/dev/null
-_surfaceFeatureExtract()
+unset -f _of_surfaceFeatureExtract 2>/dev/null
+_of_surfaceFeatureExtract()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6907,8 +6907,8 @@ _surfaceFeatureExtract()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6916,10 +6916,10 @@ _surfaceFeatureExtract()
 
     return 0
 }
-complete -o nospace -F _surfaceFeatureExtract surfaceFeatureExtract
+complete -o nospace -F _of_surfaceFeatureExtract surfaceFeatureExtract
 
-unset -f _surfaceFind 2>/dev/null
-_surfaceFind()
+unset -f _of_surfaceFind 2>/dev/null
+_of_surfaceFind()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6939,8 +6939,8 @@ _surfaceFind()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6948,10 +6948,10 @@ _surfaceFind()
 
     return 0
 }
-complete -o nospace -F _surfaceFind surfaceFind
+complete -o nospace -F _of_surfaceFind surfaceFind
 
-unset -f _surfaceHookUp 2>/dev/null
-_surfaceHookUp()
+unset -f _of_surfaceHookUp 2>/dev/null
+_of_surfaceHookUp()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -6971,8 +6971,8 @@ _surfaceHookUp()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -6980,10 +6980,10 @@ _surfaceHookUp()
 
     return 0
 }
-complete -o nospace -F _surfaceHookUp surfaceHookUp
+complete -o nospace -F _of_surfaceHookUp surfaceHookUp
 
-unset -f _surfaceInertia 2>/dev/null
-_surfaceInertia()
+unset -f _of_surfaceInertia 2>/dev/null
+_of_surfaceInertia()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7003,8 +7003,8 @@ _surfaceInertia()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7012,10 +7012,10 @@ _surfaceInertia()
 
     return 0
 }
-complete -o nospace -F _surfaceInertia surfaceInertia
+complete -o nospace -F _of_surfaceInertia surfaceInertia
 
-unset -f _surfaceInflate 2>/dev/null
-_surfaceInflate()
+unset -f _of_surfaceInflate 2>/dev/null
+_of_surfaceInflate()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7035,8 +7035,8 @@ _surfaceInflate()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7044,10 +7044,10 @@ _surfaceInflate()
 
     return 0
 }
-complete -o nospace -F _surfaceInflate surfaceInflate
+complete -o nospace -F _of_surfaceInflate surfaceInflate
 
-unset -f _surfaceLambdaMuSmooth 2>/dev/null
-_surfaceLambdaMuSmooth()
+unset -f _of_surfaceLambdaMuSmooth 2>/dev/null
+_of_surfaceLambdaMuSmooth()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7065,8 +7065,8 @@ _surfaceLambdaMuSmooth()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7074,10 +7074,10 @@ _surfaceLambdaMuSmooth()
 
     return 0
 }
-complete -o nospace -F _surfaceLambdaMuSmooth surfaceLambdaMuSmooth
+complete -o nospace -F _of_surfaceLambdaMuSmooth surfaceLambdaMuSmooth
 
-unset -f _surfaceMeshConvert 2>/dev/null
-_surfaceMeshConvert()
+unset -f _of_surfaceMeshConvert 2>/dev/null
+_of_surfaceMeshConvert()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7097,8 +7097,8 @@ _surfaceMeshConvert()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7106,10 +7106,10 @@ _surfaceMeshConvert()
 
     return 0
 }
-complete -o nospace -F _surfaceMeshConvert surfaceMeshConvert
+complete -o nospace -F _of_surfaceMeshConvert surfaceMeshConvert
 
-unset -f _surfaceMeshConvertTesting 2>/dev/null
-_surfaceMeshConvertTesting()
+unset -f _of_surfaceMeshConvertTesting 2>/dev/null
+_of_surfaceMeshConvertTesting()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7129,8 +7129,8 @@ _surfaceMeshConvertTesting()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7138,10 +7138,10 @@ _surfaceMeshConvertTesting()
 
     return 0
 }
-complete -o nospace -F _surfaceMeshConvertTesting surfaceMeshConvertTesting
+complete -o nospace -F _of_surfaceMeshConvertTesting surfaceMeshConvertTesting
 
-unset -f _surfaceMeshExport 2>/dev/null
-_surfaceMeshExport()
+unset -f _of_surfaceMeshExport 2>/dev/null
+_of_surfaceMeshExport()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7161,8 +7161,8 @@ _surfaceMeshExport()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7170,10 +7170,10 @@ _surfaceMeshExport()
 
     return 0
 }
-complete -o nospace -F _surfaceMeshExport surfaceMeshExport
+complete -o nospace -F _of_surfaceMeshExport surfaceMeshExport
 
-unset -f _surfaceMeshImport 2>/dev/null
-_surfaceMeshImport()
+unset -f _of_surfaceMeshImport 2>/dev/null
+_of_surfaceMeshImport()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7193,8 +7193,8 @@ _surfaceMeshImport()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7202,10 +7202,10 @@ _surfaceMeshImport()
 
     return 0
 }
-complete -o nospace -F _surfaceMeshImport surfaceMeshImport
+complete -o nospace -F _of_surfaceMeshImport surfaceMeshImport
 
-unset -f _surfaceMeshInfo 2>/dev/null
-_surfaceMeshInfo()
+unset -f _of_surfaceMeshInfo 2>/dev/null
+_of_surfaceMeshInfo()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7225,8 +7225,8 @@ _surfaceMeshInfo()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7234,10 +7234,10 @@ _surfaceMeshInfo()
 
     return 0
 }
-complete -o nospace -F _surfaceMeshInfo surfaceMeshInfo
+complete -o nospace -F _of_surfaceMeshInfo surfaceMeshInfo
 
-unset -f _surfaceMeshTriangulate 2>/dev/null
-_surfaceMeshTriangulate()
+unset -f _of_surfaceMeshTriangulate 2>/dev/null
+_of_surfaceMeshTriangulate()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7267,8 +7267,8 @@ _surfaceMeshTriangulate()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7276,10 +7276,10 @@ _surfaceMeshTriangulate()
 
     return 0
 }
-complete -o nospace -F _surfaceMeshTriangulate surfaceMeshTriangulate
+complete -o nospace -F _of_surfaceMeshTriangulate surfaceMeshTriangulate
 
-unset -f _surfaceOrient 2>/dev/null
-_surfaceOrient()
+unset -f _of_surfaceOrient 2>/dev/null
+_of_surfaceOrient()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7299,8 +7299,8 @@ _surfaceOrient()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7308,10 +7308,10 @@ _surfaceOrient()
 
     return 0
 }
-complete -o nospace -F _surfaceOrient surfaceOrient
+complete -o nospace -F _of_surfaceOrient surfaceOrient
 
-unset -f _surfacePatch 2>/dev/null
-_surfacePatch()
+unset -f _of_surfacePatch 2>/dev/null
+_of_surfacePatch()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7331,8 +7331,8 @@ _surfacePatch()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7340,10 +7340,10 @@ _surfacePatch()
 
     return 0
 }
-complete -o nospace -F _surfacePatch surfacePatch
+complete -o nospace -F _of_surfacePatch surfacePatch
 
-unset -f _surfacePointMerge 2>/dev/null
-_surfacePointMerge()
+unset -f _of_surfacePointMerge 2>/dev/null
+_of_surfacePointMerge()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7363,8 +7363,8 @@ _surfacePointMerge()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7372,10 +7372,10 @@ _surfacePointMerge()
 
     return 0
 }
-complete -o nospace -F _surfacePointMerge surfacePointMerge
+complete -o nospace -F _of_surfacePointMerge surfacePointMerge
 
-unset -f _surfaceRedistributePar 2>/dev/null
-_surfaceRedistributePar()
+unset -f _of_surfaceRedistributePar 2>/dev/null
+_of_surfaceRedistributePar()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7398,8 +7398,8 @@ _surfaceRedistributePar()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7407,10 +7407,10 @@ _surfaceRedistributePar()
 
     return 0
 }
-complete -o nospace -F _surfaceRedistributePar surfaceRedistributePar
+complete -o nospace -F _of_surfaceRedistributePar surfaceRedistributePar
 
-unset -f _surfaceRefineRedGreen 2>/dev/null
-_surfaceRefineRedGreen()
+unset -f _of_surfaceRefineRedGreen 2>/dev/null
+_of_surfaceRefineRedGreen()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7430,8 +7430,8 @@ _surfaceRefineRedGreen()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7439,10 +7439,10 @@ _surfaceRefineRedGreen()
 
     return 0
 }
-complete -o nospace -F _surfaceRefineRedGreen surfaceRefineRedGreen
+complete -o nospace -F _of_surfaceRefineRedGreen surfaceRefineRedGreen
 
-unset -f _surfaceSplitByPatch 2>/dev/null
-_surfaceSplitByPatch()
+unset -f _of_surfaceSplitByPatch 2>/dev/null
+_of_surfaceSplitByPatch()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7462,8 +7462,8 @@ _surfaceSplitByPatch()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7471,10 +7471,10 @@ _surfaceSplitByPatch()
 
     return 0
 }
-complete -o nospace -F _surfaceSplitByPatch surfaceSplitByPatch
+complete -o nospace -F _of_surfaceSplitByPatch surfaceSplitByPatch
 
-unset -f _surfaceSplitByTopology 2>/dev/null
-_surfaceSplitByTopology()
+unset -f _of_surfaceSplitByTopology 2>/dev/null
+_of_surfaceSplitByTopology()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7492,8 +7492,8 @@ _surfaceSplitByTopology()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7501,10 +7501,10 @@ _surfaceSplitByTopology()
 
     return 0
 }
-complete -o nospace -F _surfaceSplitByTopology surfaceSplitByTopology
+complete -o nospace -F _of_surfaceSplitByTopology surfaceSplitByTopology
 
-unset -f _surfaceSplitNonManifolds 2>/dev/null
-_surfaceSplitNonManifolds()
+unset -f _of_surfaceSplitNonManifolds 2>/dev/null
+_of_surfaceSplitNonManifolds()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7524,8 +7524,8 @@ _surfaceSplitNonManifolds()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7533,10 +7533,10 @@ _surfaceSplitNonManifolds()
 
     return 0
 }
-complete -o nospace -F _surfaceSplitNonManifolds surfaceSplitNonManifolds
+complete -o nospace -F _of_surfaceSplitNonManifolds surfaceSplitNonManifolds
 
-unset -f _surfaceSubset 2>/dev/null
-_surfaceSubset()
+unset -f _of_surfaceSubset 2>/dev/null
+_of_surfaceSubset()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7556,8 +7556,8 @@ _surfaceSubset()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7565,10 +7565,10 @@ _surfaceSubset()
 
     return 0
 }
-complete -o nospace -F _surfaceSubset surfaceSubset
+complete -o nospace -F _of_surfaceSubset surfaceSubset
 
-unset -f _surfaceToPatch 2>/dev/null
-_surfaceToPatch()
+unset -f _of_surfaceToPatch 2>/dev/null
+_of_surfaceToPatch()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7588,8 +7588,8 @@ _surfaceToPatch()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7597,10 +7597,10 @@ _surfaceToPatch()
 
     return 0
 }
-complete -o nospace -F _surfaceToPatch surfaceToPatch
+complete -o nospace -F _of_surfaceToPatch surfaceToPatch
 
-unset -f _surfaceTransformPoints 2>/dev/null
-_surfaceTransformPoints()
+unset -f _of_surfaceTransformPoints 2>/dev/null
+_of_surfaceTransformPoints()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7620,8 +7620,8 @@ _surfaceTransformPoints()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7629,10 +7629,10 @@ _surfaceTransformPoints()
 
     return 0
 }
-complete -o nospace -F _surfaceTransformPoints surfaceTransformPoints
+complete -o nospace -F _of_surfaceTransformPoints surfaceTransformPoints
 
-unset -f _temporalInterpolate 2>/dev/null
-_temporalInterpolate()
+unset -f _of_temporalInterpolate 2>/dev/null
+_of_temporalInterpolate()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7662,8 +7662,8 @@ _temporalInterpolate()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7671,10 +7671,10 @@ _temporalInterpolate()
 
     return 0
 }
-complete -o nospace -F _temporalInterpolate temporalInterpolate
+complete -o nospace -F _of_temporalInterpolate temporalInterpolate
 
-unset -f _tetgenToFoam 2>/dev/null
-_tetgenToFoam()
+unset -f _of_tetgenToFoam 2>/dev/null
+_of_tetgenToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7697,8 +7697,8 @@ _tetgenToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7706,10 +7706,10 @@ _tetgenToFoam()
 
     return 0
 }
-complete -o nospace -F _tetgenToFoam tetgenToFoam
+complete -o nospace -F _of_tetgenToFoam tetgenToFoam
 
-unset -f _thermoFoam 2>/dev/null
-_thermoFoam()
+unset -f _of_thermoFoam 2>/dev/null
+_of_thermoFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7732,8 +7732,8 @@ _thermoFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7741,10 +7741,10 @@ _thermoFoam()
 
     return 0
 }
-complete -o nospace -F _thermoFoam thermoFoam
+complete -o nospace -F _of_thermoFoam thermoFoam
 
-unset -f _topoSet 2>/dev/null
-_topoSet()
+unset -f _of_topoSet 2>/dev/null
+_of_topoSet()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7774,8 +7774,8 @@ _topoSet()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7783,10 +7783,10 @@ _topoSet()
 
     return 0
 }
-complete -o nospace -F _topoSet topoSet
+complete -o nospace -F _of_topoSet topoSet
 
-unset -f _transformPoints 2>/dev/null
-_transformPoints()
+unset -f _of_transformPoints 2>/dev/null
+_of_transformPoints()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7813,8 +7813,8 @@ _transformPoints()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7822,10 +7822,10 @@ _transformPoints()
 
     return 0
 }
-complete -o nospace -F _transformPoints transformPoints
+complete -o nospace -F _of_transformPoints transformPoints
 
-unset -f _twoLiquidMixingFoam 2>/dev/null
-_twoLiquidMixingFoam()
+unset -f _of_twoLiquidMixingFoam 2>/dev/null
+_of_twoLiquidMixingFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7848,8 +7848,8 @@ _twoLiquidMixingFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7857,10 +7857,10 @@ _twoLiquidMixingFoam()
 
     return 0
 }
-complete -o nospace -F _twoLiquidMixingFoam twoLiquidMixingFoam
+complete -o nospace -F _of_twoLiquidMixingFoam twoLiquidMixingFoam
 
-unset -f _twoPhaseEulerFoam 2>/dev/null
-_twoPhaseEulerFoam()
+unset -f _of_twoPhaseEulerFoam 2>/dev/null
+_of_twoPhaseEulerFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7883,8 +7883,8 @@ _twoPhaseEulerFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7892,10 +7892,10 @@ _twoPhaseEulerFoam()
 
     return 0
 }
-complete -o nospace -F _twoPhaseEulerFoam twoPhaseEulerFoam
+complete -o nospace -F _of_twoPhaseEulerFoam twoPhaseEulerFoam
 
-unset -f _uncoupledKinematicParcelFoam 2>/dev/null
-_uncoupledKinematicParcelFoam()
+unset -f _of_uncoupledKinematicParcelFoam 2>/dev/null
+_of_uncoupledKinematicParcelFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7918,8 +7918,8 @@ _uncoupledKinematicParcelFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7927,10 +7927,10 @@ _uncoupledKinematicParcelFoam()
 
     return 0
 }
-complete -o nospace -F _uncoupledKinematicParcelFoam uncoupledKinematicParcelFoam
+complete -o nospace -F _of_uncoupledKinematicParcelFoam uncoupledKinematicParcelFoam
 
-unset -f _viewFactorsGen 2>/dev/null
-_viewFactorsGen()
+unset -f _of_viewFactorsGen 2>/dev/null
+_of_viewFactorsGen()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7957,8 +7957,8 @@ _viewFactorsGen()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7966,10 +7966,10 @@ _viewFactorsGen()
 
     return 0
 }
-complete -o nospace -F _viewFactorsGen viewFactorsGen
+complete -o nospace -F _of_viewFactorsGen viewFactorsGen
 
-unset -f _vtkUnstructuredToFoam 2>/dev/null
-_vtkUnstructuredToFoam()
+unset -f _of_vtkUnstructuredToFoam 2>/dev/null
+_of_vtkUnstructuredToFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -7989,8 +7989,8 @@ _vtkUnstructuredToFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -7998,10 +7998,10 @@ _vtkUnstructuredToFoam()
 
     return 0
 }
-complete -o nospace -F _vtkUnstructuredToFoam vtkUnstructuredToFoam
+complete -o nospace -F _of_vtkUnstructuredToFoam vtkUnstructuredToFoam
 
-unset -f _wallFunctionTable 2>/dev/null
-_wallFunctionTable()
+unset -f _of_wallFunctionTable 2>/dev/null
+_of_wallFunctionTable()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -8024,8 +8024,8 @@ _wallFunctionTable()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -8033,10 +8033,10 @@ _wallFunctionTable()
 
     return 0
 }
-complete -o nospace -F _wallFunctionTable wallFunctionTable
+complete -o nospace -F _of_wallFunctionTable wallFunctionTable
 
-unset -f _writeMeshObj 2>/dev/null
-_writeMeshObj()
+unset -f _of_writeMeshObj 2>/dev/null
+_of_writeMeshObj()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -8066,8 +8066,8 @@ _writeMeshObj()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -8075,10 +8075,10 @@ _writeMeshObj()
 
     return 0
 }
-complete -o nospace -F _writeMeshObj writeMeshObj
+complete -o nospace -F _of_writeMeshObj writeMeshObj
 
-unset -f _XiDyMFoam 2>/dev/null
-_XiDyMFoam()
+unset -f _of_XiDyMFoam 2>/dev/null
+_of_XiDyMFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -8101,8 +8101,8 @@ _XiDyMFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -8110,10 +8110,10 @@ _XiDyMFoam()
 
     return 0
 }
-complete -o nospace -F _XiDyMFoam XiDyMFoam
+complete -o nospace -F _of_XiDyMFoam XiDyMFoam
 
-unset -f _XiFoam 2>/dev/null
-_XiFoam()
+unset -f _of_XiFoam 2>/dev/null
+_of_XiFoam()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -8136,8 +8136,8 @@ _XiFoam()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -8145,10 +8145,10 @@ _XiFoam()
 
     return 0
 }
-complete -o nospace -F _XiFoam XiFoam
+complete -o nospace -F _of_XiFoam XiFoam
 
-unset -f _zipUpMesh 2>/dev/null
-_zipUpMesh()
+unset -f _of_zipUpMesh 2>/dev/null
+_of_zipUpMesh()
 {
     local cur="${COMP_WORDS[COMP_CWORD]}"
     local prev="${COMP_WORDS[COMP_CWORD-1]}"
@@ -8175,8 +8175,8 @@ _zipUpMesh()
                 COMPREPLY=($(compgen -f -- ${cur}))
             else
                 # Catch-all - present all remaining options
-                opts=$(_filter_opts "${opts}" "${COMP_LINE}")
-                optsWithArgs=$(_filter_opts "${optsWithArgs}" "${COMP_LINE}")
+                opts=$(_of_filter_opts "${opts}" "${COMP_LINE}")
+                optsWithArgs=$(_of_filter_opts "${optsWithArgs}" "${COMP_LINE}")
                 COMPREPLY=($(compgen -W "${opts} ${optsWithArgs}" -- ${cur}))
             fi
             ;;
@@ -8184,7 +8184,7 @@ _zipUpMesh()
 
     return 0
 }
-complete -o nospace -F _zipUpMesh zipUpMesh
+complete -o nospace -F _of_zipUpMesh zipUpMesh
 
 
 #------------------------------------------------------------------------------