As described in the error message, both strutils and unicode define a strip procedure that matches the call. To fix this your options are:
Specify which version to call, e.g.
strutils.split(curStr,' ')
Run
or don't import one of the strip procedures, e.g.
import strutils
import unicode except strip
Run
