The current format out of the box:
001 START V C 00:00:00:00 00:01:20:00 00:00:00:00 00:01:20:00
002 V C 00:01:20:00 00:02:55:00 00:01:20:00 00:02:55:00
003 V C 00:02:55:00 00:05:05:00 00:02:55:00 00:05:05:00
Seems to be missing CLIP# in the 2nd column for Da Vinci Resolve to correctly split as far as I can tell.
I was able to work around with this awk oneliner in the mean time.
awk -F ' ' '{if($2 != "START"){$2 =" CLIP"NR-1" V\t" } print $0 }'
Result:
001 START V C 00:00:00:00 00:01:20:00 00:00:00:00 00:01:20:00
002 CLIP1 V C 00:01:20:00 00:02:55:00 00:01:20:00 00:02:55:00
003 CLIP2 V C 00:02:55:00 00:05:05:00 00:02:55:00 00:05:05:00