-
-
Notifications
You must be signed in to change notification settings - Fork 357
[Bug] install of WinGRASS-8.5dev-a277d8547c-18-Setup VCRUNTIME140.dll not found error #5663
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
OSGeo4W had similar problems in the last months. Is it similar to the following?:
I can't find back the thread I read a couple months ago. There was a change in a vc runtime at some point, that had a small breaking change, but kept the same 140 version, as it is since 2015. There's no problem for a newer runtime to make use of older ones, but compiling with an older runtime and using/linking a library that used that newer runtime had a problem. I have in mind something like "atomic" but as I said, I can't find the email/thread, I probably deleted it since. Anyways, the issues above+referenced issues were fixed in OSGeo4W, with new rebuilds. Something similar should be done here. |
We reproduced it in a clean windows sandbox. The step that installs the vcruntime is after a step that needs it. We need to reorder the install steps in the installer |
AFAICT Windows run times are some kind of a black box. No Clean documentation. |
Looks good, though the user experience to install first MS runtimes is a bit weird |
Martin was creating an installer from this branch to test it out. We weren't sure if a section could exist inside a section, and the g.mkfontcap was used in the section right below what was moved up in that branch. |
@echoix Please try out https://wingrass.fsv.cvut.cz/grass85/WinGRASS-8.5.0dev-8904d5f849-1-Setup.exe which was built from installer-windows-order |
Installs cleanly, but gui does not start . When manually running g.gui
wxpython get following error: wxGUI requires wxPython. DLL load failed
while importing _core: The specified module could not be found. You can
still use GRASS GIS modules in the command line or in python.
[image: image.png]
…On Tue, May 20, 2025 at 4:57 PM Martin Landa ***@***.***> wrote:
*landam* left a comment (OSGeo/grass#5663)
<#5663 (comment)>
Martin was creating an installer from this branch to test it out. We
weren't sure if a section could exist inside a section, and the g.mkfontcap
was used in the section right below what was moved up in that branch.
@echoix <https://github.com/echoix> Please try out
https://wingrass.fsv.cvut.cz/grass85/WinGRASS-8.5.0dev-8904d5f849-1-Setup.exe
—
Reply to this email directly, view it on GitHub
<#5663 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAQQR25MCMNHKOKQJIGXIOD27OJKBAVCNFSM6AAAAAB5JSENIWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDQOJVHAYTGMJSHE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
I'll still take a look tomorrow on a fresh clean sandbox instance, to rule out any other previous operations that could've interfered. The reproduction was really obvious. But, you could still continue the installation with the error message, and the rest would've installed (with the previous installer) |
Was there supposed to be a picture attached in your message |
Indeed it's not quite working. Yes, the step is ran first, but it isn't enough. Should we try the msvcrt2019-14.2-2.tar.bz2 rebuild instead? |
I tried with our current cmake builds, adding some CPACK info, and look at what cpack would generate as a NSIS installer. Added the following at the end of the root CMakeLists.txt: set(CPACK_GENERATOR NSIS)
set(CPACK_PACKAGE_VERSION_MAJOR "8")
set(CPACK_PACKAGE_VERSION_MINOR "5")
set(CPACK_PACKAGE_VERSION_PATCH "0")
include(InstallRequiredSystemLibraries)
include(CPack) Here's the nsi file generated (on ubuntu) for the installer (I had to trim some part of the DELETE lines): Details
; CPack install script designed for a nmake build
;--------------------------------
; You must define these values
!define VERSION "8.5.0"
!define PATCH "0"
!define INST_DIR "/home/vscode/grass/build/_CPack_Packages/Linux/NSIS/GRASS-8.5.0-Linux"
;--------------------------------
;Variables
Var MUI_TEMP
Var STARTMENU_FOLDER
Var SV_ALLUSERS
Var START_MENU
Var DO_NOT_ADD_TO_PATH
Var ADD_TO_PATH_ALL_USERS
Var ADD_TO_PATH_CURRENT_USER
Var INSTALL_DESKTOP
Var IS_DEFAULT_INSTALLDIR
;--------------------------------
;Include Modern UI
!include "MUI.nsh"
;Default installation folder
InstallDir "$PROGRAMFILES\GRASS 8.5.0"
;--------------------------------
;General
;Name and file
Name "GRASS 8.5.0"
OutFile "/home/vscode/grass/build/_CPack_Packages/Linux/NSIS/GRASS-8.5.0-Linux.exe"
;Set compression
SetCompressor lzma
;Require administrator access
RequestExecutionLevel admin
!include Sections.nsh
;--- Component support macros: ---
; The code for the add/remove functionality is from:
; https://nsis.sourceforge.io/Add/Remove_Functionality
; It has been modified slightly and extended to provide
; inter-component dependencies.
Var AR_SecFlags
Var AR_RegFlags
; Loads the "selected" flag for the section named SecName into the
; variable VarName.
!macro LoadSectionSelectedIntoVar SecName VarName
SectionGetFlags ${${SecName}} $${VarName}
IntOp $${VarName} $${VarName} & ${SF_SELECTED} ;Turn off all other bits
!macroend
; Loads the value of a variable... can we get around this?
!macro LoadVar VarName
IntOp $R0 0 + $${VarName}
!macroend
; Sets the value of a variable
!macro StoreVar VarName IntValue
IntOp $${VarName} 0 + ${IntValue}
!macroend
!macro InitSection SecName
; This macro reads component installed flag from the registry and
;changes checked state of the section on the components page.
;Input: section index constant name specified in Section command.
ClearErrors
;Reading component status from registry
ReadRegDWORD $AR_RegFlags HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0\Components\${SecName}" "Installed"
IfErrors "default_${SecName}"
;Status will stay default if registry value not found
;(component was never installed)
IntOp $AR_RegFlags $AR_RegFlags & ${SF_SELECTED} ;Turn off all other bits
SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading default section flags
IntOp $AR_SecFlags $AR_SecFlags & 0xFFFE ;Turn lowest (enabled) bit off
IntOp $AR_SecFlags $AR_RegFlags | $AR_SecFlags ;Change lowest bit
; Note whether this component was installed before
!insertmacro StoreVar ${SecName}_was_installed $AR_RegFlags
IntOp $R0 $AR_RegFlags & $AR_RegFlags
;Writing modified flags
SectionSetFlags ${${SecName}} $AR_SecFlags
"default_${SecName}:"
!insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected
!macroend
!macro FinishSection SecName
; This macro reads section flag set by user and removes the section
;if it is not selected.
;Then it writes component installed flag to registry
;Input: section index constant name specified in Section command.
SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading section flags
;Checking lowest bit:
IntOp $AR_SecFlags $AR_SecFlags & ${SF_SELECTED}
IntCmp $AR_SecFlags 1 "leave_${SecName}"
;Section is not selected:
;Calling Section uninstall macro and writing zero installed flag
!insertmacro "Remove_${${SecName}}"
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0\Components\${SecName}" \
"Installed" 0
Goto "exit_${SecName}"
"leave_${SecName}:"
;Section is selected:
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0\Components\${SecName}" \
"Installed" 1
"exit_${SecName}:"
!macroend
!macro RemoveSection_CPack SecName
; This macro is used to call section's Remove_... macro
;from the uninstaller.
;Input: section index constant name specified in Section command.
!insertmacro "Remove_${${SecName}}"
!macroend
; Determine whether the selection of SecName changed
!macro MaybeSelectionChanged SecName
!insertmacro LoadVar ${SecName}_selected
SectionGetFlags ${${SecName}} $R1
IntOp $R1 $R1 & ${SF_SELECTED} ;Turn off all other bits
; See if the status has changed:
IntCmp $R0 $R1 "${SecName}_unchanged"
!insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected
IntCmp $R1 ${SF_SELECTED} "${SecName}_was_selected"
!insertmacro "Deselect_required_by_${SecName}"
goto "${SecName}_unchanged"
"${SecName}_was_selected:"
!insertmacro "Select_${SecName}_depends"
"${SecName}_unchanged:"
!macroend
;--- End of Add/Remove macros ---
;--------------------------------
;Interface Settings
!define MUI_HEADERIMAGE
!define MUI_ABORTWARNING
;----------------------------------------
; based upon a script of "Written by KiCHiK 2003-01-18 05:57:02"
;----------------------------------------
!verbose 3
!include "WinMessages.NSH"
!verbose 4
;====================================================
; get_NT_environment
; Returns: the selected environment
; Output : head of the stack
;====================================================
!macro select_NT_profile UN
Function ${UN}select_NT_profile
StrCmp $ADD_TO_PATH_ALL_USERS "1" 0 environment_single
DetailPrint "Selected environment for all users"
Push "all"
Return
environment_single:
DetailPrint "Selected environment for current user only."
Push "current"
Return
FunctionEnd
!macroend
!insertmacro select_NT_profile ""
!insertmacro select_NT_profile "un."
;----------------------------------------------------
!define NT_current_env 'HKCU "Environment"'
!define NT_all_env 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
!ifndef WriteEnvStr_RegKey
!ifdef ALL_USERS
!define WriteEnvStr_RegKey \
'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
!else
!define WriteEnvStr_RegKey 'HKCU "Environment"'
!endif
!endif
; AddToPath - Adds the given dir to the search path.
; Input - head of the stack
; Note - Win9x systems requires reboot
Function AddToPath
Exch $0
Push $1
Push $2
Push $3
# don't add if the path doesn't exist
IfFileExists "$0\*.*" "" AddToPath_done
ReadEnvStr $1 PATH
; if the path is too long for a NSIS variable NSIS will return a 0
; length string. If we find that, then warn and skip any path
; modification as it will trash the existing path.
StrLen $2 $1
IntCmp $2 0 CheckPathLength_ShowPathWarning CheckPathLength_Done CheckPathLength_Done
CheckPathLength_ShowPathWarning:
Messagebox MB_OK|MB_ICONEXCLAMATION "Warning! PATH too long installer unable to modify PATH!"
Goto AddToPath_done
CheckPathLength_Done:
Push "$1;"
Push "$0;"
Call StrStr
Pop $2
StrCmp $2 "" "" AddToPath_done
Push "$1;"
Push "$0\;"
Call StrStr
Pop $2
StrCmp $2 "" "" AddToPath_done
GetFullPathName /SHORT $3 $0
Push "$1;"
Push "$3;"
Call StrStr
Pop $2
StrCmp $2 "" "" AddToPath_done
Push "$1;"
Push "$3\;"
Call StrStr
Pop $2
StrCmp $2 "" "" AddToPath_done
Call IsNT
Pop $1
StrCmp $1 1 AddToPath_NT
; Not on NT
StrCpy $1 $WINDIR 2
FileOpen $1 "$1\autoexec.bat" a
FileSeek $1 -1 END
FileReadByte $1 $2
IntCmp $2 26 0 +2 +2 # DOS EOF
FileSeek $1 -1 END # write over EOF
FileWrite $1 "$\r$\nSET PATH=%PATH%;$3$\r$\n"
FileClose $1
SetRebootFlag true
Goto AddToPath_done
AddToPath_NT:
StrCmp $ADD_TO_PATH_ALL_USERS "1" ReadAllKey
ReadRegStr $1 ${NT_current_env} "PATH"
Goto DoTrim
ReadAllKey:
ReadRegStr $1 ${NT_all_env} "PATH"
DoTrim:
StrCmp $1 "" AddToPath_NTdoIt
Push $1
Call Trim
Pop $1
StrCpy $0 "$1;$0"
AddToPath_NTdoIt:
StrCmp $ADD_TO_PATH_ALL_USERS "1" WriteAllKey
WriteRegExpandStr ${NT_current_env} "PATH" $0
Goto DoSend
WriteAllKey:
WriteRegExpandStr ${NT_all_env} "PATH" $0
DoSend:
SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
AddToPath_done:
Pop $3
Pop $2
Pop $1
Pop $0
FunctionEnd
; RemoveFromPath - Remove a given dir from the path
; Input: head of the stack
Function un.RemoveFromPath
Exch $0
Push $1
Push $2
Push $3
Push $4
Push $5
Push $6
IntFmt $6 "%c" 26 # DOS EOF
Call un.IsNT
Pop $1
StrCmp $1 1 unRemoveFromPath_NT
; Not on NT
StrCpy $1 $WINDIR 2
FileOpen $1 "$1\autoexec.bat" r
GetTempFileName $4
FileOpen $2 $4 w
GetFullPathName /SHORT $0 $0
StrCpy $0 "SET PATH=%PATH%;$0"
Goto unRemoveFromPath_dosLoop
unRemoveFromPath_dosLoop:
FileRead $1 $3
StrCpy $5 $3 1 -1 # read last char
StrCmp $5 $6 0 +2 # if DOS EOF
StrCpy $3 $3 -1 # remove DOS EOF so we can compare
StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoopRemoveLine
StrCmp $3 "$0$\n" unRemoveFromPath_dosLoopRemoveLine
StrCmp $3 "$0" unRemoveFromPath_dosLoopRemoveLine
StrCmp $3 "" unRemoveFromPath_dosLoopEnd
FileWrite $2 $3
Goto unRemoveFromPath_dosLoop
unRemoveFromPath_dosLoopRemoveLine:
SetRebootFlag true
Goto unRemoveFromPath_dosLoop
unRemoveFromPath_dosLoopEnd:
FileClose $2
FileClose $1
StrCpy $1 $WINDIR 2
Delete "$1\autoexec.bat"
CopyFiles /SILENT $4 "$1\autoexec.bat"
Delete $4
Goto unRemoveFromPath_done
unRemoveFromPath_NT:
StrCmp $ADD_TO_PATH_ALL_USERS "1" unReadAllKey
ReadRegStr $1 ${NT_current_env} "PATH"
Goto unDoTrim
unReadAllKey:
ReadRegStr $1 ${NT_all_env} "PATH"
unDoTrim:
StrCpy $5 $1 1 -1 # copy last char
StrCmp $5 ";" +2 # if last char != ;
StrCpy $1 "$1;" # append ;
Push $1
Push "$0;"
Call un.StrStr ; Find `$0;` in $1
Pop $2 ; pos of our dir
StrCmp $2 "" unRemoveFromPath_done
; else, it is in path
# $0 - path to add
# $1 - path var
StrLen $3 "$0;"
StrLen $4 $2
StrCpy $5 $1 -$4 # $5 is now the part before the path to remove
StrCpy $6 $2 "" $3 # $6 is now the part after the path to remove
StrCpy $3 $5$6
StrCpy $5 $3 1 -1 # copy last char
StrCmp $5 ";" 0 +2 # if last char == ;
StrCpy $3 $3 -1 # remove last char
StrCmp $ADD_TO_PATH_ALL_USERS "1" unWriteAllKey
WriteRegExpandStr ${NT_current_env} "PATH" $3
Goto unDoSend
unWriteAllKey:
WriteRegExpandStr ${NT_all_env} "PATH" $3
unDoSend:
SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
unRemoveFromPath_done:
Pop $6
Pop $5
Pop $4
Pop $3
Pop $2
Pop $1
Pop $0
FunctionEnd
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Uninstall stuff
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
###########################################
# Utility Functions #
###########################################
;====================================================
; IsNT - Returns 1 if the current system is NT, 0
; otherwise.
; Output: head of the stack
;====================================================
; IsNT
; no input
; output, top of the stack = 1 if NT or 0 if not
;
; Usage:
; Call IsNT
; Pop $R0
; ($R0 at this point is 1 or 0)
!macro IsNT un
Function ${un}IsNT
Push $0
ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
StrCmp $0 "" 0 IsNT_yes
; we are not NT.
Pop $0
Push 0
Return
IsNT_yes:
; NT!!!
Pop $0
Push 1
FunctionEnd
!macroend
!insertmacro IsNT ""
!insertmacro IsNT "un."
; StrStr
; input, top of stack = string to search for
; top of stack-1 = string to search in
; output, top of stack (replaces with the portion of the string remaining)
; modifies no other variables.
;
; Usage:
; Push "this is a long ass string"
; Push "ass"
; Call StrStr
; Pop $R0
; ($R0 at this point is "ass string")
!macro StrStr un
Function ${un}StrStr
Exch $R1 ; st=haystack,old$R1, $R1=needle
Exch ; st=old$R1,haystack
Exch $R2 ; st=old$R1,old$R2, $R2=haystack
Push $R3
Push $R4
Push $R5
StrLen $R3 $R1
StrCpy $R4 0
; $R1=needle
; $R2=haystack
; $R3=len(needle)
; $R4=cnt
; $R5=tmp
loop:
StrCpy $R5 $R2 $R3 $R4
StrCmp $R5 $R1 done
StrCmp $R5 "" done
IntOp $R4 $R4 + 1
Goto loop
done:
StrCpy $R1 $R2 "" $R4
Pop $R5
Pop $R4
Pop $R3
Pop $R2
Exch $R1
FunctionEnd
!macroend
!insertmacro StrStr ""
!insertmacro StrStr "un."
Function Trim ; Added by Pelaca
Exch $R1
Push $R2
Loop:
StrCpy $R2 "$R1" 1 -1
StrCmp "$R2" " " RTrim
StrCmp "$R2" "$\n" RTrim
StrCmp "$R2" "$\r" RTrim
StrCmp "$R2" ";" RTrim
GoTo Done
RTrim:
StrCpy $R1 "$R1" -1
Goto Loop
Done:
Pop $R2
Exch $R1
FunctionEnd
Function ConditionalAddToRegistry
Pop $0
Pop $1
StrCmp "$0" "" ConditionalAddToRegistry_EmptyString
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0" \
"$1" "$0"
;MessageBox MB_OK "Set Registry: '$1' to '$0'"
DetailPrint "Set install registry entry: '$1' to '$0'"
ConditionalAddToRegistry_EmptyString:
FunctionEnd
;--------------------------------
!ifdef CPACK_USES_DOWNLOAD
Function DownloadFile
IfFileExists $INSTDIR\* +2
CreateDirectory $INSTDIR
Pop $0
; Skip if already downloaded
IfFileExists $INSTDIR\$0 0 +2
Return
StrCpy $1 ""
try_again:
NSISdl::download "$1/$0" "$INSTDIR\$0"
Pop $1
StrCmp $1 "success" success
StrCmp $1 "Cancelled" cancel
MessageBox MB_OK "Download failed: $1"
cancel:
Return
success:
FunctionEnd
!endif
;--------------------------------
; Define some macro setting for the gui
;--------------------------------
;Pages
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE "/usr/local/python/3.12.7/lib/python3.12/site-packages/cmake/data/share/cmake-4.0/Templates/CPack.GenericLicense.txt"
Page custom InstallOptionsPage
!insertmacro MUI_PAGE_DIRECTORY
;Start Menu Folder Page Configuration
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX"
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\Humanity\GRASS 8.5.0"
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
!insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
;--------------------------------
;Languages
!insertmacro MUI_LANGUAGE "English" ;first language is the default language
!insertmacro MUI_LANGUAGE "Afrikaans"
!insertmacro MUI_LANGUAGE "Albanian"
!insertmacro MUI_LANGUAGE "Arabic"
!insertmacro MUI_LANGUAGE "Asturian"
!insertmacro MUI_LANGUAGE "Basque"
!insertmacro MUI_LANGUAGE "Belarusian"
!insertmacro MUI_LANGUAGE "Bosnian"
!insertmacro MUI_LANGUAGE "Breton"
!insertmacro MUI_LANGUAGE "Bulgarian"
!insertmacro MUI_LANGUAGE "Catalan"
!insertmacro MUI_LANGUAGE "Corsican"
!insertmacro MUI_LANGUAGE "Croatian"
!insertmacro MUI_LANGUAGE "Czech"
!insertmacro MUI_LANGUAGE "Danish"
!insertmacro MUI_LANGUAGE "Dutch"
!insertmacro MUI_LANGUAGE "Esperanto"
!insertmacro MUI_LANGUAGE "Estonian"
!insertmacro MUI_LANGUAGE "Farsi"
!insertmacro MUI_LANGUAGE "Finnish"
!insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "Galician"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "Greek"
!insertmacro MUI_LANGUAGE "Hebrew"
!insertmacro MUI_LANGUAGE "Hungarian"
!insertmacro MUI_LANGUAGE "Icelandic"
!insertmacro MUI_LANGUAGE "Indonesian"
!insertmacro MUI_LANGUAGE "Irish"
!insertmacro MUI_LANGUAGE "Italian"
!insertmacro MUI_LANGUAGE "Japanese"
!insertmacro MUI_LANGUAGE "Korean"
!insertmacro MUI_LANGUAGE "Kurdish"
!insertmacro MUI_LANGUAGE "Latvian"
!insertmacro MUI_LANGUAGE "Lithuanian"
!insertmacro MUI_LANGUAGE "Luxembourgish"
!insertmacro MUI_LANGUAGE "Macedonian"
!insertmacro MUI_LANGUAGE "Malay"
!insertmacro MUI_LANGUAGE "Mongolian"
!insertmacro MUI_LANGUAGE "Norwegian"
!insertmacro MUI_LANGUAGE "NorwegianNynorsk"
!insertmacro MUI_LANGUAGE "Pashto"
!insertmacro MUI_LANGUAGE "Polish"
!insertmacro MUI_LANGUAGE "Portuguese"
!insertmacro MUI_LANGUAGE "PortugueseBR"
!insertmacro MUI_LANGUAGE "Romanian"
!insertmacro MUI_LANGUAGE "Russian"
!insertmacro MUI_LANGUAGE "ScotsGaelic"
!insertmacro MUI_LANGUAGE "Serbian"
!insertmacro MUI_LANGUAGE "SerbianLatin"
!insertmacro MUI_LANGUAGE "SimpChinese"
!insertmacro MUI_LANGUAGE "Slovak"
!insertmacro MUI_LANGUAGE "Slovenian"
!insertmacro MUI_LANGUAGE "Spanish"
!insertmacro MUI_LANGUAGE "SpanishInternational"
!insertmacro MUI_LANGUAGE "Swedish"
!insertmacro MUI_LANGUAGE "Tatar"
!insertmacro MUI_LANGUAGE "Thai"
!insertmacro MUI_LANGUAGE "TradChinese"
!insertmacro MUI_LANGUAGE "Turkish"
!insertmacro MUI_LANGUAGE "Ukrainian"
!insertmacro MUI_LANGUAGE "Uzbek"
!insertmacro MUI_LANGUAGE "Vietnamese"
!insertmacro MUI_LANGUAGE "Welsh"
;--------------------------------
;Reserve Files
;These files should be inserted before other files in the data block
;Keep these lines before any File command
;Only for solid compression (by default, solid compression is enabled for BZIP2 and LZMA)
ReserveFile "NSIS.InstallOptions.ini"
!insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
; for UserInfo::GetName and UserInfo::GetAccountType
ReserveFile /plugin 'UserInfo.dll'
;--------------------------------
; Installation types
;--------------------------------
; Component sections
;--------------------------------
;Installer Sections
Section "-Core installation"
;Use the entire tree produced by the INSTALL target. Keep the
;list of directories here in sync with the RMDir commands below.
SetOutPath "$INSTDIR"
File /r "${INST_DIR}\*.*"
;Store installation folder
WriteRegStr SHCTX "Software\Humanity\GRASS 8.5.0" "" $INSTDIR
;Create uninstaller
WriteUninstaller "$INSTDIR\Uninstall.exe"
Push "DisplayName"
Push "GRASS 8.5.0"
Call ConditionalAddToRegistry
Push "DisplayVersion"
Push "8.5.0"
Call ConditionalAddToRegistry
Push "Publisher"
Push "Humanity"
Call ConditionalAddToRegistry
Push "UninstallString"
Push "$\"$INSTDIR\Uninstall.exe$\""
Call ConditionalAddToRegistry
Push "NoRepair"
Push "1"
Call ConditionalAddToRegistry
!ifdef CPACK_NSIS_ADD_REMOVE
;Create add/remove functionality
Push "ModifyPath"
Push "$INSTDIR\AddRemove.exe"
Call ConditionalAddToRegistry
!else
Push "NoModify"
Push "1"
Call ConditionalAddToRegistry
!endif
; Optional registration
Push "DisplayIcon"
Push "$INSTDIR\"
Call ConditionalAddToRegistry
Push "HelpLink"
Push ""
Call ConditionalAddToRegistry
Push "URLInfoAbout"
Push ""
Call ConditionalAddToRegistry
Push "Contact"
Push ""
Call ConditionalAddToRegistry
!insertmacro MUI_INSTALLOPTIONS_READ $INSTALL_DESKTOP "NSIS.InstallOptions.ini" "Field 5" "State"
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
;Create shortcuts
CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
;Read a value from an InstallOptions INI file
!insertmacro MUI_INSTALLOPTIONS_READ $DO_NOT_ADD_TO_PATH "NSIS.InstallOptions.ini" "Field 2" "State"
!insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_ALL_USERS "NSIS.InstallOptions.ini" "Field 3" "State"
!insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_CURRENT_USER "NSIS.InstallOptions.ini" "Field 4" "State"
; Write special uninstall registry entries
Push "StartMenu"
Push "$STARTMENU_FOLDER"
Call ConditionalAddToRegistry
Push "DoNotAddToPath"
Push "$DO_NOT_ADD_TO_PATH"
Call ConditionalAddToRegistry
Push "AddToPathAllUsers"
Push "$ADD_TO_PATH_ALL_USERS"
Call ConditionalAddToRegistry
Push "AddToPathCurrentUser"
Push "$ADD_TO_PATH_CURRENT_USER"
Call ConditionalAddToRegistry
Push "InstallToDesktop"
Push "$INSTALL_DESKTOP"
Call ConditionalAddToRegistry
!insertmacro MUI_STARTMENU_WRITE_END
SectionEnd
Section "-Add to path"
Push $INSTDIR\bin
StrCmp "" "ON" 0 doNotAddToPath
StrCmp $DO_NOT_ADD_TO_PATH "1" doNotAddToPath 0
Call AddToPath
doNotAddToPath:
SectionEnd
;--------------------------------
; Create custom pages
Function InstallOptionsPage
!insertmacro MUI_HEADER_TEXT "Install Options" "Choose options for installing GRASS 8.5.0"
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "NSIS.InstallOptions.ini"
FunctionEnd
;--------------------------------
; determine admin versus local install
Function un.onInit
ClearErrors
UserInfo::GetName
IfErrors noLM
Pop $0
UserInfo::GetAccountType
Pop $1
StrCmp $1 "Admin" 0 +3
SetShellVarContext all
;MessageBox MB_OK 'User "$0" is in the Admin group'
Goto done
StrCmp $1 "Power" 0 +3
SetShellVarContext all
;MessageBox MB_OK 'User "$0" is in the Power Users group'
Goto done
noLM:
;Get installation folder from registry if available
done:
FunctionEnd
;--- Add/Remove callback functions: ---
!macro SectionList MacroName
;This macro used to perform operation on multiple sections.
;List all of your components in following manner here.
!macroend
Section -FinishComponents
;Removes unselected components and writes component status to registry
!insertmacro SectionList "FinishSection"
!ifdef CPACK_NSIS_ADD_REMOVE
; Get the name of the installer executable
System::Call 'kernel32::GetModuleFileNameA(i 0, t .R0, i 1024) i r1'
StrCpy $R3 $R0
; Strip off the last 13 characters, to see if we have AddRemove.exe
StrLen $R1 $R0
IntOp $R1 $R0 - 13
StrCpy $R2 $R0 13 $R1
StrCmp $R2 "AddRemove.exe" addremove_installed
; We're not running AddRemove.exe, so install it
CopyFiles $R3 $INSTDIR\AddRemove.exe
addremove_installed:
!endif
SectionEnd
;--- End of Add/Remove callback functions ---
;--------------------------------
; Component dependencies
Function .onSelChange
!insertmacro SectionList MaybeSelectionChanged
FunctionEnd
;--------------------------------
;Uninstaller Section
Section "Uninstall"
ReadRegStr $START_MENU SHCTX \
"Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0" "StartMenu"
;MessageBox MB_OK "Start menu is in: $START_MENU"
ReadRegStr $DO_NOT_ADD_TO_PATH SHCTX \
"Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0" "DoNotAddToPath"
ReadRegStr $ADD_TO_PATH_ALL_USERS SHCTX \
"Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0" "AddToPathAllUsers"
ReadRegStr $ADD_TO_PATH_CURRENT_USER SHCTX \
"Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0" "AddToPathCurrentUser"
;MessageBox MB_OK "Add to path: $DO_NOT_ADD_TO_PATH all users: $ADD_TO_PATH_ALL_USERS"
ReadRegStr $INSTALL_DESKTOP SHCTX \
"Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0" "InstallToDesktop"
;MessageBox MB_OK "Install to desktop: $INSTALL_DESKTOP "
;Remove files we installed.
;Keep the list of directories here in sync with the File commands above.
Delete "$INSTDIR\bin"
Delete "$INSTDIR\bin\grass"
Delete "$INSTDIR\lib"
Delete "$INSTDIR\lib\grass85"
Delete "$INSTDIR\lib\grass85\etc"
Delete "$INSTDIR\lib\grass85\etc\d.polar"
Delete "$INSTDIR\lib\grass85\etc\d.polar\ps_defs.eps"
Delete "$INSTDIR\lib\grass85\etc\paint"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\compass_interior.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\n_arrow2.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\NorthArrow5.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\compass_exterior.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\n_arrow1.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\NorthArrow1.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\NorthArrow3.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\n_arrow1_fancy.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\north-arrow_1_simple_half_arrow.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\decorations\grasslogo.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\prolog.ps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\vert_line_dash.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\cross_normal.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\vert_line.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\diag_down.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\diag_down6.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\diag_down_dash.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\diag_up_dash.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\horiz_line_dash.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\horiz_line.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\cross_diag5.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\cross_normal5.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\horiz_zigzag.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\diag_up.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\cross_diag.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\diag_up6.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\horiz_line6.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\railroad_up.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\railroad_down.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\brick.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\vert_zigzag.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\vert_line6.eps"
Delete "$INSTDIR\lib\grass85\etc\paint\patterns\polka_dot.eps"
Delete "$INSTDIR\lib\grass85\etc\run"
Delete "$INSTDIR\lib\grass85\etc\d.mon"
Delete "$INSTDIR\lib\grass85\etc\d.mon\render_cmd.py"
Delete "$INSTDIR\lib\grass85\etc\renamed_options"
Delete "$INSTDIR\lib\grass85\etc\python"
Delete "$INSTDIR\lib\grass85\etc\python\grass"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\map3d.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\region.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\baseseriesmap.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\seriesmap.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\setup.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\reprojection_renderer.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\map.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\interactivemap.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\utils.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\jupyter\timeseriesmap.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\db.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\task.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\raster.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\core.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\db.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\setup.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\imagery.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\vector.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\raster3d.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__\utils.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\core.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\setup.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\array.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\task.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\raster3d.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\vector.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\raster.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\utils.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\script\imagery.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\exceptions"
Delete "$INSTDIR\lib\grass85\etc\python\grass\exceptions\__pycache__"
Delete "$INSTDIR\lib\grass85\etc\python\grass\exceptions\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\exceptions\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\__pycache__"
Delete "$INSTDIR\lib\grass85\etc\python\grass\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\imaging"
Delete "$INSTDIR\lib\grass85\etc\python\grass\imaging\images2ims.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\imaging\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\imaging\images2gif.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\imaging\images2swf.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\imaging\images2avi.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\imaging\operations.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\cluster.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\ctypes_loader.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\arraystats.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\vedit.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\gis.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\segment.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\gmath.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\date.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\dbmi.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\temporal.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\ogsf.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\raster3d.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\rowio.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\display.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\nviz.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\rtree.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\ctypes_preamble.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\vector.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\raster.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\stats.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\imagery.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\lib\proj.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\benchmark"
Delete "$INSTDIR\lib\grass85\etc\python\grass\benchmark\runners.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\benchmark\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\benchmark\plots.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\benchmark\app.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\benchmark\results.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\benchmark\__main__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\utils"
Delete "$INSTDIR\lib\grass85\etc\python\grass\utils\download.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\utils\__pycache__"
Delete "$INSTDIR\lib\grass85\etc\python\grass\utils\__pycache__\download.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\utils\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\utils\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pydispatch"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pydispatch\robust.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pydispatch\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pydispatch\saferef.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pydispatch\signal.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pydispatch\dispatcher.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pydispatch\errors.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pydispatch\robustapply.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\register.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\mapcalc.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\spatio_temporal_relationships.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\stds_export.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\c_libraries_interface.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\core.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\univar_statistics.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\temporal_raster_algebra.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\spatial_extent.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\temporal_topology_dataset_connector.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\temporal_vector_algebra.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\abstract_dataset.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\base.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\space_time_datasets.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\extract.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\abstract_map_dataset.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\stds_import.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\spatial_topology_dataset_connector.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\datetime_math.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\gui_support.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\factory.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\temporal_operator.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\temporal_algebra.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\temporal_granularity.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\temporal_raster_base_algebra.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\abstract_space_time_dataset.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\aggregation.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\unit_tests.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\temporal_raster3d_algebra.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\list_stds.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\temporal_extent.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\sampling.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\metadata.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\temporal\open_stds.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\create.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\history.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\__pycache__"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\__pycache__\manage.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\__pycache__\config.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\__pycache__\checks.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\manage.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\data.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\checks.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\grassdb\config.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\semantic_label"
Delete "$INSTDIR\lib\grass85\etc\python\grass\semantic_label\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\semantic_label\reader.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app\__pycache__"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app\__pycache__\data.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app\__pycache__\runtime.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app\data.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app\cli.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app\runtime.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\app\__main__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\grid"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\grid\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\grid\grid.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\grid\patch.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\grid\split.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\shortcuts.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface\docstring.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface\env.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface\flag.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface\typedict.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface\module.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface\parameter.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface\read.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector\sql.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector\vector_type.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector\table.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector\basic.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector\geometry.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector\find.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector\abstract.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\messages"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\messages\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\errors.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\rpc"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\rpc\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\rpc\base.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\gis"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\gis\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\gis\region.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster\history.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster\segment.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster\category.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster\rowio.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster\buffer.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster\abstract.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster\raster_type.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\utils.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\tests"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\tests\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\tests\benchmark.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\tests\set_mapset.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\shell"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\shell\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\shell\show.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\pygrass\shell\conversion.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\gutils.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\__init__.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\case.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\main.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\multirunner.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\checkers.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\runner.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\loader.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\invoker.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\multireport.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\gmodules.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\reporters.py"
Delete "$INSTDIR\lib\grass85\etc\python\grass\gunittest\utils.py"
Delete "$INSTDIR\lib\grass85\etc\db.test"
Delete "$INSTDIR\lib\grass85\etc\db.test\test1"
Delete "$INSTDIR\lib\grass85\etc\colors.desc"
Delete "$INSTDIR\lib\grass85\etc\VERSIONNUMBER"
Delete "$INSTDIR\lib\grass85\etc\i.band.library"
Delete "$INSTDIR\lib\grass85\etc\i.band.library\landsat.json"
Delete "$INSTDIR\lib\grass85\etc\i.band.library\sentinel.json"
Delete "$INSTDIR\lib\grass85\etc\colors"
Delete "$INSTDIR\lib\grass85\etc\colors\ndvi"
Delete "$INSTDIR\lib\grass85\etc\colors\srtm_plus"
Delete "$INSTDIR\lib\grass85\etc\colors\kelvin"
Delete "$INSTDIR\lib\grass85\etc\colors\viridis"
Delete "$INSTDIR\lib\grass85\etc\colors\plasma"
Delete "$INSTDIR\lib\grass85\etc\colors\inferno"
Delete "$INSTDIR\lib\grass85\etc\colors\ramp"
Delete "$INSTDIR\lib\grass85\etc\colors\grass"
Delete "$INSTDIR\lib\grass85\etc\colors\wave"
Delete "$INSTDIR\lib\grass85\etc\colors\roygbiv"
Delete "$INSTDIR\lib\grass85\etc\colors\corine"
Delete "$INSTDIR\lib\grass85\etc\colors\rainbow"
Delete "$INSTDIR\lib\grass85\etc\colors\fahrenheit"
Delete "$INSTDIR\lib\grass85\etc\colors\terrain"
Delete "$INSTDIR\lib\grass85\etc\colors\aspectcolr"
Delete "$INSTDIR\lib\grass85\etc\colors\precipitation"
Delete "$INSTDIR\lib\grass85\etc\colors\ryb"
Delete "$INSTDIR\lib\grass85\etc\colors\precipitation_daily"
Delete "$INSTDIR\lib\grass85\etc\colors\slope"
Delete "$INSTDIR\lib\grass85\etc\colors\evi"
Delete "$INSTDIR\lib\grass85\etc\colors\gyr"
Delete "$INSTDIR\lib\grass85\etc\colors\sepia"
Delete "$INSTDIR\lib\grass85\etc\colors\forest_cover"
Delete "$INSTDIR\lib\grass85\etc\colors\population_dens"
Delete "$INSTDIR\lib\grass85\etc\colors\reds"
Delete "$INSTDIR\lib\grass85\etc\colors\byr"
Delete "$INSTDIR\lib\grass85\etc\colors\etopo2"
Delete "$INSTDIR\lib\grass85\etc\colors\ndwi"
Delete "$INSTDIR\lib\grass85\etc\colors\blues"
Delete "$INSTDIR\lib\grass85\etc\colors\water"
Delete "$INSTDIR\lib\grass85\etc\colors\nlcd"
Delete "$INSTDIR\lib\grass85\etc\colors\rstcurv"
Delete "$INSTDIR\lib\grass85\etc\colors\gdd"
Delete "$INSTDIR\lib\grass85\etc\colors\soilmoisture"
Delete "$INSTDIR\lib\grass85\etc\colors\celsius"
Delete "$INSTDIR\lib\grass85\etc\colors\grey255"
Delete "$INSTDIR\lib\grass85\etc\colors\grey"
Delete "$INSTDIR\lib\grass85\etc\colors\curvature"
Delete "$INSTDIR\lib\grass85\etc\colors\magma"
Delete "$INSTDIR\lib\grass85\etc\colors\srtm"
Delete "$INSTDIR\lib\grass85\etc\colors\elevation"
Delete "$INSTDIR\lib\grass85\etc\colors\byg"
Delete "$INSTDIR\lib\grass85\etc\colors\aspect"
Delete "$INSTDIR\lib\grass85\etc\colors\greens"
Delete "$INSTDIR\lib\grass85\etc\colors\bcyr"
Delete "$INSTDIR\lib\grass85\etc\colors\srtm_percent"
Delete "$INSTDIR\lib\grass85\etc\colors\ryg"
Delete "$INSTDIR\lib\grass85\etc\colors\haxby"
Delete "$INSTDIR\lib\grass85\etc\colors\bgyr"
Delete "$INSTDIR\lib\grass85\etc\colors\oranges"
Delete "$INSTDIR\lib\grass85\etc\colors\grey1.0"
Delete "$INSTDIR\lib\grass85\etc\colors\precipitation_monthly"
Delete "$INSTDIR\lib\grass85\etc\colors\population"
Delete "$INSTDIR\lib\grass85\etc\colors\differences"
Delete "$INSTDIR\lib\grass85\etc\license"
Delete "$INSTDIR\lib\grass85\etc\symbol"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\strike_parallel"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\strike_box"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\strike_half-bowtie"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\strike_triangle"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\strike_circle"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\strike_cleavage"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\half-arrow_right"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\half-arrow_left"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\strike_line"
Delete "$INSTDIR\lib\grass85\etc\symbol\geology\circle_cross"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow1b"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow2"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow9"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow3"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\fancy_compass"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow7b"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow6"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow5"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow8b"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\basic_compass"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow8a"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow7a"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow1a"
Delete "$INSTDIR\lib\grass85\etc\symbol\n_arrows\n_arrow4"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\fiducial"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\dim_arrow"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\offbox_sw"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\4pt_star"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\fish"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\alpha_flag"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\bridge"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\adcp"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\offbox_nw"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\pentagon"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\dive_flag"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\offbox_se"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\ring"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\simple_zia"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\ping"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\airport"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\half-box"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\target"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\offbox_ne"
Delete "$INSTDIR\lib\grass85\etc\symbol\extra\half-circle"
Delete "$INSTDIR\lib\grass85\etc\symbol\demo"
Delete "$INSTDIR\lib\grass85\etc\symbol\demo\smrk"
Delete "$INSTDIR\lib\grass85\etc\symbol\demo\muchomurka"
Delete "$INSTDIR\lib\grass85\etc\symbol\legend"
Delete "$INSTDIR\lib\grass85\etc\symbol\legend\area_curved"
Delete "$INSTDIR\lib\grass85\etc\symbol\legend\area"
Delete "$INSTDIR\lib\grass85\etc\symbol\legend\line_crooked"
Delete "$INSTDIR\lib\grass85\etc\symbol\legend\line"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\arrow"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\pushpin"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\triangle"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\marker"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\box"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\cross2"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\pin_dot"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\star"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\arrow3"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\cross1"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\x"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\diamond"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\arrow2"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\arrow1"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\circle"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\pin"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\hexagon"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\cross3"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\octagon"
Delete "$INSTDIR\lib\grass85\etc\symbol\basic\point"
Delete "$INSTDIR\lib\grass85\etc\element_list"
Delete "$INSTDIR\lib\grass85\etc\lister"
Delete "$INSTDIR\lib\grass85\etc\lister\cell"
Delete "$INSTDIR\lib\grass85\etc\lister\vector"
Delete "$INSTDIR\lib\grass85\etc\fontcap"
Delete "$INSTDIR\lib\grass85\etc\psdriver.ps"
Delete "$INSTDIR\lib\grass85\etc\echo"
Delete "$INSTDIR\lib\grass85\etc\r.watershed"
Delete "$INSTDIR\lib\grass85\etc\r.watershed\seg"
Delete "$INSTDIR\lib\grass85\etc\r.watershed\ram"
Delete "$INSTDIR\lib\grass85\etc\clean_temp"
Delete "$INSTDIR\lib\grass85\etc\current_time_s_ms"
Delete "$INSTDIR\lib\grass85\etc\proj"
Delete "$INSTDIR\lib\grass85\etc\proj\datumtransform.table"
Delete "$INSTDIR\lib\grass85\etc\proj\FIPS.code"
Delete "$INSTDIR\lib\grass85\etc\proj\ellipse.table"
Delete "$INSTDIR\lib\grass85\etc\proj\state27"
Delete "$INSTDIR\lib\grass85\etc\proj\datum.table"
Delete "$INSTDIR\lib\grass85\etc\proj\ellipse.table.solar.system"
Delete "$INSTDIR\lib\grass85\etc\proj\projections"
Delete "$INSTDIR\lib\grass85\etc\proj\state83"
Delete "$INSTDIR\lib\grass85\etc\lock"
Delete "$INSTDIR\lib\grass85\etc\i.find"
Delete "$INSTDIR\lib\grass85\etc\sql"
Delete "$INSTDIR\lib\grass85\etc\sql\vector_metadata_table.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\strds_metadata_table.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\strds_views.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\postgresql_indexes.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\raster_metadata_table.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\upgrade_db_2_to_3.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\update_strds_metadata_template_v3.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\stvds_views.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\drop_views.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\update_str3ds_metadata_template_old.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\raster3d_views.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\raster3d_metadata_table.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\update_strds_metadata_template_old.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\update_stds_spatial_temporal_extent_template_old.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\update_str3ds_metadata_template.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\update_strds_metadata_template.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\map_tables_template.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\raster_views.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\stvds_metadata_table.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\vector_views.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\str3ds_metadata_table.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\update_stvds_metadata_template_old.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\stds_tables_template.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\str3ds_views.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\sqlite3_indexes.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\update_stds_spatial_temporal_extent_template.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\update_stvds_metadata_template.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\postgresql_delete_trigger.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\stds_map_register_table_template.sql"
Delete "$INSTDIR\lib\grass85\etc\sql\sqlite3_delete_trigger.sql"
Delete "$INSTDIR\lib\grass85\gui"
Delete "$INSTDIR\lib\grass85\gui\wxpython"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\mapwindow.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__\preferences.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__\workspace.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__\mapwindow.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__\main.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__\wxnviz.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__\tools.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__\animation.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\tools.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\animation.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\preferences.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\main.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\wxnviz.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\nviz\workspace.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\__pycache__\import_export.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\__pycache__\extensions.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\__pycache__\mapsets_picker.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\__pycache__\colorrules.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\__pycache__\mcalc_builder.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\__pycache__\histogram.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\extensions.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\colorrules.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\histogram.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\mcalc_builder.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\import_export.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\modules\mapsets_picker.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\__pycache__\statusbar.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\__pycache__\manager.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\__pycache__\mapdisplay.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\__pycache__\g.gui.gcp.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\mapdisplay.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\g.gui.gcp.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\statusbar.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gcp\manager.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\README.md"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__\statistics.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__\digit.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__\g.gui.iclass.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__\plots.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\plots.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\g.gui.iclass.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\digit.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iclass\statistics.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__\statusbar.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__\workspace.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__\giface.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__\pyshell.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__\menudata.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__\layertree.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\pyshell.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\menudata.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\layertree.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\workspace.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\giface.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\lmgr\statusbar.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\__pycache__\vnet_utils.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\__pycache__\vnet_core.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\__pycache__\vnet_data.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\__pycache__\widgets.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\vnet_data.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\vnet_utils.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\vnet_core.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\widgets.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vnet\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\timeline"
Delete "$INSTDIR\lib\grass85\gui\wxpython\timeline\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\timeline\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\timeline\__pycache__\g.gui.timeline.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\timeline\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\timeline\g.gui.timeline.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\timeline\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\timeline\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\mapwindow.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__\preferences.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__\mapwindow.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__\wxdigit.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__\main.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__\g.gui.vdigit.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__\wxdisplay.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\g.gui.vdigit.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\preferences.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\main.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\wxdisplay.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\wxdigit.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\vdigit\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\g.gui.image2target.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\ii2t_mapdisplay.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__\ii2t_manager.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__\ii2t_toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__\ii2t_gis_set_error.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__\ii2t_statusbar.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__\ii2t_mapdisplay.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__\g.gui.image2target.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__\ii2t_gis_set.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\ii2t_toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\ii2t_manager.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\ii2t_gis_set_error.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\ii2t_gis_set.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\image2target\ii2t_statusbar.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\history"
Delete "$INSTDIR\lib\grass85\gui\wxpython\history\browser.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\history\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\history\__pycache__\tree.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\history\__pycache__\browser.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\history\tree.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__\statusbar.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__\gprint.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__\main.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__\test_mapdisp.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__\properties.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\main.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\test_mapdisp.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\statusbar.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\gprint.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\properties.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\__pycache__\wizard.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\__pycache__\functions.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\__pycache__\g.gui.rlisetup.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\__pycache__\sampling_frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\functions.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\wizard.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\g.gui.rlisetup.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\sampling_frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services\__pycache__\cap_interface.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services\__pycache__\widgets.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services\cap_interface.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services\widgets.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\web_services\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\model_items.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\g.gui.gmodeler.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\model_convert.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\model_items.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\preferences.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\giface.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\g.gui.gmodeler.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\panels.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\model_convert.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\canvas.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\menudata.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\model.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\preferences.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\menudata.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\panels.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\giface.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\canvas.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\model.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\catalog.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\g.gui.datacatalog.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__\tree.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__\catalog.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__\infomanager.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__\g.gui.datacatalog.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\infomanager.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\tree.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\startup"
Delete "$INSTDIR\lib\grass85\gui\wxpython\startup\guiutils.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\startup\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\startup\__pycache__\locdownload.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\startup\__pycache__\guiutils.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\startup\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\startup\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\startup\locdownload.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxgui.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\__pycache__\wizard.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\__pycache__\base.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\base.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\wizard.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\main_window"
Delete "$INSTDIR\lib\grass85\gui\wxpython\main_window\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\main_window\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\main_window\__pycache__\page.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\main_window\__pycache__\notebook.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\main_window\page.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\main_window\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\main_window\notebook.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\ip2i_mapdisplay.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\ip2i_statusbar.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\__pycache__\ip2i_toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\__pycache__\g.gui.photo2image.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\__pycache__\ip2i_statusbar.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\__pycache__\ip2i_manager.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\__pycache__\ip2i_mapdisplay.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\g.gui.photo2image.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\ip2i_toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\photo2image\ip2i_manager.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__\controllers.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__\iscatt_core.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__\core_c.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__\plots.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__\utils.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\plots.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\core_c.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\iscatt_core.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\controllers.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\iscatt\utils.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\mapwindow.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\data.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\temporal_manager.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\anim.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\mapwindow.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\provider.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\controller.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\g.gui.animation.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\nviztask.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__\utils.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\provider.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\g.gui.animation.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\data.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\anim.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\temporal_manager.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\nviztask.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\utils.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\animation\controller.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\module_items.dtd"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\menudata_pyedit.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\menudata_psmap.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\module_tree_menudata.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\module_items.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\menudata.README"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\main_menu.dtd"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\toolboxes.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\main_menu.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\grass-gxw.dtd"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\module_tree.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\menudata.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\grass-gxm.dtd"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\menudata_modeler.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\toolboxes.dtd"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\wxgui_items.xml"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\menudata.dtd"
Delete "$INSTDIR\lib\grass85\gui\wxpython\xml\wxgui_items.dtd"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\g.gui.mapswipe.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\mapwindow.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\__pycache__\mapwindow.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\__pycache__\g.gui.mapswipe.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\icons"
Delete "$INSTDIR\lib\grass85\gui\wxpython\icons\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\icons\__pycache__\icon.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\icons\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\icons\__pycache__\grass_icons.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\icons\icon.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\icons\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\icons\grass_icons.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\graphics.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\__pycache__\base.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\__pycache__\decorations.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\__pycache__\graphics.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\__pycache__\analysis.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\__pycache__\buffered.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\base.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\analysis.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\decorations.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\mapwin\buffered.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\render.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\gthread.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\menutree.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\gconsole.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\workspace.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\giface.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\menutree.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\layerlist.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\gcmd.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\settings.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\ws.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\treemodel.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\watchdog.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\gthread.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\globalvar.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\units.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\render.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\toolboxes.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\debug.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__pycache__\utils.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\globalvar.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\toolboxes.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\layerlist.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\watchdog.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\settings.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\workspace.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\giface.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\ws.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\treemodel.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\debug.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\units.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\gcmd.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\utils.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\core\gconsole.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\vinfo.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\__pycache__\manager.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\__pycache__\vinfo.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\__pycache__\base.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\__pycache__\g.gui.dbmgr.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\__pycache__\sqlbuilder.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\g.gui.dbmgr.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\sqlbuilder.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\base.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\dbmgr\manager.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\gselect.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\pyedit.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\preferences.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\prompt.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\pystc.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\simplelmgr.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\mapdisp.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\gselect.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\vselect.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\widgets.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\treeview.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\wrap.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\forms.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\goutput.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\menu.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\query.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\infobar.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\ghelp.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\goutput.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\prompt.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\forms.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\pystc.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\treeview.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\ghelp.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\vselect.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\preferences.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\mapdisp.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\simplelmgr.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\wrap.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\widgets.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\menu.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\pyedit.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\query.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\gui_core\infobar.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\__pycache__\scatter.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\__pycache__\base.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\__pycache__\profile.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\__pycache__\histogram.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\profile.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\base.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\scatter.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\histogram.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\wxplot\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__pycache__\instructions.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__pycache__\menudata.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__pycache__\utils.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__pycache__\g.gui.psmap.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\instructions.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\menudata.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\g.gui.psmap.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\psmap\utils.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\tplot"
Delete "$INSTDIR\lib\grass85\gui\wxpython\tplot\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\tplot\__pycache__\frame.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\tplot\__pycache__\g.gui.tplot.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\tplot\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\tplot\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\tplot\frame.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\tplot\g.gui.tplot.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\__pycache__"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\__pycache__\g.gui.rdigit.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\__pycache__\dialogs.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\__pycache__\toolbars.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\__pycache__\controller.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\__pycache__\__init__.cpython-312.pyc"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\__init__.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\toolbars.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\g.gui.rdigit.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\dialogs.py"
Delete "$INSTDIR\lib\grass85\gui\wxpython\rdigit\controller.py"
Delete "$INSTDIR\lib\grass85\gui\scripts"
Delete "$INSTDIR\lib\grass85\gui\scripts\d.rast3d"
Delete "$INSTDIR\lib\grass85\gui\scripts\d.wms"
Delete "$INSTDIR\lib\grass85\gui\images"
Delete "$INSTDIR\lib\grass85\gui\images\symbols"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\strike_line.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\strike_half-bowtie.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\strike_box.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\half-arrow_right.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\half-arrow_left.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\strike_triangle.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\circle_cross.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\strike_circle.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\strike_cleavage.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\geology\strike_parallel.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\basic_compass.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow4.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow3.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow5.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow8a.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow8b.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow1a.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow7b.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow7a.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow9.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow1b.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\fancy_compass.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow6.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows\n_arrow2.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\airport.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\fish.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\pentagon.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\target.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\offbox_ne.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\adcp.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\alpha_flag.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\ping.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\dim_arrow.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\bridge.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\half-circle.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\half-box.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\offbox_nw.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\fiducial.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\4pt_star.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\simple_zia.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\offbox_se.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\dive_flag.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\offbox_sw.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\extra\ring.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\demo"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\demo\smrk.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\demo\muchomurka.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\legend"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\legend\line.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\legend\area_curved.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\legend\line_crooked.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\legend\area.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\arrow.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\octagon.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\pin.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\cross1.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\triangle.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\cross2.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\arrow3.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\arrow1.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\circle.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\box.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\hexagon.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\cross3.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\x.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\pin_dot.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\point.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\marker.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\pushpin.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\star.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\diamond.png"
Delete "$INSTDIR\lib\grass85\gui\images\symbols\basic\arrow2.png"
Delete "$INSTDIR\lib\grass85\gui\images\small_down_arrow.png"
Delete "$INSTDIR\lib\grass85\gui\images\small_up_arrow.png"
Delete "$INSTDIR\lib\grass85\gui\images\qgis_world.png"
Delete "$INSTDIR\lib\grass85\gui\images\splash_screen.png"
Delete "$INSTDIR\lib\grass85\gui\images\grass_form.png"
Delete "$INSTDIR\lib\grass85\gui\images\scalebar-simple.png"
Delete "$INSTDIR\lib\grass85\gui\images\scalebar-fancy.png"
Delete "$INSTDIR\lib\grass85\gui\xml"
Delete "$INSTDIR\lib\grass85\gui\xml\grass-interface.dtd"
Delete "$INSTDIR\lib\grass85\gui\icons"
Delete "$INSTDIR\lib\grass85\gui\icons\grass_cmd.ico"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-8x8.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass_web.ico"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-32x32.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-192x192.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\module-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\relation-create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\shortest-distance.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\monitor-create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\unlocked.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\location-download.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\locked.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\rgb.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\print-compose.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\redraw.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-wms-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-cell-cats-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\raster-stats.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\mapset-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\modeler-settings.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\polygon.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-raster-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-bottom.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\raster3d.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\execute.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-grid-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-vector-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\label.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\map-info.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\erase.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\player-pause.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\reload.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\data-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\help.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\wms.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\loop-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\table-manager.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\region.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\rectangle-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\map-settings.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\pointer.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\vector-chart.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\label-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\raster.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\cats-copy.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\point-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\script-load.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\mapset.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\select.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\edit.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\tools.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\measure-length.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\settings.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-edit.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\polygon-create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\vector.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-raster-profile.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\gcp-create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\gcp-save.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\circle.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-raster3d-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\modeler-main.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\gcp-delete.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\grassdb.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-open.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\3d-settings.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\raster-calculator.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-shaded-relief-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\point-create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\ps-export.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\raster-import.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\line-create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\redo.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\question-mark.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\scalebar-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\font.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\shaded-relief.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\vertex-move.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-info.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\success.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-vector-chart-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\location-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\line-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\overlay-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\check.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\text-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-raster-histogram.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\quit.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-down.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\vector-tools.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-command-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-import.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-vector-more.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-opacity.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\python.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\pan.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\show.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\vector-thematic.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\line-move.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\aspect-arrow.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\image-export.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-export.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\his.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\3d-help.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\zoom-region.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-group-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\line-split.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\modeler-variables.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\polygon-delete.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-more.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\info.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\save.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\zoom-more.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\map-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\line-delete.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\player-stop.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\north-arrow-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\exclamation-mark.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\legend-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\location.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\flythrough.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\centroid-create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\print.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\boundary-create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\gcp-rms.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\georectify.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\cross.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-rgb-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\zoom-layer.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\zoom-out.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-label-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\player-back.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\attributes-display.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\page-settings.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-raster-more.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-remove.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\zoom-extent.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\3d-rotate.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\script-save.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-aspect-arrow-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\table.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\time-period.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\move.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-his-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\gcp-remove.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\vertex-delete.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\zoom-last.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\player-repeat-back-forward.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\map-export.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\zoom-in.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\image-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\vector-import.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\undo.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\vertex-create.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\monitor-dock.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\gcp-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\line-edit.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\area-measure.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\stats.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\open.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-vector-thematic-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\grassdb-add.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\python-export.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-raster-analyze.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\cell-cats.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\monitor-settings.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-redraw.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\options.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\layer-up.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\cats-display.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass\pdf-export.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass_sql.ico"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-96x96.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass.ico"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-24x24.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass_dialog.ico"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-16x16.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-64x64.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-40x40.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-80x80.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-48x48.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-36x36.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-42x42.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\bg.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\he.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\pt.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\ru.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\id.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\ka.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\ml.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\af.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\hu.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\pl.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\uk.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\vi.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\tr.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\lv.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\el.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\sl.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\xh.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\sr.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\mr.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\de.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\fi.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\cs.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\lt.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\th.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\am.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\no.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\sv.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\is.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\it.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\sk.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\nl.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\ja.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\ta.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\lo.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\sq.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\da.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\mn.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\ro.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\pt_br.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\et.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\hr.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\es.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\fa.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\ar.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\fr.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\ko.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\zh.png"
Delete "$INSTDIR\lib\grass85\gui\icons\flags\zh_tw.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass_msys.ico"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-72x72.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass_osgeo.ico"
Delete "$INSTDIR\lib\grass85\gui\icons\grass_map.ico"
Delete "$INSTDIR\lib\grass85\gui\icons\wingrass.ico"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-22x22.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass-128x128.png"
Delete "$INSTDIR\lib\grass85\gui\icons\grass_nviz.ico"
Delete "$INSTDIR\lib\grass85\docs"
Delete "$INSTDIR\lib\grass85\docs\html"
Delete "$INSTDIR\lib\grass85\docs\html\r.topidx.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_layer_manager.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.fft.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.to.rast3elev.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_qcount_5.png"
Delete "$INSTDIR\lib\grass85\docs\html\ps_map_basic.png"
Delete "$INSTDIR\lib\grass85\docs\html\imageryintro.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.mkfontcap.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.flow.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_python_code_result.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.to.db.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_loop.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.image.mosaic.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.rdigit.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_surf_random.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.latlong.html"
Delete "$INSTDIR\lib\grass85\docs\html\dshade.png"
Delete "$INSTDIR\lib\grass85\docs\html\i_pca_result.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.reclass.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.proj.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.gisenv.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.extension.all.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.in.v5d.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.resamp.stats.html"
Delete "$INSTDIR\lib\grass85\docs\html\db.select.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.ortho.transform.html"
Delete "$INSTDIR\lib\grass85\docs\html\grass_start.png"
Delete "$INSTDIR\lib\grass85\docs\html\db.dropdb.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.random.cells.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_centroids.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.bin.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.snap.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_vi_gari.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_rast_num_zoom.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_geomorphon.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.mask.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.sample.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.gdal.html"
Delete "$INSTDIR\lib\grass85\docs\html\m.proj.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_clump_lakes.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_carve_dem_carved_shaded.png"
Delete "$INSTDIR\lib\grass85\docs\html\location-download.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.extract.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.upgrade.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.to.vect.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.accumulate.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.atcorr.html"
Delete "$INSTDIR\lib\grass85\docs\html\hamburger_menu.svg"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.image2target.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.fillnulls.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.zc.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_watershed_drainage.png"
Delete "$INSTDIR\lib\grass85\docs\html\vnetsteiner.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_qcount_1.png"
Delete "$INSTDIR\lib\grass85\docs\html\vnetisotime.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.report.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.colors.out.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.transect.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.sample.html"
Delete "$INSTDIR\lib\grass85\docs\html\grassdocs.css"
Delete "$INSTDIR\lib\grass85\docs\html\r.regression.line.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_ortho_photo_step7.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_in_wms_sentinel2.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.colors.out.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.import.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.surf.random.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.proj.html"
Delete "$INSTDIR\lib\grass85\docs\html\displaydrivers.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.cost.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.timetable.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.tplot.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.series.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_pansharpen_rgb_pca542.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.coin.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_maxlik_classes.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_li_renyi.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.neighbors.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.rename.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.rast.num.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_patch.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_clean_rmsa.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_rgb_elevation.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.filename.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.spreadpath.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_to_rast3_test.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_fill_holes_filled_with_dissolve.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.retile.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.cross.rast.png"
Delete "$INSTDIR\lib\grass85\docs\html\db.databases.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.cluster.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.sim.sediment.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.bin.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_iphoto2image_frame.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\gi_gallery.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\d_background.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.vect.thematic.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_net_visibility.png"
Delete "$INSTDIR\lib\grass85\docs\html\rcost_solvedir.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_vect_thematic.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.colors.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_python.png"
Delete "$INSTDIR\lib\grass85\docs\html\m_measure_distance.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.modules.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.info.html"
Delete "$INSTDIR\lib\grass85\docs\html\test.r3flow.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.mapset.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.basins.fill.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_in_lidar_base_raster.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.mapswipe.html"
Delete "$INSTDIR\lib\grass85\docs\html\legend.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_surf_gauss.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.import.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_carve_dem_carved_accum.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_lines.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.copy.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.lines.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_param_scale_morph.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v.neighbors.html"
Delete "$INSTDIR\lib\grass85\docs\html\projectionintro.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_to_rast_direction.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_legend.png"
Delete "$INSTDIR\lib\grass85\docs\html\aspect.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_line.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.in.xyz.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.to.rast.html"
Delete "$INSTDIR\lib\grass85\docs\html\gi_imagery.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\d.font.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_patch_benchmark_memory.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.lrs.where.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_modules_style_left.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.circle.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_contains_pol.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.recode.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_voronoi_areas.png"
Delete "$INSTDIR\lib\grass85\docs\html\jupyter_interactive_map.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.gmodeler.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.outlier.html"
Delete "$INSTDIR\lib\grass85\docs\html\sweep2.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_rdigit_step3.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_gwflow_concept.png"
Delete "$INSTDIR\lib\grass85\docs\html\db.execute.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_loop_dlg.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.path.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_grid_red_grid.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.unregister.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_pansharpen_rgb_landsat542.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_rlisetup_6.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.what.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.droprow.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.support.stats.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_vnet.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.report.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.to.rast3.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.label.sa.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.statistics.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.out.vtk.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.pack.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_fill_holes_filled.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_square_cap.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_mmodule.png"
Delete "$INSTDIR\lib\grass85\docs\html\geomorphon.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.rectify.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.grid.html"
Delete "$INSTDIR\lib\grass85\docs\html\grass-ogr.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.transform.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.create.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_clump_lsat.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_path_with_r_watershed_direction.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.vect.univar.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_variables_run.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.ortho.photo.html"
Delete "$INSTDIR\lib\grass85\docs\html\gi_temporal.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.pov.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.pielou.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.eb.netrad.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.vect.list.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.evapo.time.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.sun.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.topo.corr.html"
Delete "$INSTDIR\lib\grass85\docs\html\hamburger_menu_close.svg"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.allpairs.html"
Delete "$INSTDIR\lib\grass85\docs\html\jupyter_3d_map.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.evapo.mh.html"
Delete "$INSTDIR\lib\grass85\docs\html\rterraflow_dir2.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.centroids.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_segment_lsat7_seg_min5.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.dbmgr.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.group.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.remove.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.mps.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_stream_extract_accum_weighted_zoom.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.srtm.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.surf.idw.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.iscatt.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.extrude.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_modis_3.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.polar.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.geodesic.html"
Delete "$INSTDIR\lib\grass85\docs\html\gi_cartography.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.resamp.bspline.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast3d.algebra.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_dlg_module.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.rlisetup.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.ortho.elev.html"
Delete "$INSTDIR\lib\grass85\docs\html\grass_icon.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_plane_3d.png"
Delete "$INSTDIR\lib\grass85\docs\html\rhorizon_raster_speedup.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.mapcalc.html"
Delete "$INSTDIR\lib\grass85\docs\html\psdriver.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_area_s.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.colorlist.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.plane.html"
Delete "$INSTDIR\lib\grass85\docs\html\gi_general.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\i.albedo.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.kappa.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_series_benchmark_memory.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.category.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.external.out.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_nviz_tools_light.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_point_s.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.to.rast3.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_segment_ortho_segs_l2_l5.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r_in_lidar_dem_mean3D.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_lower_toolbar.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.out.pov.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_rgb.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.buffer.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_polar_aspect.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.topology.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.buildvrt.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_to_rast_binning.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.eb.evapfr.html"
Delete "$INSTDIR\lib\grass85\docs\html\jupyter_map.png"
Delete "$INSTDIR\lib\grass85\docs\html\rhorizon_singlepoint_plot.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.vect.import.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.target.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.to.rast3elev.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_parser_test.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_colors_stddev.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_decimate_grid_cat.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.watershed.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_colors_enhance_uncorrected.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v.class.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.mon.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_in_lidar_binning_count.png"
Delete "$INSTDIR\lib\grass85\docs\html\test.raster3d.lib.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_op_or.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_fill_stats_smoothing.png"
Delete "$INSTDIR\lib\grass85\docs\html\gi_python.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\vnetpath.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.padcv.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_li_edgedensity_formula_1.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.info.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.psmap.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_vi_arvi.png"
Delete "$INSTDIR\lib\grass85\docs\html\grass-pg.html"
Delete "$INSTDIR\lib\grass85\docs\html\runivar_basins_elev_zonal.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.proj.html"
Delete "$INSTDIR\lib\grass85\docs\html\gi_3dview.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_rlisetup_5.png"
Delete "$INSTDIR\lib\grass85\docs\html\iclass_frame.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r3.in.bin.html"
Delete "$INSTDIR\lib\grass85\docs\html\rshade.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.tplot.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.salesman.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_rdigit_step2.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.mapcalc.simple.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.reclass.html"
Delete "$INSTDIR\lib\grass85\docs\html\rhorizon_polar_plot.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.correlate.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_albedo_landsat5.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3flow_flowlines_color.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_avg_run.png"
Delete "$INSTDIR\lib\grass85\docs\html\mapset.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.segment.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast3d.univar.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.vect.chart.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.what.strds.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.shape.html"
Delete "$INSTDIR\lib\grass85\docs\html\gi_gui.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\i.tasscap.html"
Delete "$INSTDIR\lib\grass85\docs\html\zipcodes_larger2000ha.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.toolboxes.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.timeline.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.geomorphon.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_net_alloc_from_centers.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.png.html"
Delete "$INSTDIR\lib\grass85\docs\html\rhorizon_raster_time.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_relation.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_mfilter_benchmark_2.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.vect.algebra.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.gridatb.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.lrs.create.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_surf_fractal_simple.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.grow.distance.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.northarrow.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.import.html"
Delete "$INSTDIR\lib\grass85\docs\html\rhorizon_shaded_dem_point.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.rgb.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.text.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.path.html"
Delete "$INSTDIR\lib\grass85\docs\html\db.connect.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.object.geometry.html"
Delete "$INSTDIR\lib\grass85\docs\html\zipcodes_minor1000ha.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_area_lines.png"
Delete "$INSTDIR\lib\grass85\docs\html\vnetiso.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.surf.area.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.univar.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.manual.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.what.vect.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_atcorr_B02_atcorr.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.vect.observe.strds.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_cluster_landsat_clustering.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_hull.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.findfile.html"
Delete "$INSTDIR\lib\grass85\docs\html\psmap_frame.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.ros.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.covar.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.kcv.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.shannon.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_lake_lidar_dem.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\jquery.fixedheadertable.min.js"
Delete "$INSTDIR\lib\grass85\docs\html\help_project_structure.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.xyz.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_db.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.relief.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.his.rgb.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_qcount_3.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.rast.arrow.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_vect_chart_pie_3d.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_dissolve_towns.png"
Delete "$INSTDIR\lib\grass85\docs\html\raster3d_layout.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_correlate_plot.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.spanningtree.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.horizon.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.blend.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.vect.extract.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_maxlik_rejection.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.neighbors.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.centrality.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_spectral.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.rectify.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.grow.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.connect.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.profile.html"
Delete "$INSTDIR\lib\grass85\docs\html\parser_standard_options.js"
Delete "$INSTDIR\lib\grass85\docs\html\v.surf.bspline.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.uslek.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.title.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.ppm3.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.iclass.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.pdal.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_modis_2.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_fill_stats_02.png"
Delete "$INSTDIR\lib\grass85\docs\html\jupyter_timeseries_map.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.spectral.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.tempfile.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.stats.quantile.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_mkgrid.png"
Delete "$INSTDIR\lib\grass85\docs\html\rlipadcv_formula2.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.mapcalc.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_segment_ortho_segs_l1.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.fill.stats.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_census_wake2000.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.mapsets.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.rlisetup.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_variables_raster.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.colors.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_model_usle.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_in_lidar_binning_mean.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.ogr.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.mkgrid.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.colortable.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.html"
Delete "$INSTDIR\lib\grass85\docs\html\grassdb.png"
Delete "$INSTDIR\lib\grass85\docs\html\vrandom_z.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.simpson.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.erase.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_resamp_interp_benchmark_size.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_segment_spaced_percent_points.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\runivar_basins.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.barscale.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_tasscap_greenness.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v.overlay.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.random.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_crosses.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_intermediate_data.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_histogram_bar.png"
Delete "$INSTDIR\lib\grass85\docs\html\gi_raster3d.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v_kernel.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.info.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_li_simpson_formula.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_patch_zeros_as_nulls.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.rast.stats.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.mfilter.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.flow.html"
Delete "$INSTDIR\lib\grass85\docs\html\db.univar.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.message.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_net_alloc_to_centers.png"
Delete "$INSTDIR\lib\grass85\docs\html\db.describe.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_clip_region.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.out.postgis.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.topmodel.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_vi_ndvi.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_rdigit_step1.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_voronoi_skeleton.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_path_with_bitmask.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.what.rast3.html"
Delete "$INSTDIR\lib\grass85\docs\html\raster-import.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.connect.html"
Delete "$INSTDIR\lib\grass85\docs\html\db.out.ogr.html"
Delete "$INSTDIR\lib\grass85\docs\html\gi_addons.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\i_pansharpen_rgb_ihs542.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.ppm.html"
Delete "$INSTDIR\lib\grass85\docs\html\gi_display.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.surf.fractal.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.compress.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_series.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.landsat.toar.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rename.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_mkgrid_ppattern.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.image2target.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.clean.html"
Delete "$INSTDIR\lib\grass85\docs\html\db.drivers.html"
Delete "$INSTDIR\lib\grass85\docs\html\grass-dbf.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_ortho_photo_step8.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.gensig.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_mapcalc_simple.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.download.location.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_mrelation.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.aggregate.ds.html"
Delete "$INSTDIR\lib\grass85\docs\html\m.cogo.html"
Delete "$INSTDIR\lib\grass85\docs\html\jupyter_series_map.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.his.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_topo_corr_angles.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_net_alloc.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.delaunay.html"
Delete "$INSTDIR\lib\grass85\docs\html\db.test.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.droptable.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.labels.html"
Delete "$INSTDIR\lib\grass85\docs\html\rlimps_formula.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.resample.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.db.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.padsd.html"
Delete "$INSTDIR\lib\grass85\docs\html\colortables"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\grey255.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\sepia.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\greens.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\differences.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\ryg.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\reds.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\grass.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\aspect.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\etopo2.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\curvature.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\grey.eq.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\gdd.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\precipitation_monthly.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\nlcd.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\ryb.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\population.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\aspectcolr.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\roygbiv.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\rainbow.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\rstcurv.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\elevation.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\oranges.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\precipitation.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\plasma.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\kelvin.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\wave.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\evi.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\corine.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\srtm.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\ramp.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\magma.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\bcyr.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\precipitation_daily.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\fahrenheit.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\inferno.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\grey1.0.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\celsius.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\viridis.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\slope.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\forest_cover.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\haxby.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\water.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\grey.log.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\ndwi.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\byr.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\byg.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\ndvi.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\srtm_plus.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\soilmoisture.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\population_dens.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\gyr.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\random.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\grey.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\bgyr.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\blues.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\srtm_percent.png"
Delete "$INSTDIR\lib\grass85\docs\html\colortables\terrain.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_modis_1.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.datacatalog.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.timestamp.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.rast.leg.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.png.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_rast_elevation.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.pdal.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.support.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_carve_dem_orig_shaded.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_loop_final.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_rlisetup_8.png"
Delete "$INSTDIR\lib\grass85\docs\html\db.dropcolumn.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.sunmask.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_texture_mapsize_time.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_hull_3d.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_animation_tool.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.gridatb.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_modul.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\down_ticks.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\line.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\both_ticks.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\tail_checker.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\arrow_ends.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\part_checker.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\hollow.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\up_ticks.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\full_checker.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\mixed_checker.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\solid.png"
Delete "$INSTDIR\lib\grass85\docs\html\barscales\classic.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.lake.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.to.rast3.html"
Delete "$INSTDIR\lib\grass85\docs\html\sweep1.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_resamp_interp_new_250m.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_nviz_tools_surface.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r_sim_water.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_in_lidar_zrange.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.support.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_rlisetup_1.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.bridge.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_thin_vectorized.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.addtable.html"
Delete "$INSTDIR\lib\grass85\docs\html\rterraflow_direction_encoding.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_grow_distance_sea.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_vector.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.where.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_clean.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_modules_widget_file1.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.edgedensity.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_stream_extract_accum_orig_zoom.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.shade.html"
Delete "$INSTDIR\lib\grass85\docs\html\rlipadsd_formula.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_mmodulex.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_items.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.what.rast.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.photo2image.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.contour.html"
Delete "$INSTDIR\lib\grass85\docs\html\location-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.resamp.interp.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.build.all.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_model_landslides.png"
Delete "$INSTDIR\lib\grass85\docs\html\gi_database.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.colors.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.vtk.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.drape.html"
Delete "$INSTDIR\lib\grass85\docs\html\vnetsteinertime.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_raster3d.png"
Delete "$INSTDIR\lib\grass85\docs\html\grass-sqlite.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_colors_enhance_corrected.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r_li_edgedensity_formula_2.png"
Delete "$INSTDIR\lib\grass85\docs\html\i_evapo_time.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.steiner.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_fill_stats_01.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.mode.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.join.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_modules_widget_selection.png"
Delete "$INSTDIR\lib\grass85\docs\html\rlipadcv_formula1.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.shift.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.renamecolumn.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.vdigit.html"
Delete "$INSTDIR\lib\grass85\docs\html\vnetsalesman.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_qcount_4.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_rast_landuse.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_geomorphon_peaks.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.background.html"
Delete "$INSTDIR\lib\grass85\docs\html\m.transform.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_rdigit_step4.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_qcount_2.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.to.rast.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_texture_directions_example.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.gwflow.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_water_outlet.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_surf_random_hist.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.decimate.html"
Delete "$INSTDIR\lib\grass85\docs\html\grass_logo.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_gcp_frame.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v.qcount.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_segment_lsat7_seg_min100.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_points.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_urbanarea.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.profile.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.external.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.animation.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_toolbar.png"
Delete "$INSTDIR\lib\grass85\docs\html\i_ortho_photo_step1.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.cca.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.list.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.slope.aspect.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_rast_arrow_wind.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.select.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_rdigit_step5.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.vect.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_to_rast_3D_example.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_neighbors_benchmark_nprocs.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.hull.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.usler.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_no_cap.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.quantile.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_ortho_photo_step6.png"
Delete "$INSTDIR\lib\grass85\docs\html\slope.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.ifft.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.visibility.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.gwflow.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.univar.html"
Delete "$INSTDIR\lib\grass85\docs\html\grass_database.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.timeline.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.surf.contour.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.evapo.pt.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.ortho.rectify.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.components.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast3d.mapcalc.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_delaunay.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_nviz_toolbar.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r3.colors.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.iso.html"
Delete "$INSTDIR\lib\grass85\docs\html\helptext.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3flow_flowlines.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.out.svg.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.colors.stddev.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.select.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.out.bin.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.flow.html"
Delete "$INSTDIR\lib\grass85\docs\html\lrs.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.redraw.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_rlisetup_7.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_topidx.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_vect_chart_pie_2d.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.split.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_mfilter_benchmark_1.png"
Delete "$INSTDIR\lib\grass85\docs\html\vsurfrst_cv_benchmark.png"
Delete "$INSTDIR\lib\grass85\docs\html\db.tables.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.timestamp.html"
Delete "$INSTDIR\lib\grass85\docs\html\m.measure.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.external.out.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_overlap.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.sim.water.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_net_alloc_time.png"
Delete "$INSTDIR\lib\grass85\docs\html\rterraflow_accumulation.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_modules_parameters.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.tile.html"
Delete "$INSTDIR\lib\grass85\docs\html\m.nviz.script.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_perturb_normal.png"
Delete "$INSTDIR\lib\grass85\docs\html\tplot.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.maxlik.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.dissolve.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.datacatalog.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.shade.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.unpack.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.cross.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_pywps_code.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.contour.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.normal.html"
Delete "$INSTDIR\lib\grass85\docs\html\temporalintro.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.fill.dir.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.search.modules.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.timestamp.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.to.lines.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_flow_length.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.eb.hsebal01.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.poly.html"
Delete "$INSTDIR\lib\grass85\docs\html\grass.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.list.html"
Delete "$INSTDIR\lib\grass85\docs\html\db.columns.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.series.interp.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.kernel.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.legend.vect.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.what.color.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_frame.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_slope_aspect_tcurv.png"
Delete "$INSTDIR\lib\grass85\docs\html\tcurv.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.semantic.label.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.rast.edit.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_nviz_tools_view.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\rlipadrange_formula.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.solute.transport.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_texture_mapsize_efficiency.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.rdigit.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_within.png"
Delete "$INSTDIR\lib\grass85\docs\html\htmldriver.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.stats.zonal.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.components.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.univar.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_volume_lake.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.padrange.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxpyimgview.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.in.ascii.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_fill_dir.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_mon_wx0.png"
Delete "$INSTDIR\lib\grass85\docs\html\vdigit_toolbar.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.mat.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.rast.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.out.v5d.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.list.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.colors.enhance.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.addcolumn.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.cross.rast.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.gensigset.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.richness.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_stream_extract_streams_weighed.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.linegraph.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_equals.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.renyi.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.frame.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.to.3d.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_tplot_labels.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.emissivity.html"
Delete "$INSTDIR\lib\grass85\docs\html\vectorascii.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_rlisetup_sample_areas.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.patchdensity.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.signatures.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_comment.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_contains_pnts.png"
Delete "$INSTDIR\lib\grass85\docs\html\db.in.ogr.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_tasscap_wetness.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\i_segment_ortho_segs_final.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.accdetect.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_modules_style_top.png"
Delete "$INSTDIR\lib\grass85\docs\html\variables.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.lrs.segment.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.pack.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast3d.extract.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.surf.gauss.html"
Delete "$INSTDIR\lib\grass85\docs\html\dbmgr_sql_builder.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.null.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.what.vect.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.vrml.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_resamp_interp_orig_500m.png"
Delete "$INSTDIR\lib\grass85\docs\html\rlimpa_formula.png"
Delete "$INSTDIR\lib\grass85\docs\html\i_tasscap_brightness.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.to.vect.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_modis_1o.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.lrs.label.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_urban_census2000.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_series_benchmark_size.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.stats.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.rgb.his.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_variables.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.gapfill.html"
Delete "$INSTDIR\lib\grass85\docs\html\vectorintro.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.band.library.html"
Delete "$INSTDIR\lib\grass85\docs\html\db.droptable.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.register.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_texture_window_efficiency.png"
Delete "$INSTDIR\lib\grass85\docs\html\ps.map.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_drain_with_r_watershed_direction.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_generalize_smooth.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_modules_widget_file2.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.gmodeler.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.remove.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.geonames.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.resamp.filter.html"
Delete "$INSTDIR\lib\grass85\docs\html\mapswipe_tsunami.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r3.support.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.mkdspf.html"
Delete "$INSTDIR\lib\grass85\docs\html\dbmgr_frame.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.smap.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.series.accumulate.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.stream.extract.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.mpa.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.out.file.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.xyz.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_model_classification.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_slope_aspect_benchmark_memory.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_in_lidar.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_li_pielou.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.perturb.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.mapgen.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_mkgrid_hexagons.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.reconnect.all.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_path.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.external.html"
Delete "$INSTDIR\lib\grass85\docs\html\dem.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.region.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.thin.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_slope_aspect_benchmark_size.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.legend.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_rlisetup_2.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast3d.list.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_sim_water_water_depth.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.sunhours.html"
Delete "$INSTDIR\lib\grass85\docs\html\grass_database.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.region.html"
Delete "$INSTDIR\lib\grass85\docs\html\vrandom_polygons.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.buffer.lowmem.html"
Delete "$INSTDIR\lib\grass85\docs\html\icons"
Delete "$INSTDIR\lib\grass85\docs\html\icons\module-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\relation-create.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\shortest-distance.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\monitor-create.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\unlocked.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\location-download.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\locked.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\rgb.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\print-compose.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\redraw.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-wms-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-cell-cats-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\raster-stats.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\mapset-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\modeler-settings.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\polygon.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-raster-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-bottom.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\raster3d.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\execute.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-grid-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-vector-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\label.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\map-info.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\erase.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\player-pause.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\reload.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\data-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\help.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\wms.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\loop-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\table-manager.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\region.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\rectangle-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\map-settings.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\pointer.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\vector-chart.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\label-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\raster.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\cats-copy.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\create.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\point-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\script-load.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\mapset.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\select.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\raster-calculator.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-shaded-relief-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\point-create.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\ps-export.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\raster-import.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\line-create.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\redo.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\question-mark.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\scalebar-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-raster-histogram.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\quit.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-down.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\vector-tools.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-command-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-import.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-vector-more.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-opacity.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\python.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\pan.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\show.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\vector-thematic.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\line-move.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\aspect-arrow.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\image-export.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-export.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\his.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\3d-help.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\zoom-region.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-group-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\line-split.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\modeler-variables.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\polygon-delete.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-more.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\info.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\save.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\zoom-more.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\map-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\line-delete.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\player-stop.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\north-arrow-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\exclamation-mark.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\legend-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\location.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\flythrough.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\centroid-create.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\print.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\boundary-create.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\gcp-rms.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\georectify.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\cross.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-rgb-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\zoom-layer.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\zoom-out.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-label-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\player-back.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\attributes-display.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\page-settings.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-raster-more.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-remove.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\zoom-extent.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\3d-rotate.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\script-save.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-aspect-arrow-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\table.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\time-period.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\move.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-his-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\gcp-remove.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\vertex-delete.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\zoom-last.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\player-repeat-back-forward.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\map-export.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\zoom-in.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\image-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\vector-import.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\undo.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\vertex-create.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\monitor-dock.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\gcp-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\line-edit.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\area-measure.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\stats.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\open.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-vector-thematic-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\grassdb-add.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\python-export.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-raster-analyze.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\cell-cats.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\monitor-settings.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-redraw.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\options.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\layer-up.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\cats-display.png"
Delete "$INSTDIR\lib\grass85\docs\html\icons\pdf-export.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_geodesic.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_modulex.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.out.dxf.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_stream_extract_streams_noweight.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.colors.out.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_fill_holes.png"
Delete "$INSTDIR\lib\grass85\docs\html\parser_standard_options.css"
Delete "$INSTDIR\lib\grass85\docs\html\location.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.to.rast.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.to.points.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.dominance.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.graph.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.parser.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_random_surface_hist.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.ortho.target.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.histogram.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_text.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.out.vtk.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_mvector.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.texture.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_slope_aspect_slope.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.viewshed.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.volume.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.regression.multi.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.access.html"
Delete "$INSTDIR\lib\grass85\docs\html\grass_logo.txt"
Delete "$INSTDIR\lib\grass85\docs\html\v_voronoi_points.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_intersects.png"
Delete "$INSTDIR\lib\grass85\docs\html\rcost_knightsmove.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.neighbors.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_nviz_tools_volume.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.gcp.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.random.surface.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.distance.html"
Delete "$INSTDIR\lib\grass85\docs\html\rhorizon_raster_efficiency.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.buffer.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.e00.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_histogram_pie.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_map_display.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.mapcalc.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_op_xor.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.patchnum.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_rhumbline.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.vect.db.select.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_thin_network.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.mpeg.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_rlisetup_3.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.alloc.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_carve_dem_orig_accum.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_buffer_road.png"
Delete "$INSTDIR\lib\grass85\docs\html\vrandom_restricted_attr.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_mon_wx0_raster.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.out.ogr.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.surf.rst.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.viewshed.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_touches.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.univar.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.photo2image.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_flow_accumulation.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_tplot_export_csv.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_drain.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.nviz.html"
Delete "$INSTDIR\lib\grass85\docs\html\databaseintro.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.what.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.in.spotvgt.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_blend.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_neighbors.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_generalize_simplify.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.algebra.html"
Delete "$INSTDIR\lib\grass85\docs\html\test.gjson.lib.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_poly_1_2.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.water.outlet.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_ortho_camera.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_decimate_original.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_perturb_uniform.png"
Delete "$INSTDIR\lib\grass85\docs\html\r3.gradient.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.quant.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.resamp.rst.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_mraster.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.clump.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_legend_vect_subheadings.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_segment_spaced_right_points.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_modules_flags.png"
Delete "$INSTDIR\lib\grass85\docs\html\ximgview.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.pansharpen.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.copy.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_surf_gauss_hist.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.fontlist.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.mat.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.segment.html"
Delete "$INSTDIR\lib\grass85\docs\html\pcurv.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_random_surface.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.patch.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.cairocomp.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.terraflow.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_slope_aspect_aspect.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\8a.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\3.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\7b.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\6.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\basic_compass.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\arrow3.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\arrow1.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\5.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\1a.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\1b.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\2.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\7a.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\9.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\4.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\8b.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\fancy_compass.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\star.png"
Delete "$INSTDIR\lib\grass85\docs\html\northarrows\arrow2.png"
Delete "$INSTDIR\lib\grass85\docs\html\rlicwed_formula.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.what.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_albedo_landsat7.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.fill.holes.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.region.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_actinia_code.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.aggregate.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.tileset.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.wms.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.param.scale.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_parameter.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.build.polylines.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_resamp_stats_6m_20m.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_grid_blue_grid.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.edit.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.path.html"
Delete "$INSTDIR\lib\grass85\docs\html\gi_raster.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\datacatalog.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.ortho.init.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.oif.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.pnmcomp.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.aster.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_line_c.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_random_cells.png"
Delete "$INSTDIR\lib\grass85\docs\html\rasterintro.html"
Delete "$INSTDIR\lib\grass85\docs\html\ps_map.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.drain.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.export.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.stats.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.label.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_relief.png"
Delete "$INSTDIR\lib\grass85\docs\html\db.createdb.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.select.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_poly_1_2_a_o_n_x.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_dissolve_zipcodes.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.vnet.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_flow_line.png"
Delete "$INSTDIR\lib\grass85\docs\html\d_legend_custom_labels_and_background.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_sunhours.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.describe.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_clip_poly.png"
Delete "$INSTDIR\lib\grass85\docs\html\i_maxlik_rgb.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_neighbors_benchmark_size.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.dbmgr.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_area.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.profile.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.voronoi.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.evapo.pm.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.update.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.animation.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.reclass.area.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_raster.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.carve.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.extension.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_grow_distance.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_iimage2target_frame.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.info.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_rast_edit.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_areas_int.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_op_and.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.info.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_stream_extract_weights_zoom.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_line_s.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_label_sa.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v.build.html"
Delete "$INSTDIR\lib\grass85\docs\html\g.version.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_legend_logarithmic.png"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_rlisetup_4.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.surf.idw.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.pca.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.vi.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_rast_elevation_values.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.composite.html"
Delete "$INSTDIR\lib\grass85\docs\html\vsurfrst_benchmark.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_mfilter.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.to.rast3.html"
Delete "$INSTDIR\lib\grass85\docs\html\db.copy.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_contour_using_levels.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.ppmtopng.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.distance.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_patch_benchmark_size.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.dxf.html"
Delete "$INSTDIR\lib\grass85\docs\html\vector-import.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_cluster_4_methods.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.spread.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_mcomment.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.db.dropcolumn.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.merge.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.rescale.eq.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_univar_benchmark_size.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_carve_dem_carved.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.distance.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_texture_window_time.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.type.html"
Delete "$INSTDIR\lib\grass85\docs\html\d_legend_vect.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_areas.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.gcp.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.ascii.html"
Delete "$INSTDIR\lib\grass85\docs\html\i_tasscap_haze.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_avg_map.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_li_dominance_formula.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_li_richness_formula.png"
Delete "$INSTDIR\lib\grass85\docs\html\grass_arch.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_fill_stats_lidar.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.in.gdal.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.parallel.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_mraster3d.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.random.html"
Delete "$INSTDIR\lib\grass85\docs\html\t.vect.what.strds.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_vect_stats.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.rhumbline.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_segment_spaced_points.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\g.download.project.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.out.ascii.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.aster.toar.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_nviz_tools_vector.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r.walk.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.biomass.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.mask.status.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.cluster.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.category.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.vect.stats.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_python_code.png"
Delete "$INSTDIR\lib\grass85\docs\html\pngdriver.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.rescale.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_decimate_count.png"
Delete "$INSTDIR\lib\grass85\docs\html\i_ortho_photo_step5.png"
Delete "$INSTDIR\lib\grass85\docs\html\d.his.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.vect.chart_example.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\i.landsat.acca.html"
Delete "$INSTDIR\lib\grass85\docs\html\r3.mask.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_modis_2o.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.wfs.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.cwed.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_grow_distance_zoom.png"
Delete "$INSTDIR\lib\grass85\docs\html\gi_c.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\i_segment_lsat7_pan.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_segment_subline.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\gi_vector.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r3.null.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_slope_aspect_pcurv.png"
Delete "$INSTDIR\lib\grass85\docs\html\vrandom_restricted_area.png"
Delete "$INSTDIR\lib\grass85\docs\html\i_pansharpen_rgb_brovey542.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v.univar.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.psmap.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.vol.rst.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.modis.qc.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.in.ascii.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_model_properties.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.series.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_slope_aspect_4_directions.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.generalize.html"
Delete "$INSTDIR\lib\grass85\docs\html\d.rgb.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_li_shannon_formula.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.what.rast.html"
Delete "$INSTDIR\lib\grass85\docs\html\i.eb.soilheatflux.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_mapsets_gui.png"
Delete "$INSTDIR\lib\grass85\docs\html\v.unpack.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_neighbors_benchmark_memory.png"
Delete "$INSTDIR\lib\grass85\docs\html\vnetsalesmantime.png"
Delete "$INSTDIR\lib\grass85\docs\html\aspect_diagram.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.eb.eta.html"
Delete "$INSTDIR\lib\grass85\docs\html\m.nviz.image.html"
Delete "$INSTDIR\lib\grass85\docs\html\r_surf_fractal.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_mloop.png"
Delete "$INSTDIR\lib\grass85\docs\html\g.dirseps.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_modis_3o.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_walk.png"
Delete "$INSTDIR\lib\grass85\docs\html\timeline_2D.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\g.gui.vdigit.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.to.rast.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_overlay_op_not.png"
Delete "$INSTDIR\lib\grass85\docs\html\i.ortho.camera.html"
Delete "$INSTDIR\lib\grass85\docs\html\band_references_scheme.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_resamp_filter_benchmark_size.png"
Delete "$INSTDIR\lib\grass85\docs\html\r.li.daemon.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.patch.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_iscatt.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\r3.out.vtk.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.out.ascii.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_model_avg.png"
Delete "$INSTDIR\lib\grass85\docs\html\t.rast.extract.html"
Delete "$INSTDIR\lib\grass85\docs\html\raster3dintro.html"
Delete "$INSTDIR\lib\grass85\docs\html\r.out.ascii.html"
Delete "$INSTDIR\lib\grass85\docs\html\v.net.connectivity.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_overlaps.png"
Delete "$INSTDIR\lib\grass85\docs\html\vnetdistance.png"
Delete "$INSTDIR\lib\grass85\docs\html\gi_miscellaneous.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\v.clip.html"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI.mapswipe.html"
Delete "$INSTDIR\lib\grass85\docs\html\g_gui_gmodeler_mdb.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_random_points_in_polygon.png"
Delete "$INSTDIR\lib\grass85\docs\html\v_buffer_rounded_cap.png"
Delete "$INSTDIR\lib\grass85\docs\html\r_stats.zonal.png"
Delete "$INSTDIR\lib\grass85\docs\html\wxGUI_toolboxes.jpg"
Delete "$INSTDIR\lib\grass85\docs\html\g.findetc.html"
Delete "$INSTDIR\lib\grass85\docs\html\v_select_op_disjoint.png"
Delete "$INSTDIR\lib\grass85\contributors_extra.csv"
Delete "$INSTDIR\lib\grass85\bin"
Delete "$INSTDIR\lib\grass85\bin\d.graph"
Delete "$INSTDIR\lib\grass85\bin\r.in.bin"
Delete "$INSTDIR\lib\grass85\bin\v.to.db"
Delete "$INSTDIR\lib\grass85\bin\r.in.ascii"
Delete "$INSTDIR\lib\grass85\bin\r3.mask"
Delete "$INSTDIR\lib\grass85\bin\d.histogram"
Delete "$INSTDIR\lib\grass85\bin\i.eb.eta"
Delete "$INSTDIR\lib\grass85\bin\g.pnmcomp"
Delete "$INSTDIR\lib\grass85\bin\r.li.pielou"
Delete "$INSTDIR\lib\grass85\bin\v.fill.holes"
Delete "$INSTDIR\lib\grass85\bin\v.in.ogr"
Delete "$INSTDIR\lib\grass85\bin\v.net.bridge"
Delete "$INSTDIR\lib\grass85\bin\r.out.bin"
Delete "$INSTDIR\lib\grass85\bin\i.gensig"
Delete "$INSTDIR\lib\grass85\bin\i.cca"
Delete "$INSTDIR\lib\grass85\bin\r.profile"
Delete "$INSTDIR\lib\grass85\bin\v.in.pdal"
Delete "$INSTDIR\lib\grass85\bin\r.path"
Delete "$INSTDIR\lib\grass85\bin\r.out.gridatb"
Delete "$INSTDIR\lib\grass85\bin\r.sunhours"
Delete "$INSTDIR\lib\grass85\bin\r.horizon"
Delete "$INSTDIR\lib\grass85\bin\v.rectify"
Delete "$INSTDIR\lib\grass85\bin\r.solute.transport"
Delete "$INSTDIR\lib\grass85\bin\r.to.rast3"
Delete "$INSTDIR\lib\grass85\bin\d.rast.arrow"
Delete "$INSTDIR\lib\grass85\bin\i.segment"
Delete "$INSTDIR\lib\grass85\bin\v.external"
Delete "$INSTDIR\lib\grass85\bin\r.flow"
Delete "$INSTDIR\lib\grass85\bin\d.grid"
Delete "$INSTDIR\lib\grass85\bin\v.split"
Delete "$INSTDIR\lib\grass85\bin\v.net.iso"
Delete "$INSTDIR\lib\grass85\bin\r.stats.zonal"
Delete "$INSTDIR\lib\grass85\bin\r.series.interp"
Delete "$INSTDIR\lib\grass85\bin\r.transect"
Delete "$INSTDIR\lib\grass85\bin\v.voronoi"
Delete "$INSTDIR\lib\grass85\bin\r.quantile"
Delete "$INSTDIR\lib\grass85\bin\r.geomorphon"
Delete "$INSTDIR\lib\grass85\bin\i.atcorr"
Delete "$INSTDIR\lib\grass85\bin\i.ortho.target"
Delete "$INSTDIR\lib\grass85\bin\db.databases"
Delete "$INSTDIR\lib\grass85\bin\r3.cross.rast"
Delete "$INSTDIR\lib\grass85\bin\v.build"
Delete "$INSTDIR\lib\grass85\bin\i.modis.qc"
Delete "$INSTDIR\lib\grass85\bin\d.mon"
Delete "$INSTDIR\lib\grass85\bin\r.gwflow"
Delete "$INSTDIR\lib\grass85\bin\v.vol.rst"
Delete "$INSTDIR\lib\grass85\bin\v.net.spanningtree"
Delete "$INSTDIR\lib\grass85\bin\g.mapset"
Delete "$INSTDIR\lib\grass85\bin\r.li.mpa"
Delete "$INSTDIR\lib\grass85\bin\v.surf.idw"
Delete "$INSTDIR\lib\grass85\bin\i.ortho.init"
Delete "$INSTDIR\lib\grass85\bin\r.li.patchnum"
Delete "$INSTDIR\lib\grass85\bin\r.terraflow"
Delete "$INSTDIR\lib\grass85\bin\v.net.visibility"
Delete "$INSTDIR\lib\grass85\bin\r.param.scale"
Delete "$INSTDIR\lib\grass85\bin\r.spread"
Delete "$INSTDIR\lib\grass85\bin\r.volume"
Delete "$INSTDIR\lib\grass85\bin\r.water.outlet"
Delete "$INSTDIR\lib\grass85\bin\r.random.surface"
Delete "$INSTDIR\lib\grass85\bin\r.buffer"
Delete "$INSTDIR\lib\grass85\bin\r.surf.fractal"
Delete "$INSTDIR\lib\grass85\bin\r.buildvrt"
Delete "$INSTDIR\lib\grass85\bin\db.connect"
Delete "$INSTDIR\lib\grass85\bin\g.findetc"
Delete "$INSTDIR\lib\grass85\bin\v.class"
Delete "$INSTDIR\lib\grass85\bin\r.sim.water"
Delete "$INSTDIR\lib\grass85\bin\r.sun"
Delete "$INSTDIR\lib\grass85\bin\r.what"
Delete "$INSTDIR\lib\grass85\bin\v.drape"
Delete "$INSTDIR\lib\grass85\bin\r3.out.bin"
Delete "$INSTDIR\lib\grass85\bin\g.remove"
Delete "$INSTDIR\lib\grass85\bin\v.net.path"
Delete "$INSTDIR\lib\grass85\bin\r.series"
Delete "$INSTDIR\lib\grass85\bin\i.pca"
Delete "$INSTDIR\lib\grass85\bin\r.li.shannon"
Delete "$INSTDIR\lib\grass85\bin\r.rescale"
Delete "$INSTDIR\lib\grass85\bin\v.vect.stats"
Delete "$INSTDIR\lib\grass85\bin\r.out.png"
Delete "$INSTDIR\lib\grass85\bin\d.erase"
Delete "$INSTDIR\lib\grass85\bin\i.gensigset"
Delete "$INSTDIR\lib\grass85\bin\v.net.distance"
Delete "$INSTDIR\lib\grass85\bin\r.surf.idw"
Delete "$INSTDIR\lib\grass85\bin\v.cluster"
Delete "$INSTDIR\lib\grass85\bin\d.legend"
Delete "$INSTDIR\lib\grass85\bin\r.reclass"
Delete "$INSTDIR\lib\grass85\bin\v.random"
Delete "$INSTDIR\lib\grass85\bin\i.ortho.elev"
Delete "$INSTDIR\lib\grass85\bin\i.biomass"
Delete "$INSTDIR\lib\grass85\bin\g.findfile"
Delete "$INSTDIR\lib\grass85\bin\r.his"
Delete "$INSTDIR\lib\grass85\bin\r.sim.sediment"
Delete "$INSTDIR\lib\grass85\bin\i.rgb.his"
Delete "$INSTDIR\lib\grass85\bin\r.li.shape"
Delete "$INSTDIR\lib\grass85\bin\g.gui"
Delete "$INSTDIR\lib\grass85\bin\r.latlong"
Delete "$INSTDIR\lib\grass85\bin\r.li.padsd"
Delete "$INSTDIR\lib\grass85\bin\r3.out.vtk"
Delete "$INSTDIR\lib\grass85\bin\r.univar"
Delete "$INSTDIR\lib\grass85\bin\r.external"
Delete "$INSTDIR\lib\grass85\bin\r.random.cells"
Delete "$INSTDIR\lib\grass85\bin\i.topo.corr"
Delete "$INSTDIR\lib\grass85\bin\r.colors"
Delete "$INSTDIR\lib\grass85\bin\db.copy"
Delete "$INSTDIR\lib\grass85\bin\r.mfilter"
Delete "$INSTDIR\lib\grass85\bin\i.landsat.acca"
Delete "$INSTDIR\lib\grass85\bin\v.label.sa"
Delete "$INSTDIR\lib\grass85\bin\d.colorlist"
Delete "$INSTDIR\lib\grass85\bin\v.db.connect"
Delete "$INSTDIR\lib\grass85\bin\r.resamp.interp"
Delete "$INSTDIR\lib\grass85\bin\db.login"
Delete "$INSTDIR\lib\grass85\bin\m.nviz.image"
Delete "$INSTDIR\lib\grass85\bin\v.delaunay"
Delete "$INSTDIR\lib\grass85\bin\r3.colors"
Delete "$INSTDIR\lib\grass85\bin\db.describe"
Delete "$INSTDIR\lib\grass85\bin\ximgview"
Delete "$INSTDIR\lib\grass85\bin\i.evapo.pm"
Delete "$INSTDIR\lib\grass85\bin\d.vect.thematic"
Delete "$INSTDIR\lib\grass85\bin\m.transform"
Delete "$INSTDIR\lib\grass85\bin\v.build.polylines"
Delete "$INSTDIR\lib\grass85\bin\r.report"
Delete "$INSTDIR\lib\grass85\bin\i.vi"
Delete "$INSTDIR\lib\grass85\bin\r.li.edgedensity"
Delete "$INSTDIR\lib\grass85\bin\test.r3flow"
Delete "$INSTDIR\lib\grass85\bin\v.out.postgis"
Delete "$INSTDIR\lib\grass85\bin\v.out.svg"
Delete "$INSTDIR\lib\grass85\bin\v.buffer"
Delete "$INSTDIR\lib\grass85\bin\d.fontlist"
Delete "$INSTDIR\lib\grass85\bin\r.li.patchdensity"
Delete "$INSTDIR\lib\grass85\bin\v.type"
Delete "$INSTDIR\lib\grass85\bin\i.smap"
Delete "$INSTDIR\lib\grass85\bin\i.evapo.time"
Delete "$INSTDIR\lib\grass85\bin\i.evapo.pt"
Delete "$INSTDIR\lib\grass85\bin\v.proj"
Delete "$INSTDIR\lib\grass85\bin\r.tile"
Delete "$INSTDIR\lib\grass85\bin\i.eb.hsebal01"
Delete "$INSTDIR\lib\grass85\bin\i.albedo"
Delete "$INSTDIR\lib\grass85\bin\d.labels"
Delete "$INSTDIR\lib\grass85\bin\d.font"
Delete "$INSTDIR\lib\grass85\bin\v.kernel"
Delete "$INSTDIR\lib\grass85\bin\r.viewshed"
Delete "$INSTDIR\lib\grass85\bin\r.quant"
Delete "$INSTDIR\lib\grass85\bin\g.version"
Delete "$INSTDIR\lib\grass85\bin\r.usler"
Delete "$INSTDIR\lib\grass85\bin\r.what.color"
Delete "$INSTDIR\lib\grass85\bin\db.drivers"
Delete "$INSTDIR\lib\grass85\bin\v.overlay"
Delete "$INSTDIR\lib\grass85\bin\r.region"
Delete "$INSTDIR\lib\grass85\bin\v.to.points"
Delete "$INSTDIR\lib\grass85\bin\r.describe"
Delete "$INSTDIR\lib\grass85\bin\v.kcv"
Delete "$INSTDIR\lib\grass85\bin\i.ortho.transform"
Delete "$INSTDIR\lib\grass85\bin\r.to.rast3elev"
Delete "$INSTDIR\lib\grass85\bin\r.surf.contour"
Delete "$INSTDIR\lib\grass85\bin\r3.info"
Delete "$INSTDIR\lib\grass85\bin\v.qcount"
Delete "$INSTDIR\lib\grass85\bin\r3.out.ascii"
Delete "$INSTDIR\lib\grass85\bin\v.outlier"
Delete "$INSTDIR\lib\grass85\bin\r.relief"
Delete "$INSTDIR\lib\grass85\bin\g.ppmtopng"
Delete "$INSTDIR\lib\grass85\bin\r.thin"
Delete "$INSTDIR\lib\grass85\bin\v.net.alloc"
Delete "$INSTDIR\lib\grass85\bin\g.parser"
Delete "$INSTDIR\lib\grass85\bin\i.target"
Delete "$INSTDIR\lib\grass85\bin\i.his.rgb"
Delete "$INSTDIR\lib\grass85\bin\r.series.accumulate"
Delete "$INSTDIR\lib\grass85\bin\v.net.allpairs"
Delete "$INSTDIR\lib\grass85\bin\test.raster3d.lib"
Delete "$INSTDIR\lib\grass85\bin\v.distance"
Delete "$INSTDIR\lib\grass85\bin\g.gisenv"
Delete "$INSTDIR\lib\grass85\bin\r.patch"
Delete "$INSTDIR\lib\grass85\bin\r.in.png"
Delete "$INSTDIR\lib\grass85\bin\r.composite"
Delete "$INSTDIR\lib\grass85\bin\g.rename"
Delete "$INSTDIR\lib\grass85\bin\r.mask.status"
Delete "$INSTDIR\lib\grass85\bin\t.connect"
Delete "$INSTDIR\lib\grass85\bin\v.mkgrid"
Delete "$INSTDIR\lib\grass85\bin\v.in.dxf"
Delete "$INSTDIR\lib\grass85\bin\r3.retile"
Delete "$INSTDIR\lib\grass85\bin\g.access"
Delete "$INSTDIR\lib\grass85\bin\i.evapo.mh"
Delete "$INSTDIR\lib\grass85\bin\i.eb.evapfr"
Delete "$INSTDIR\lib\grass85\bin\v.out.ascii"
Delete "$INSTDIR\lib\grass85\bin\r3.gwflow"
Delete "$INSTDIR\lib\grass85\bin\d.info"
Delete "$INSTDIR\lib\grass85\bin\i.landsat.toar"
Delete "$INSTDIR\lib\grass85\bin\db.select"
Delete "$INSTDIR\lib\grass85\bin\v.lrs.create"
Delete "$INSTDIR\lib\grass85\bin\v.neighbors"
Delete "$INSTDIR\lib\grass85\bin\v.transform"
Delete "$INSTDIR\lib\grass85\bin\g.copy"
Delete "$INSTDIR\lib\grass85\bin\r.distance"
Delete "$INSTDIR\lib\grass85\bin\r.resamp.stats"
Delete "$INSTDIR\lib\grass85\bin\r.texture"
Delete "$INSTDIR\lib\grass85\bin\r3.to.rast"
Delete "$INSTDIR\lib\grass85\bin\r.sunmask"
Delete "$INSTDIR\lib\grass85\bin\r.li.richness"
Delete "$INSTDIR\lib\grass85\bin\v.surf.bspline"
Delete "$INSTDIR\lib\grass85\bin\g.proj"
Delete "$INSTDIR\lib\grass85\bin\r.in.gdal"
Delete "$INSTDIR\lib\grass85\bin\r.slope.aspect"
Delete "$INSTDIR\lib\grass85\bin\r3.mapcalc"
Delete "$INSTDIR\lib\grass85\bin\d.northarrow"
Delete "$INSTDIR\lib\grass85\bin\r.li.padrange"
Delete "$INSTDIR\lib\grass85\bin\r3.flow"
Delete "$INSTDIR\lib\grass85\bin\r.external.out"
Delete "$INSTDIR\lib\grass85\bin\v.what"
Delete "$INSTDIR\lib\grass85\bin\r.out.mat"
Delete "$INSTDIR\lib\grass85\bin\v.colors"
Delete "$INSTDIR\lib\grass85\bin\r.in.poly"
Delete "$INSTDIR\lib\grass85\bin\r.uslek"
Delete "$INSTDIR\lib\grass85\bin\r3.neighbors"
Delete "$INSTDIR\lib\grass85\bin\d.barscale"
Delete "$INSTDIR\lib\grass85\bin\db.columns"
Delete "$INSTDIR\lib\grass85\bin\d.legend.vect"
Delete "$INSTDIR\lib\grass85\bin\g.dirseps"
Delete "$INSTDIR\lib\grass85\bin\v.perturb"
Delete "$INSTDIR\lib\grass85\bin\d.title"
Delete "$INSTDIR\lib\grass85\bin\r3.null"
Delete "$INSTDIR\lib\grass85\bin\m.nviz.script"
Delete "$INSTDIR\lib\grass85\bin\g.mkfontcap"
Delete "$INSTDIR\lib\grass85\bin\r.timestamp"
Delete "$INSTDIR\lib\grass85\bin\v.in.db"
Delete "$INSTDIR\lib\grass85\bin\v.lrs.segment"
Delete "$INSTDIR\lib\grass85\bin\v.support"
Delete "$INSTDIR\lib\grass85\bin\d.rast.num"
Delete "$INSTDIR\lib\grass85\bin\r.surf.area"
Delete "$INSTDIR\lib\grass85\bin\r.ros"
Delete "$INSTDIR\lib\grass85\bin\v.extract"
Delete "$INSTDIR\lib\grass85\bin\g.filename"
Delete "$INSTDIR\lib\grass85\bin\r.clump"
Delete "$INSTDIR\lib\grass85\bin\v.select"
Delete "$INSTDIR\lib\grass85\bin\r.regression.multi"
Delete "$INSTDIR\lib\grass85\bin\d.vect"
Delete "$INSTDIR\lib\grass85\bin\v.to.rast"
Delete "$INSTDIR\lib\grass85\bin\r.surf.gauss"
Delete "$INSTDIR\lib\grass85\bin\r.stats.quantile"
Delete "$INSTDIR\lib\grass85\bin\v.to.rast3"
Delete "$INSTDIR\lib\grass85\bin\r.watershed"
Delete "$INSTDIR\lib\grass85\bin\r.topidx"
Delete "$INSTDIR\lib\grass85\bin\v.generalize"
Delete "$INSTDIR\lib\grass85\bin\v.net.salesman"
Delete "$INSTDIR\lib\grass85\bin\v.reclass"
Delete "$INSTDIR\lib\grass85\bin\d.path"
Delete "$INSTDIR\lib\grass85\bin\d.his"
Delete "$INSTDIR\lib\grass85\bin\db.dropdb"
Delete "$INSTDIR\lib\grass85\bin\r.cross"
Delete "$INSTDIR\lib\grass85\bin\test.gjson.lib"
Delete "$INSTDIR\lib\grass85\bin\v.net.centrality"
Delete "$INSTDIR\lib\grass85\bin\v.extrude"
Delete "$INSTDIR\lib\grass85\bin\r.li.simpson"
Delete "$INSTDIR\lib\grass85\bin\i.rectify"
Delete "$INSTDIR\lib\grass85\bin\v.net.flow"
Delete "$INSTDIR\lib\grass85\bin\r.object.geometry"
Delete "$INSTDIR\lib\grass85\bin\v.clean"
Delete "$INSTDIR\lib\grass85\bin\r.recode"
Delete "$INSTDIR\lib\grass85\bin\i.fft"
Delete "$INSTDIR\lib\grass85\bin\r.spreadpath"
Delete "$INSTDIR\lib\grass85\bin\v.out.ogr"
Delete "$INSTDIR\lib\grass85\bin\v.in.ascii"
Delete "$INSTDIR\lib\grass85\bin\r.category"
Delete "$INSTDIR\lib\grass85\bin\r.out.vrml"
Delete "$INSTDIR\lib\grass85\bin\v.out.pov"
Delete "$INSTDIR\lib\grass85\bin\r.walk"
Delete "$INSTDIR\lib\grass85\bin\r.fill.dir"
Delete "$INSTDIR\lib\grass85\bin\i.ortho.photo"
Delete "$INSTDIR\lib\grass85\bin\r3.timestamp"
Delete "$INSTDIR\lib\grass85\bin\m.cogo"
Delete "$INSTDIR\lib\grass85\bin\r.coin"
Delete "$INSTDIR\lib\grass85\bin\v.in.region"
Delete "$INSTDIR\lib\grass85\bin\r.colors.out"
Delete "$INSTDIR\lib\grass85\bin\v.out.dxf"
Delete "$INSTDIR\lib\grass85\bin\v.patch"
Delete "$INSTDIR\lib\grass85\bin\v.net.components"
Delete "$INSTDIR\lib\grass85\bin\r3.out.v5d"
Delete "$INSTDIR\lib\grass85\bin\v.profile"
Delete "$INSTDIR\lib\grass85\bin\d.rast"
Delete "$INSTDIR\lib\grass85\bin\r3.gradient"
Delete "$INSTDIR\lib\grass85\bin\v.normal"
Delete "$INSTDIR\lib\grass85\bin\i.aster.toar"
Delete "$INSTDIR\lib\grass85\bin\r.out.ascii"
Delete "$INSTDIR\lib\grass85\bin\r.mapcalc"
Delete "$INSTDIR\lib\grass85\bin\r.resamp.rst"
Delete "$INSTDIR\lib\grass85\bin\r.lake"
Delete "$INSTDIR\lib\grass85\bin\i.cluster"
Delete "$INSTDIR\lib\grass85\bin\r3.univar"
Delete "$INSTDIR\lib\grass85\bin\v.edit"
Delete "$INSTDIR\lib\grass85\bin\d.geodesic"
Delete "$INSTDIR\lib\grass85\bin\db.createdb"
Delete "$INSTDIR\lib\grass85\bin\r.contour"
Delete "$INSTDIR\lib\grass85\bin\r3.mkdspf"
Delete "$INSTDIR\lib\grass85\bin\v.lrs.where"
Delete "$INSTDIR\lib\grass85\bin\i.ifft"
Delete "$INSTDIR\lib\grass85\bin\r.regression.line"
Delete "$INSTDIR\lib\grass85\bin\g.mapsets"
Delete "$INSTDIR\lib\grass85\bin\r.out.vtk"
Delete "$INSTDIR\lib\grass85\bin\r.li.cwed"
Delete "$INSTDIR\lib\grass85\bin\v.to.3d"
Delete "$INSTDIR\lib\grass85\bin\d.linegraph"
Delete "$INSTDIR\lib\grass85\bin\r3.stats"
Delete "$INSTDIR\lib\grass85\bin\r.out.ppm3"
Delete "$INSTDIR\lib\grass85\bin\v.net.connectivity"
Delete "$INSTDIR\lib\grass85\bin\i.emissivity"
Delete "$INSTDIR\lib\grass85\bin\r.li.renyi"
Delete "$INSTDIR\lib\grass85\bin\r.random"
Delete "$INSTDIR\lib\grass85\bin\i.group"
Delete "$INSTDIR\lib\grass85\bin\g.region"
Delete "$INSTDIR\lib\grass85\bin\i.zc"
Delete "$INSTDIR\lib\grass85\bin\r.surf.random"
Delete "$INSTDIR\lib\grass85\bin\r.carve"
Delete "$INSTDIR\lib\grass85\bin\r.stream.extract"
Delete "$INSTDIR\lib\grass85\bin\v.what.rast3"
Delete "$INSTDIR\lib\grass85\bin\d.rhumbline"
Delete "$INSTDIR\lib\grass85\bin\d.colortable"
Delete "$INSTDIR\lib\grass85\bin\v.lrs.label"
Delete "$INSTDIR\lib\grass85\bin\r.resample"
Delete "$INSTDIR\lib\grass85\bin\r.li.mps"
Delete "$INSTDIR\lib\grass85\bin\r.li.padcv"
Delete "$INSTDIR\lib\grass85\bin\v.sample"
Delete "$INSTDIR\lib\grass85\bin\d.text"
Delete "$INSTDIR\lib\grass85\bin\r3.colors.out"
Delete "$INSTDIR\lib\grass85\bin\g.list"
Delete "$INSTDIR\lib\grass85\bin\i.eb.soilheatflux"
Delete "$INSTDIR\lib\grass85\bin\g.cairocomp"
Delete "$INSTDIR\lib\grass85\bin\v.parallel"
Delete "$INSTDIR\lib\grass85\bin\r.in.gridatb"
Delete "$INSTDIR\lib\grass85\bin\r.li.dominance"
Delete "$INSTDIR\lib\grass85\bin\r.info"
Delete "$INSTDIR\lib\grass85\bin\r.cost"
Delete "$INSTDIR\lib\grass85\bin\d.redraw"
Delete "$INSTDIR\lib\grass85\bin\r.support.stats"
Delete "$INSTDIR\lib\grass85\bin\i.maxlik"
Delete "$INSTDIR\lib\grass85\bin\v.net.timetable"
Delete "$INSTDIR\lib\grass85\bin\g.tempfile"
Delete "$INSTDIR\lib\grass85\bin\v.decimate"
Delete "$INSTDIR\lib\grass85\bin\r.out.gdal"
Delete "$INSTDIR\lib\grass85\fonts"
Delete "$INSTDIR\lib\grass85\fonts\greekc.hmp"
Delete "$INSTDIR\lib\grass85\fonts\gothgbt.hmp"
Delete "$INSTDIR\lib\grass85\fonts\greeks.hmp"
Delete "$INSTDIR\lib\grass85\fonts\scripts.hmp"
Delete "$INSTDIR\lib\grass85\fonts\italict.hmp"
Delete "$INSTDIR\lib\grass85\fonts\italicc.hmp"
Delete "$INSTDIR\lib\grass85\fonts\gothgrt.hmp"
Delete "$INSTDIR\lib\grass85\fonts\romanc.hmp"
Delete "$INSTDIR\lib\grass85\fonts\cyrilc.hmp"
Delete "$INSTDIR\lib\grass85\fonts\hersh.oc3"
Delete "$INSTDIR\lib\grass85\fonts\fonts.table"
Delete "$INSTDIR\lib\grass85\fonts\italiccs.hmp"
Delete "$INSTDIR\lib\grass85\fonts\romant.hmp"
Delete "$INSTDIR\lib\grass85\fonts\hersh.oc1"
Delete "$INSTDIR\lib\grass85\fonts\greekcs.hmp"
Delete "$INSTDIR\lib\grass85\fonts\romand.hmp"
Delete "$INSTDIR\lib\grass85\fonts\romancs.hmp"
Delete "$INSTDIR\lib\grass85\fonts\romans.hmp"
Delete "$INSTDIR\lib\grass85\fonts\hersh.oc4"
Delete "$INSTDIR\lib\grass85\fonts\hersh.oc2"
Delete "$INSTDIR\lib\grass85\fonts\greekp.hmp"
Delete "$INSTDIR\lib\grass85\fonts\gothitt.hmp"
Delete "$INSTDIR\lib\grass85\fonts\scriptc.hmp"
Delete "$INSTDIR\lib\grass85\lib"
Delete "$INSTDIR\lib\grass85\lib\libgrass_iostream.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_temporal.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_linkm.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_nviz.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_cdhc.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_linkm.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_calc.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_temporal.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_pngdriver.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_display.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_manage.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_rowio.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_calc.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gproj.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_calc.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_psdriver.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_stats.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gpde.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_iortho.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_arraystats.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_interpdata.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbstubs.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_qtree.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbmiclient.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_display.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_bitmap.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_driver.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_rtree.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbstubs.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_vector.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbmibase.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_raster.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_lidar.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_parson.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_sim.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_interpdata.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_nviz.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_imagery.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_nviz.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_cluster.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dgl.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbmidriver.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dspf.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_display.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_btree2.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_neta.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_parson.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_ogsf.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_manage.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_cairodriver.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dgl.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_segment.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_imagery.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_ogsf.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_sim.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_stats.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_interpfl.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_cdhc.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_ccmath.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_neta.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_htmldriver.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_raster3d.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_neta.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_manage.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_rli.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_raster3d.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_parson.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_lrs.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_lidar.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_cluster.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_cdhc.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_datetime.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_htmldriver.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_stats.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_sqlp.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_btree.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbmiclient.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_iostream.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_interpfl.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gpde.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gproj.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_btree2.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_ccmath.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_interpfl.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_btree.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_pngdriver.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_btree2.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_iortho.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbmidriver.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_arraystats.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_lrs.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_symb.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_rowio.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_shape.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_vector.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_cairodriver.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_iortho.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_imagery.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_vedit.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_cluster.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_qtree.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_bitmap.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_btree.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbstubs.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_arraystats.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_segment.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dspf.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gis.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gmath.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_symb.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_datetime.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_rli.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_iostream.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_sim.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_driver.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_datetime.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dig2.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_qtree.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_temporal.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_htmldriver.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gproj.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_linkm.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_cairodriver.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_lrs.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_raster.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gis.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_vector.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbmibase.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dbmidriver.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_interpdata.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dgl.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_raster3d.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_dig2.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_vedit.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gis.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_gpde.so.8.5.0dev"
Delete "$INSTDIR\lib\grass85\lib\libgrass_sqlp.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_segment.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_bitmap.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_psdriver.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_pngdriver.so.8"
Delete "$INSTDIR\lib\grass85\lib\libgrass_rowio.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_rli.so"
Delete "$INSTDIR\lib\grass85\lib\libgrass_ccmath.so"
Delete "$INSTDIR\lib\grass85\locale"
Delete "$INSTDIR\lib\grass85\locale\pl"
Delete "$INSTDIR\lib\grass85\locale\pl\LC_MESSAGES"
Delete "$INSTDIR\lib\grass85\locale\pl\LC_MESSAGES\grasswxpy.mo"
Delete "$INSTDIR\lib\grass85\locale\pl\LC_MESSAGES\grasslibs.mo"
Delete "$INSTDIR\lib\grass85\locale\pl\LC_MESSAGES\grassmods.mo"
Delete "$INSTDIR\lib\grass85\locale\vi"
Delete "$INSTDIR\lib\grass85\locale\vi\LC_MESSAGES"
Delete "$INSTDIR\lib\grass85\locale\vi\LC_MESSAGES\grasswxpy.mo"
Delete "$INSTDIR\lib\grass85\locale\vi\LC_MESSAGES\grasslibs.mo"
Delete "$INSTDIR\lib\grass85\locale\vi\LC_MESSAGES\grassmods.mo"
Delete "$INSTDIR\lib\grass85\locale\id_ID"
Delete "$INSTDIR\lib\grass85\locale\id_ID\LC_MESSAGES"
Delete "$INSTDIR\lib\grass85\locale\id_ID\LC_MESSAGES\grasswxpy.mo"
Delete "$INSTDIR\lib\grass85\locale\id_ID\LC_MESSAGES\grasslibs.mo"
Delete "$INSTDIR\lib\grass85\locale\id_ID\LC_MESSAGES\grassmods.mo"
Delete "$INSTDIR\lib\grass85\locale\ml"
Delete "$INSTDIR\lib\grass85\locale\ml\LC_MESSAGES"
Delete "$INSTDIR\lib\grass85\locale\ml\LC_MESSAGES\grasswxpy.mo"
Delete "$INSTDIR\lib\grass85\locale\ml\LC_MESSAGES\grasslibs.mo"
Delete "$INSTDIR\lib\grass85\locale\ml\LC_MESSAGES\grassmods.mo"
Delete "$INSTDIR\lib\grass85\locale\si"
Delete "$INSTDIR\lib\grass85\locale\si\LC_MESSAGES"
Delete "$INSTDIR\lib\grass85\locale\si\LC_MESSAGES\grasswxpy.mo"
Delete "$INSTDIR\lib\grass85\locale\si\LC_MESSAGES\grasslibs.mo"
Delete "$INSTDIR\lib\grass85\locale\si\LC_MESSAGES\grassmods.mo"
Delete "$INSTDIR\lib\grass85\locale\de"
Delete "$INSTDIR\lib\grass85\locale\de\LC_MESSAGES"
Delete "$INSTDIR\lib\grass85\locale\de\LC_MESSAGES\grasswxpy.mo"
Delete "$INSTDIR\lib\grass85\locale\de\LC_MESSAGES\grasslibs.mo"
Delete "$INSTDIR\lib\grass85\locale\de\LC_MESSAGES\grassmods.mo"
Delete "$INSTDIR\lib\grass85\locale\hu"
Delete "$INSTDIR\lib\grass85\locale\hu\LC_MESSAGES"
Delete "$INSTDIR\lib\grass85\locale\hu\LC_MESSAGES\grasswxpy.mo"
Delete "$INSTDIR\lib\grass85\locale\hu\LC_MESSAGES\grasslibs.mo"
Delete "$INSTDIR\lib\grass85\locale\hu\LC_MESSAGES\grassmods.mo"
Delete "$INSTDIR\lib\grass85\contributors.csv"
Delete "$INSTDIR\lib\grass85\CITING"
Delete "$INSTDIR\lib\grass85\scripts"
Delete "$INSTDIR\lib\grass85\scripts\t.rast3d.list"
Delete "$INSTDIR\lib\grass85\scripts\t.sample"
Delete "$INSTDIR\lib\grass85\scripts\d.polar"
Delete "$INSTDIR\lib\grass85\scripts\t.copy"
Delete "$INSTDIR\lib\grass85\scripts\i.image.mosaic"
Delete "$INSTDIR\lib\grass85\scripts\r.in.wms"
Delete "$INSTDIR\lib\grass85\scripts\d.rast.leg"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.series"
Delete "$INSTDIR\lib\grass85\scripts\v.db.addcolumn"
Delete "$INSTDIR\lib\grass85\scripts\v.in.wfs"
Delete "$INSTDIR\lib\grass85\scripts\db.droptable"
Delete "$INSTDIR\lib\grass85\scripts\g.download.project"
Delete "$INSTDIR\lib\grass85\scripts\v.clip"
Delete "$INSTDIR\lib\grass85\scripts\i.spectral"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.image2target"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.export"
Delete "$INSTDIR\lib\grass85\scripts\t.vect.observe.strds"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.vdigit"
Delete "$INSTDIR\lib\grass85\scripts\t.vect.what.strds"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.colors"
Delete "$INSTDIR\lib\grass85\scripts\r.grow"
Delete "$INSTDIR\lib\grass85\scripts\v.in.e00"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.to.rast3"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.rlisetup"
Delete "$INSTDIR\lib\grass85\scripts\r.in.srtm"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.gapfill"
Delete "$INSTDIR\lib\grass85\scripts\g.search.modules"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.gcp"
Delete "$INSTDIR\lib\grass85\scripts\r.fillnulls"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.list"
Delete "$INSTDIR\lib\grass85\scripts\r.plane"
Delete "$INSTDIR\lib\grass85\scripts\r.out.xyz"
Delete "$INSTDIR\lib\grass85\scripts\t.vect.import"
Delete "$INSTDIR\lib\grass85\scripts\d.rast.edit"
Delete "$INSTDIR\lib\grass85\scripts\d.out.file"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.rdigit"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.mapswipe"
Delete "$INSTDIR\lib\grass85\scripts\m.proj"
Delete "$INSTDIR\lib\grass85\scripts\t.info"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.contour"
Delete "$INSTDIR\lib\grass85\scripts\db.test"
Delete "$INSTDIR\lib\grass85\scripts\db.univar"
Delete "$INSTDIR\lib\grass85\scripts\t.snap"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.out.vtk"
Delete "$INSTDIR\lib\grass85\scripts\d.background"
Delete "$INSTDIR\lib\grass85\scripts\i.band.library"
Delete "$INSTDIR\lib\grass85\scripts\t.vect.univar"
Delete "$INSTDIR\lib\grass85\scripts\i.oif"
Delete "$INSTDIR\lib\grass85\scripts\t.vect.export"
Delete "$INSTDIR\lib\grass85\scripts\t.list"
Delete "$INSTDIR\lib\grass85\scripts\r.in.aster"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.iclass"
Delete "$INSTDIR\lib\grass85\scripts\r.import"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.accdetect"
Delete "$INSTDIR\lib\grass85\scripts\d.to.rast"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.timeline"
Delete "$INSTDIR\lib\grass85\scripts\r.tileset"
Delete "$INSTDIR\lib\grass85\scripts\t.remove"
Delete "$INSTDIR\lib\grass85\scripts\t.support"
Delete "$INSTDIR\lib\grass85\scripts\db.out.ogr"
Delete "$INSTDIR\lib\grass85\scripts\d.what.rast"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.aggregate.ds"
Delete "$INSTDIR\lib\grass85\scripts\t.topology"
Delete "$INSTDIR\lib\grass85\scripts\t.vect.extract"
Delete "$INSTDIR\lib\grass85\scripts\d.shade"
Delete "$INSTDIR\lib\grass85\scripts\v.db.renamecolumn"
Delete "$INSTDIR\lib\grass85\scripts\i.colors.enhance"
Delete "$INSTDIR\lib\grass85\scripts\r.pack"
Delete "$INSTDIR\lib\grass85\scripts\r.blend"
Delete "$INSTDIR\lib\grass85\scripts\v.db.univar"
Delete "$INSTDIR\lib\grass85\scripts\r.colors.stddev"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.univar"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.neighbors"
Delete "$INSTDIR\lib\grass85\scripts\v.db.reconnect.all"
Delete "$INSTDIR\lib\grass85\scripts\t.rename"
Delete "$INSTDIR\lib\grass85\scripts\t.vect.db.select"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.mapcalc"
Delete "$INSTDIR\lib\grass85\scripts\i.pansharpen"
Delete "$INSTDIR\lib\grass85\scripts\v.to.lines"
Delete "$INSTDIR\lib\grass85\scripts\v.db.dropcolumn"
Delete "$INSTDIR\lib\grass85\scripts\t.rast3d.extract"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.psmap"
Delete "$INSTDIR\lib\grass85\scripts\g.extension.all"
Delete "$INSTDIR\lib\grass85\scripts\v.db.droprow"
Delete "$INSTDIR\lib\grass85\scripts\t.vect.algebra"
Delete "$INSTDIR\lib\grass85\scripts\i.in.spotvgt"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.to.vect"
Delete "$INSTDIR\lib\grass85\scripts\d.correlate"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.datacatalog"
Delete "$INSTDIR\lib\grass85\scripts\v.import"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.dbmgr"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.accumulate"
Delete "$INSTDIR\lib\grass85\scripts\t.create"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.algebra"
Delete "$INSTDIR\lib\grass85\scripts\t.select"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.gmodeler"
Delete "$INSTDIR\lib\grass85\scripts\t.vect.list"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.animation"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.aggregate"
Delete "$INSTDIR\lib\grass85\scripts\r.semantic.label"
Delete "$INSTDIR\lib\grass85\scripts\r.reclass.area"
Delete "$INSTDIR\lib\grass85\scripts\v.in.geonames"
Delete "$INSTDIR\lib\grass85\scripts\g.download.location"
Delete "$INSTDIR\lib\grass85\scripts\t.upgrade"
Delete "$INSTDIR\lib\grass85\scripts\v.report"
Delete "$INSTDIR\lib\grass85\scripts\v.db.addtable"
Delete "$INSTDIR\lib\grass85\scripts\v.pack"
Delete "$INSTDIR\lib\grass85\scripts\r.mapcalc.simple"
Delete "$INSTDIR\lib\grass85\scripts\r.mask"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.what"
Delete "$INSTDIR\lib\grass85\scripts\v.rast.stats"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.extract"
Delete "$INSTDIR\lib\grass85\scripts\v.db.update"
Delete "$INSTDIR\lib\grass85\scripts\v.what.strds"
Delete "$INSTDIR\lib\grass85\scripts\t.register"
Delete "$INSTDIR\lib\grass85\scripts\v.in.mapgen"
Delete "$INSTDIR\lib\grass85\scripts\t.merge"
Delete "$INSTDIR\lib\grass85\scripts\r.buffer.lowmem"
Delete "$INSTDIR\lib\grass85\scripts\wxpyimgview"
Delete "$INSTDIR\lib\grass85\scripts\t.rast.import"
Delete "$INSTDIR\lib\grass85\scripts\v.centroids"
Delete "$INSTDIR\lib\grass85\scripts\r.rgb"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.photo2image"
Delete "$INSTDIR\lib\grass85\scripts\db.dropcolumn"
Delete "$INSTDIR\lib\grass85\scripts\d.what.vect"
Delete "$INSTDIR\lib\grass85\scripts\i.tasscap"
Delete "$INSTDIR\lib\grass85\scripts\r3.in.xyz"
Delete "$INSTDIR\lib\grass85\scripts\v.build.all"
Delete "$INSTDIR\lib\grass85\scripts\t.rast3d.univar"
Delete "$INSTDIR\lib\grass85\scripts\d.frame"
Delete "$INSTDIR\lib\grass85\scripts\t.rast3d.algebra"
Delete "$INSTDIR\lib\grass85\scripts\v.db.droptable"
Delete "$INSTDIR\lib\grass85\scripts\v.in.lines"
Delete "$INSTDIR\lib\grass85\scripts\g.gui.tplot"
Delete "$INSTDIR\lib\grass85\INSTALL.md"
Delete "$INSTDIR\lib\grass85\demolocation"
Delete "$INSTDIR\lib\grass85\demolocation\.grassrc85"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\PROJ_UNITS"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\WIND"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\PROJ_SRID"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\MYNAME"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\PROJ_INFO"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector\country_boundaries"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector\country_boundaries\dbln"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector\country_boundaries\coor"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector\country_boundaries\head"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector\country_boundaries\sidx"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector\country_boundaries\hist"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector\country_boundaries\topo"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector\country_boundaries\cidx"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\DEFAULT_WIND"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\sqlite"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\sqlite\sqlite.db"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\PROJ_EPSG"
Delete "$INSTDIR\lib\grass85\demolocation\PERMANENT\VAR"
Delete "$INSTDIR\lib\grass85\translators.csv"
Delete "$INSTDIR\lib\grass85\utils"
Delete "$INSTDIR\lib\grass85\utils\g.html2man.py"
Delete "$INSTDIR\lib\grass85\utils\mkrest.py"
Delete "$INSTDIR\lib\grass85\utils\mkmarkdown.py"
Delete "$INSTDIR\lib\grass85\utils\ghtml.py"
Delete "$INSTDIR\lib\grass85\utils\mkdocs.py"
Delete "$INSTDIR\lib\grass85\utils\generate_last_commit_file.py"
Delete "$INSTDIR\lib\grass85\utils\mkhtml.py"
Delete "$INSTDIR\lib\grass85\utils\g.echo"
Delete "$INSTDIR\lib\grass85\utils\ggroff.py"
Delete "$INSTDIR\lib\grass85\COPYING"
Delete "$INSTDIR\lib\grass85\driver"
Delete "$INSTDIR\lib\grass85\driver\db"
Delete "$INSTDIR\lib\grass85\driver\db\dbf"
Delete "$INSTDIR\lib\grass85\driver\db\ogr"
Delete "$INSTDIR\lib\grass85\driver\db\pg"
Delete "$INSTDIR\lib\grass85\driver\db\sqlite"
Delete "$INSTDIR\lib\grass85\REQUIREMENTS.md"
Delete "$INSTDIR\lib\grass85\share"
Delete "$INSTDIR\lib\grass85\share\applications"
Delete "$INSTDIR\lib\grass85\share\applications\grass.desktop"
Delete "$INSTDIR\lib\grass85\share\metainfo"
Delete "$INSTDIR\lib\grass85\share\metainfo\grass.appdata.xml"
Delete "$INSTDIR\lib\grass85\share\icons"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\22x22"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\22x22\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\22x22\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\80x80"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\80x80\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\80x80\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\128x128"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\128x128\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\128x128\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\48x48"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\48x48\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\48x48\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\64x64"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\64x64\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\64x64\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\36x36"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\36x36\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\36x36\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\24x24"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\24x24\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\24x24\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\32x32"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\32x32\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\32x32\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\40x40"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\40x40\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\40x40\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\96x96"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\96x96\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\96x96\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\72x72"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\72x72\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\72x72\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\8x8"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\8x8\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\8x8\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\192x192"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\192x192\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\192x192\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\scalable"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\scalable\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\scalable\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\42x42"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\42x42\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\42x42\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\16x16"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\16x16\apps"
Delete "$INSTDIR\lib\grass85\share\icons\hicolor\16x16\apps\grass.svg"
Delete "$INSTDIR\lib\grass85\GPL.TXT"
Delete "$INSTDIR\lib\grass85\AUTHORS"
Delete "$INSTDIR\lib\grass85\include"
Delete "$INSTDIR\lib\grass85\include\grass"
Delete "$INSTDIR\lib\grass85\include\grass\segment.h"
Delete "$INSTDIR\lib\grass85\include\grass\calc.h"
Delete "$INSTDIR\lib\grass85\include\grass\stats.h"
Delete "$INSTDIR\lib\grass85\include\grass\nviz.h"
Delete "$INSTDIR\lib\grass85\include\grass\glocale.h"
Delete "$INSTDIR\lib\grass85\include\grass\N_heatflow.h"
Delete "$INSTDIR\lib\grass85\include\grass\arraystats.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\mm_utils.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\queue.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\quicksort.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\empq_impl.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\ami_sort_impl.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\ami_stream.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\mem_stream.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\rtimer.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\empq.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\ami_sort.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\empq_adaptive_impl.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\empq_adaptive.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\minmaxheap.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\replacementHeapBlock.h"
Delete "$INSTDIR\lib\grass85\include\grass\iostream\pqheap.h"
Delete "$INSTDIR\lib\grass85\include\grass\ogsf.h"
Delete "$INSTDIR\lib\grass85\include\grass\symbol.h"
Delete "$INSTDIR\lib\grass85\include\grass\shapefil.h"
Delete "$INSTDIR\lib\grass85\include\grass\raster.h"
Delete "$INSTDIR\lib\grass85\include\grass\la.h"
Delete "$INSTDIR\lib\grass85\include\grass\linkm.h"
Delete "$INSTDIR\lib\grass85\include\grass\kdtree.h"
Delete "$INSTDIR\lib\grass85\include\grass\rbtree.h"
Delete "$INSTDIR\lib\grass85\include\grass\copying.h"
Delete "$INSTDIR\lib\grass85\include\grass\interpf.h"
Delete "$INSTDIR\lib\grass85\include\grass\sqlp.h"
Delete "$INSTDIR\lib\grass85\include\grass\vedit.h"
Delete "$INSTDIR\lib\grass85\include\grass\dbstubs.h"
Delete "$INSTDIR\lib\grass85\include\grass\neta.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl.h"
Delete "$INSTDIR\lib\grass85\include\grass\rtree.h"
Delete "$INSTDIR\lib\grass85\include\grass\version.h"
Delete "$INSTDIR\lib\grass85\include\grass\colors.h"
Delete "$INSTDIR\lib\grass85\include\grass\btree.h"
Delete "$INSTDIR\lib\grass85\include\grass\N_gwflow.h"
Delete "$INSTDIR\lib\grass85\include\grass\gmath.h"
Delete "$INSTDIR\lib\grass85\include\grass\qtree.h"
Delete "$INSTDIR\lib\grass85\include\grass\citing.h"
Delete "$INSTDIR\lib\grass85\include\grass\vector.h"
Delete "$INSTDIR\lib\grass85\include\grass\gprojects.h"
Delete "$INSTDIR\lib\grass85\include\grass\dataquad.h"
Delete "$INSTDIR\lib\grass85\include\grass\temporal.h"
Delete "$INSTDIR\lib\grass85\include\grass\lidar.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl"
Delete "$INSTDIR\lib\grass85\include\grass\dgl\tree.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl\graph_v1.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl\tavl.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl\type.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl\helpers.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl\graph.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl\heap.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl\avl.h"
Delete "$INSTDIR\lib\grass85\include\grass\dgl\graph_v2.h"
Delete "$INSTDIR\lib\grass85\include\grass\gjson.h"
Delete "$INSTDIR\lib\grass85\include\grass\raster3d.h"
Delete "$INSTDIR\lib\grass85\include\grass\ccmath_grass.h"
Delete "$INSTDIR\lib\grass85\include\grass\vect"
Delete "$INSTDIR\lib\grass85\include\grass\vect\dig_defines.h"
Delete "$INSTDIR\lib\grass85\include\grass\vect\dig_macros.h"
Delete "$INSTDIR\lib\grass85\include\grass\vect\digit.h"
Delete "$INSTDIR\lib\grass85\include\grass\vect\dig_structs.h"
Delete "$INSTDIR\lib\grass85\include\grass\vect\dig_externs.h"
Delete "$INSTDIR\lib\grass85\include\grass\parson.h"
Delete "$INSTDIR\lib\grass85\include\grass\cdhc.h"
Delete "$INSTDIR\lib\grass85\include\grass\simlib.h"
Delete "$INSTDIR\lib\grass85\include\grass\spawn.h"
Delete "$INSTDIR\lib\grass85\include\grass\gis.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs"
Delete "$INSTDIR\lib\grass85\include\grass\defs\segment.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\dig_atts.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\calc.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\stats.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\nviz.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\glocale.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\arraystats.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\ogsf.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\symbol.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\raster.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\la.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\linkm.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\rbtree.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\devlib.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\sqlp.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\vedit.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\neta.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\colors.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\btree.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\gmath.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\vector.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\gprojects.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\raster3d.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\cdhc.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\spawn.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\gis.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\Paintlib.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\dbmi.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\form.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\cluster.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\datetime.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\display.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\imagery.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\ortholib.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\rowio.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\bitmap.h"
Delete "$INSTDIR\lib\grass85\include\grass\defs\manage.h"
Delete "$INSTDIR\lib\grass85\include\grass\N_pde.h"
Delete "$INSTDIR\lib\grass85\include\grass\confparms.h"
Delete "$INSTDIR\lib\grass85\include\grass\fontcap.h"
Delete "$INSTDIR\lib\grass85\include\grass\dbmi.h"
Delete "$INSTDIR\lib\grass85\include\grass\form.h"
Delete "$INSTDIR\lib\grass85\include\grass\config.h"
Delete "$INSTDIR\lib\grass85\include\grass\cluster.h"
Delete "$INSTDIR\lib\grass85\include\grass\datetime.h"
Delete "$INSTDIR\lib\grass85\include\grass\display.h"
Delete "$INSTDIR\lib\grass85\include\grass\imagery.h"
Delete "$INSTDIR\lib\grass85\include\grass\N_solute_transport.h"
Delete "$INSTDIR\lib\grass85\include\grass\ortholib.h"
Delete "$INSTDIR\lib\grass85\include\grass\lrs.h"
Delete "$INSTDIR\lib\grass85\include\grass\rowio.h"
Delete "$INSTDIR\lib\grass85\include\grass\bitmap.h"
Delete "$INSTDIR\lib\grass85\include\grass\manage.h"
Delete "$INSTDIR\lib\grass85\include\export"
Delete "$INSTDIR\lib\grass85\include\export\grass_parson_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_vector_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_bitmap_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_qtree_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_raster3d_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_arraystats_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_dspf_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_temporal_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_linkm_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_sim_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_rtree_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_lrs_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_manage_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_dig2_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_rowio_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_gmath_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_display_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_imagery_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_dbstubs_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_dbmibase_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_cluster_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_gis_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_stats_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_dgl_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_iostream_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_segment_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_driver_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_sqlp_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_raster_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_neta_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_ccmath_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_gpde_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_interpfl_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_btree2_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_lidar_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_vedit_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_pngdriver_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_ogsf_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_psdriver_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_rli_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_gproj_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_btree_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_dbmidriver_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_dbmiclient_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_calc_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_cdhc_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_symb_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_datetime_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_shape_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_nviz_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_cairodriver_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_htmldriver_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_interpdata_export.h"
Delete "$INSTDIR\lib\grass85\include\export\grass_iortho_export.h"
RMDir "$INSTDIR\bin"
RMDir "$INSTDIR\lib\grass85\etc\d.polar"
RMDir "$INSTDIR\lib\grass85\etc\paint\decorations"
RMDir "$INSTDIR\lib\grass85\etc\paint\patterns"
RMDir "$INSTDIR\lib\grass85\etc\paint"
RMDir "$INSTDIR\lib\grass85\etc\d.mon"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\jupyter"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\script\__pycache__"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\script"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\exceptions\__pycache__"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\exceptions"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\__pycache__"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\imaging"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\lib"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\benchmark"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\utils\__pycache__"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\utils"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pydispatch"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\temporal"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\grassdb\__pycache__"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\grassdb"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\semantic_label"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\app\__pycache__"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\app"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\grid"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules\interface"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\modules"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\vector"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\messages"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\rpc"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\gis"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\raster"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\tests"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass\shell"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\pygrass"
RMDir "$INSTDIR\lib\grass85\etc\python\grass\gunittest"
RMDir "$INSTDIR\lib\grass85\etc\python\grass"
RMDir "$INSTDIR\lib\grass85\etc\python"
RMDir "$INSTDIR\lib\grass85\etc\db.test"
RMDir "$INSTDIR\lib\grass85\etc\i.band.library"
RMDir "$INSTDIR\lib\grass85\etc\colors"
RMDir "$INSTDIR\lib\grass85\etc\symbol\geology"
RMDir "$INSTDIR\lib\grass85\etc\symbol\n_arrows"
RMDir "$INSTDIR\lib\grass85\etc\symbol\extra"
RMDir "$INSTDIR\lib\grass85\etc\symbol\demo"
RMDir "$INSTDIR\lib\grass85\etc\symbol\legend"
RMDir "$INSTDIR\lib\grass85\etc\symbol\basic"
RMDir "$INSTDIR\lib\grass85\etc\symbol"
RMDir "$INSTDIR\lib\grass85\etc\lister"
RMDir "$INSTDIR\lib\grass85\etc\r.watershed"
RMDir "$INSTDIR\lib\grass85\etc\proj"
RMDir "$INSTDIR\lib\grass85\etc\sql"
RMDir "$INSTDIR\lib\grass85\etc"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\nviz\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\nviz"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\modules\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\modules"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\gcp\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\gcp"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\iclass\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\iclass"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\lmgr\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\lmgr"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\vnet\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\vnet"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\timeline\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\timeline"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\vdigit\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\vdigit"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\image2target\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\image2target"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\history\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\history"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\mapdisp\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\mapdisp"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\rlisetup\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\rlisetup"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\web_services\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\web_services"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\gmodeler\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\gmodeler"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\datacatalog\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\datacatalog"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\startup\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\startup"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\location_wizard\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\location_wizard"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\main_window\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\main_window"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\photo2image\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\photo2image"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\iscatt\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\iscatt"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\animation\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\animation"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\xml"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\mapswipe\__pycache__"
RMDir "$INSTDIR\lib\grass85\gui\wxpython\rdigit"
RMDir "$INSTDIR\lib\grass85\gui\wxpython"
RMDir "$INSTDIR\lib\grass85\gui\scripts"
RMDir "$INSTDIR\lib\grass85\gui\images\symbols\geology"
RMDir "$INSTDIR\lib\grass85\gui\images\symbols\n_arrows"
RMDir "$INSTDIR\lib\grass85\gui\images\symbols\extra"
RMDir "$INSTDIR\lib\grass85\gui\images\symbols\demo"
RMDir "$INSTDIR\lib\grass85\gui\images\symbols\legend"
RMDir "$INSTDIR\lib\grass85\gui\images\symbols\basic"
RMDir "$INSTDIR\lib\grass85\gui\images\symbols"
RMDir "$INSTDIR\lib\grass85\gui\images"
RMDir "$INSTDIR\lib\grass85\gui\xml"
RMDir "$INSTDIR\lib\grass85\gui\icons\grass"
RMDir "$INSTDIR\lib\grass85\gui\icons\flags"
RMDir "$INSTDIR\lib\grass85\gui\icons"
RMDir "$INSTDIR\lib\grass85\gui"
RMDir "$INSTDIR\lib\grass85\docs\html\colortables"
RMDir "$INSTDIR\lib\grass85\docs\html\barscales"
RMDir "$INSTDIR\lib\grass85\docs\html\icons"
RMDir "$INSTDIR\lib\grass85\docs\html\northarrows"
RMDir "$INSTDIR\lib\grass85\docs\html"
RMDir "$INSTDIR\lib\grass85\docs"
RMDir "$INSTDIR\lib\grass85\bin"
RMDir "$INSTDIR\lib\grass85\fonts"
RMDir "$INSTDIR\lib\grass85\lib"
RMDir "$INSTDIR\lib\grass85\locale\pl\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\pl"
RMDir "$INSTDIR\lib\grass85\locale\vi\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\vi"
RMDir "$INSTDIR\lib\grass85\locale\id_ID\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\id_ID"
RMDir "$INSTDIR\lib\grass85\locale\ml\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\ml"
RMDir "$INSTDIR\lib\grass85\locale\pt\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\pt"
RMDir "$INSTDIR\lib\grass85\locale\cs\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\cs"
RMDir "$INSTDIR\lib\grass85\locale\fr\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\fr"
RMDir "$INSTDIR\lib\grass85\locale\es\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\es"
RMDir "$INSTDIR\lib\grass85\locale\ar\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\ar"
RMDir "$INSTDIR\lib\grass85\locale\uk\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\uk"
RMDir "$INSTDIR\lib\grass85\locale\zh_CN\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\zh_CN"
RMDir "$INSTDIR\lib\grass85\locale\ta\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\ta"
RMDir "$INSTDIR\lib\grass85\locale\tr\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\tr"
RMDir "$INSTDIR\lib\grass85\locale\pt_BR\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\pt_BR"
RMDir "$INSTDIR\lib\grass85\locale\ko\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\ko"
RMDir "$INSTDIR\lib\grass85\locale\it\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\it"
RMDir "$INSTDIR\lib\grass85\locale\fi\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\fi"
RMDir "$INSTDIR\lib\grass85\locale\th\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\th"
RMDir "$INSTDIR\lib\grass85\locale\bn\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\bn"
RMDir "$INSTDIR\lib\grass85\locale\lv\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\lv"
RMDir "$INSTDIR\lib\grass85\locale\ro\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\ro"
RMDir "$INSTDIR\lib\grass85\locale\sl\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\sl"
RMDir "$INSTDIR\lib\grass85\locale\zh\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\zh"
RMDir "$INSTDIR\lib\grass85\locale\el\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\el"
RMDir "$INSTDIR\lib\grass85\locale\ja\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\ja"
RMDir "$INSTDIR\lib\grass85\locale\ru\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\ru"
RMDir "$INSTDIR\lib\grass85\locale\si\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\si"
RMDir "$INSTDIR\lib\grass85\locale\de\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\de"
RMDir "$INSTDIR\lib\grass85\locale\hu\LC_MESSAGES"
RMDir "$INSTDIR\lib\grass85\locale\hu"
RMDir "$INSTDIR\lib\grass85\locale"
RMDir "$INSTDIR\lib\grass85\scripts"
RMDir "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector\country_boundaries"
RMDir "$INSTDIR\lib\grass85\demolocation\PERMANENT\vector"
RMDir "$INSTDIR\lib\grass85\demolocation\PERMANENT\sqlite"
RMDir "$INSTDIR\lib\grass85\demolocation\PERMANENT"
RMDir "$INSTDIR\lib\grass85\demolocation"
RMDir "$INSTDIR\lib\grass85\utils"
RMDir "$INSTDIR\lib\grass85\driver\db"
RMDir "$INSTDIR\lib\grass85\driver"
RMDir "$INSTDIR\lib\grass85\share\applications"
RMDir "$INSTDIR\lib\grass85\share\metainfo"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\22x22\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\22x22"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\80x80\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\80x80"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\32x32\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\32x32"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\40x40\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\40x40"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\96x96\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\96x96"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\72x72\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\72x72"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\8x8\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\8x8"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\192x192\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\192x192"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\scalable\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\scalable"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\42x42\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\42x42"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\16x16\apps"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor\16x16"
RMDir "$INSTDIR\lib\grass85\share\icons\hicolor"
RMDir "$INSTDIR\lib\grass85\share\icons"
RMDir "$INSTDIR\lib\grass85\share"
RMDir "$INSTDIR\lib\grass85\include\grass\iostream"
RMDir "$INSTDIR\lib\grass85\include\grass\dgl"
RMDir "$INSTDIR\lib\grass85\include\grass\vect"
RMDir "$INSTDIR\lib\grass85\include\grass\defs"
RMDir "$INSTDIR\lib\grass85\include\grass"
RMDir "$INSTDIR\lib\grass85\include\export"
RMDir "$INSTDIR\lib\grass85\include"
RMDir "$INSTDIR\lib\grass85"
RMDir "$INSTDIR\lib"
!ifdef CPACK_NSIS_ADD_REMOVE
;Remove the add/remove program
Delete "$INSTDIR\AddRemove.exe"
!endif
;Remove the uninstaller itself.
Delete "$INSTDIR\Uninstall.exe"
DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0"
;Remove the installation directory if it is empty.
RMDir "$INSTDIR"
; Remove the registry entries.
DeleteRegKey SHCTX "Software\Humanity\GRASS 8.5.0"
; Removes all optional components
!insertmacro SectionList "RemoveSection_CPack"
!insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
;Delete empty start menu parent directories
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
startMenuDeleteLoop:
ClearErrors
RMDir $MUI_TEMP
GetFullPathName $MUI_TEMP "$MUI_TEMP\.."
IfErrors startMenuDeleteLoopDone
StrCmp "$MUI_TEMP" "$SMPROGRAMS" startMenuDeleteLoopDone startMenuDeleteLoop
startMenuDeleteLoopDone:
; If the user changed the shortcut, then uninstall may not work. This should
; try to fix it.
StrCpy $MUI_TEMP "$START_MENU"
Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
;Delete empty start menu parent directories
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
secondStartMenuDeleteLoop:
ClearErrors
RMDir $MUI_TEMP
GetFullPathName $MUI_TEMP "$MUI_TEMP\.."
IfErrors secondStartMenuDeleteLoopDone
StrCmp "$MUI_TEMP" "$SMPROGRAMS" secondStartMenuDeleteLoopDone secondStartMenuDeleteLoop
secondStartMenuDeleteLoopDone:
DeleteRegKey /ifempty SHCTX "Software\Humanity\GRASS 8.5.0"
Push $INSTDIR\bin
StrCmp $DO_NOT_ADD_TO_PATH_ "1" doNotRemoveFromPath 0
Call un.RemoveFromPath
doNotRemoveFromPath:
SectionEnd
;--------------------------------
; determine admin versus local install
; Is install for "AllUsers" or "JustMe"?
; Default to "JustMe" - set to "AllUsers" if admin or on Win9x
; This function is used for the very first "custom page" of the installer.
; This custom page does not show up visibly, but it executes prior to the
; first visible page and sets up $INSTDIR properly...
; Choose different default installation folder based on SV_ALLUSERS...
; "Program Files" for AllUsers, "My Documents" for JustMe...
Function .onInit
StrCmp "" "ON" 0 inst
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\GRASS 8.5.0" "UninstallString"
StrCmp $0 "" inst
MessageBox MB_YESNOCANCEL|MB_ICONEXCLAMATION \
"GRASS 8.5.0 is already installed. $\n$\nDo you want to uninstall the old version before installing the new one?" \
/SD IDYES IDYES uninst IDNO inst
Abort
;Run the uninstaller
uninst:
ClearErrors
# $0 should _always_ be quoted, however older versions of CMake did not
# do this. We'll conditionally remove the begin/end quotes.
# Remove first char if quote
StrCpy $2 $0 1 0 # copy first char
StrCmp $2 "$\"" 0 +2 # if char is quote
StrCpy $0 $0 "" 1 # remove first char
# Remove last char if quote
StrCpy $2 $0 1 -1 # copy last char
StrCmp $2 "$\"" 0 +2 # if char is quote
StrCpy $0 $0 -1 # remove last char
StrLen $2 "\Uninstall.exe"
StrCpy $3 $0 -$2 # remove "\Uninstall.exe" from UninstallString to get path
ExecWait '"$0" /S _?=$3' ;Do not copy the uninstaller to a temp file
IfErrors uninst_failed inst
uninst_failed:
MessageBox MB_OK|MB_ICONSTOP "Uninstall failed."
Abort
inst:
; Reads components status for registry
!insertmacro SectionList "InitSection"
; check to see if /D has been used to change
; the install directory by comparing it to the
; install directory that is expected to be the
; default
StrCpy $IS_DEFAULT_INSTALLDIR 0
StrCmp "$INSTDIR" "$PROGRAMFILES\GRASS 8.5.0" 0 +2
StrCpy $IS_DEFAULT_INSTALLDIR 1
StrCpy $SV_ALLUSERS "JustMe"
; if default install dir then change the default
; if it is installed for JustMe
StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2
StrCpy $INSTDIR "$DOCUMENTS\GRASS 8.5.0"
ClearErrors
UserInfo::GetName
IfErrors noLM
Pop $0
UserInfo::GetAccountType
Pop $1
StrCmp $1 "Admin" 0 +4
SetShellVarContext all
;MessageBox MB_OK 'User "$0" is in the Admin group'
StrCpy $SV_ALLUSERS "AllUsers"
Goto done
StrCmp $1 "Power" 0 +3
SetShellVarContext all
;MessageBox MB_OK 'User "$0" is in the Power Users group'
StrCpy $SV_ALLUSERS "AllUsers"
Goto done
noLM:
StrCpy $SV_ALLUSERS "AllUsers"
;Get installation folder from registry if available
done:
StrCmp $SV_ALLUSERS "AllUsers" 0 +3
StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2
StrCpy $INSTDIR "$PROGRAMFILES\GRASS 8.5.0"
StrCmp "" "ON" 0 noOptionsPage
!insertmacro MUI_INSTALLOPTIONS_EXTRACT "NSIS.InstallOptions.ini"
noOptionsPage:
FunctionEnd
|
Describe the bug
Installation is interrupted by g.mkfontcap.exe - System Error window popping up with the message
The code execution cannot proceed because VCRUNTIME140.dll was not found. Reinstalling the program may fix this problem. Clicking OK 4 times on the same error window times allows installation to proceed.
Installation finishes without error after this point.
To reproduce
Expected behavior
GRASS installation to proceed without error
Screenshots
System description
The text was updated successfully, but these errors were encountered: