# # Copyright (c) 2013 D. Richard Hipp # # This program is free software; you can redistribute it and/or # modify it under the terms of the Simplified BSD License (also # known as the "2-Clause License" or "FreeBSD License".) # # This program is distributed in the hope that it will be useful, # but without any warranty; without even the implied warranty of # merchantability or fitness for a particular purpose. # # Author contact information: # drh@hwaci.com # http://www.hwaci.com/drh/ # ############################################################################ # # Test UTF-8/UTF-16 detection # proc utf-check {testname args} { set i 1 foreach {fileName result} $args { fossil test-looks-like-utf $fileName test utf-check-$testname.$i {$::RESULT eq $result} incr i } } array set enc [list \ 0 binary \ 1 binary \ 2 unicode \ ] array set bom [list \ 0 "" \ 1 \xEF\xBB\xBF \ 2 [expr {$tcl_platform(byteOrder) eq "littleEndian" ? \ "\xFF\xFE" : "\xFE\xFF"}] \ ] array set data [list \ 0 "" \ 1 A \ 2 AB \ 3 ABC \ 4 ABCD \ 5 A\r \ 6 AB\r \ 7 ABC\r \ 8 ABCD\r \ 9 A\n \ 10 AB\n \ 11 ABC\n \ 12 ABCD\n \ 13 A\r\n \ 14 AB\r\n \ 15 ABC\r\n \ 16 ABCD\r\n \ 17 \x00A \ 18 \x00AB \ 19 \x00ABC \ 20 \x00ABCD \ 21 \x00A\r \ 22 \x00AB\r \ 23 \x00ABC\r \ 24 \x00ABCD\r \ 25 \x00A\n \ 26 \x00AB\n \ 27 \x00ABC\n \ 28 \x00ABCD\n \ 29 \x00A\r\n \ 30 \x00AB\r\n \ 31 \x00ABC\r\n \ 32 \x00ABCD\r\n \ 33 A\x00 \ 34 AB\x00 \ 35 ABC\x00 \ 36 ABCD\x00 \ 37 A\x00\r \ 38 AB\x00\r \ 39 ABC\x00\r \ 40 ABCD\x00\r \ 41 A\x00\n \ 42 AB\x00\n \ 43 ABC\x00\n \ 44 ABCD\x00\n \ 45 A\x00\r\n \ 46 AB\x00\r\n \ 47 ABC\x00\r\n \ 48 ABCD\x00\r\n \ 49 \x00A\x00 \ 50 \x00AB\x00 \ 51 \x00ABC\x00 \ 52 \x00ABCD\x00 \ 53 \x00A\x00\r \ 54 \x00AB\x00\r \ 55 \x00ABC\x00\r \ 56 \x00ABCD\x00\r \ 57 \x00A\x00\n \ 58 \x00AB\x00\n \ 59 \x00ABC\x00\n \ 60 \x00ABCD\x00\n \ 61 \x00A\x00\r\n \ 62 \x00AB\x00\r\n \ 63 \x00ABC\x00\r\n \ 64 \x00ABCD\x00\r\n \ 65 [string repeat A 8193] \ 66 [string repeat A 8193]\r \ 67 [string repeat A 8193]\n \ 68 [string repeat A 8193]\r\n \ 69 [string repeat ABCD 2049] \ 70 [string repeat ABCD 2049]\r \ 71 [string repeat ABCD 2049]\n \ 72 [string repeat ABCD 2049]\r\n \ 73 \x00[string repeat A 8193] \ 74 \x00[string repeat A 8193]\r \ 75 \x00[string repeat A 8193]\n \ 76 \x00[string repeat A 8193]\r\n \ 77 \x00[string repeat ABCD 2049] \ 78 \x00[string repeat ABCD 2049]\r \ 79 \x00[string repeat ABCD 2049]\n \ 80 \x00[string repeat ABCD 2049]\r\n \ 81 [string repeat A 8193]\x00 \ 82 [string repeat A 8193]\x00\r \ 83 [string repeat A 8193]\x00\n \ 84 [string repeat A 8193]\x00\r\n \ 85 [string repeat ABCD 2049]\x00 \ 86 [string repeat ABCD 2049]\x00\r \ 87 [string repeat ABCD 2049]\x00\n \ 88 [string repeat ABCD 2049]\x00\r\n \ 89 \x00[string repeat A 8193]\x00 \ 90 \x00[string repeat A 8193]\x00\r \ 91 \x00[string repeat A 8193]\x00\n \ 92 \x00[string repeat A 8193]\x00\r\n \ 93 \x00[string repeat ABCD 2049]\x00 \ 94 \x00[string repeat ABCD 2049]\x00\r \ 95 \x00[string repeat ABCD 2049]\x00\n \ 96 \x00[string repeat ABCD 2049]\x00\r\n \ ] array set extraData [list \ 0 "" \ 1 Z \ ] proc deleteTestFiles { path num } { set fn $num for {set i 0} {$i < [array size ::bom]} {incr i} { for {set j 0} {$j < [array size ::data]} {incr j} { for {set k 0} {$k < [array size ::extraData]} {incr k} { file delete [file join $path utf-check-$fn-$i-$j-$k.jnk] incr fn } } } } proc createTestFiles { path num } { set fn $num for {set i 0} {$i < [array size ::bom]} {incr i} { for {set j 0} {$j < [array size ::data]} {incr j} { for {set k 0} {$k < [array size ::extraData]} {incr k} { set f [open [file join $path utf-check-$fn-$i-$j-$k.jnk] \ {WRONLY CREAT TRUNC}]; incr fn fconfigure $f -encoding binary -translation binary puts -nonewline $f $::bom($i) if {$::enc($i) ne "binary"} then { puts -nonewline $f [encoding convertto $::enc($i) $::data($j)] } else { puts -nonewline $f $::data($j) } puts -nonewline $f $::extraData($k) flush $f; close $f } } } } # # NOTE: This procedure is used to generate the actual tests based on the data # in the test arrays (above). It needs to be used whenever additional # test data is added (i.e. to regenerate the test and their results with # the correct numbering). # proc createTestResults { path num } { set f [open [file join $path utf-check.txt] {WRONLY CREAT APPEND}] set fn $num for {set i 0} {$i < [array size ::bom]} {incr i} { for {set j 0} {$j < [array size ::data]} {incr j} { for {set k 0} {$k < [array size ::extraData]} {incr k} { fconfigure $f -encoding binary -translation binary set data \n\n append data {utf-check $fn } append data {\[file join \$tempPath utf-check-$fn-$i-$j-$k.jnk\] } append data {\\\n } append data {\[string map \[list %TEMP% \$tempPath \\r\\n \\n\] } append data {\\\n} append data {{%OUT%}]} fossil test-looks-like-utf [file join $path utf-check-$fn-$i-$j-$k.jnk] puts -nonewline $f [string map [list %OUT% [string map [list \ $::tempPath %TEMP%] $::RESULT]] [subst $data]] incr fn } } } flush $f; close $f } set tempPath [expr {[info exists env(TEMP)] ? \ $env(TEMP) : [file dirname [info script]]}] if {$tcl_platform(platform) eq "windows"} then { set tempPath [string map [list \\ /] $tempPath] } createTestFiles $tempPath 100 # createTestResults $tempPath 100 ########################### BEGIN GENERATED SECTION ########################### utf-check 100 [file join $tempPath utf-check-100-0-0-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-100-0-0-0.jnk" has 0 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 101 [file join $tempPath utf-check-101-0-0-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-101-0-0-1.jnk" has 1 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 102 [file join $tempPath utf-check-102-0-1-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-102-0-1-0.jnk" has 1 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 103 [file join $tempPath utf-check-103-0-1-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-103-0-1-1.jnk" has 2 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 104 [file join $tempPath utf-check-104-0-2-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-104-0-2-0.jnk" has 2 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 105 [file join $tempPath utf-check-105-0-2-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-105-0-2-1.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 106 [file join $tempPath utf-check-106-0-3-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-106-0-3-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 107 [file join $tempPath utf-check-107-0-3-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-107-0-3-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 108 [file join $tempPath utf-check-108-0-4-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-108-0-4-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 109 [file join $tempPath utf-check-109-0-4-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-109-0-4-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 110 [file join $tempPath utf-check-110-0-5-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-110-0-5-0.jnk" has 2 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 111 [file join $tempPath utf-check-111-0-5-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-111-0-5-1.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 112 [file join $tempPath utf-check-112-0-6-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-112-0-6-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 113 [file join $tempPath utf-check-113-0-6-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-113-0-6-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 114 [file join $tempPath utf-check-114-0-7-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-114-0-7-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 115 [file join $tempPath utf-check-115-0-7-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-115-0-7-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 116 [file join $tempPath utf-check-116-0-8-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-116-0-8-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 117 [file join $tempPath utf-check-117-0-8-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-117-0-8-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 118 [file join $tempPath utf-check-118-0-9-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-118-0-9-0.jnk" has 2 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 119 [file join $tempPath utf-check-119-0-9-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-119-0-9-1.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 120 [file join $tempPath utf-check-120-0-10-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-120-0-10-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 121 [file join $tempPath utf-check-121-0-10-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-121-0-10-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 122 [file join $tempPath utf-check-122-0-11-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-122-0-11-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 123 [file join $tempPath utf-check-123-0-11-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-123-0-11-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 124 [file join $tempPath utf-check-124-0-12-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-124-0-12-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 125 [file join $tempPath utf-check-125-0-12-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-125-0-12-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 126 [file join $tempPath utf-check-126-0-13-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-126-0-13-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 127 [file join $tempPath utf-check-127-0-13-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-127-0-13-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 128 [file join $tempPath utf-check-128-0-14-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-128-0-14-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 129 [file join $tempPath utf-check-129-0-14-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-129-0-14-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 130 [file join $tempPath utf-check-130-0-15-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-130-0-15-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 131 [file join $tempPath utf-check-131-0-15-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-131-0-15-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 132 [file join $tempPath utf-check-132-0-16-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-132-0-16-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 133 [file join $tempPath utf-check-133-0-16-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-133-0-16-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 134 [file join $tempPath utf-check-134-0-17-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-134-0-17-0.jnk" has 2 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 135 [file join $tempPath utf-check-135-0-17-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-135-0-17-1.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 136 [file join $tempPath utf-check-136-0-18-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-136-0-18-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 137 [file join $tempPath utf-check-137-0-18-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-137-0-18-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 138 [file join $tempPath utf-check-138-0-19-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-138-0-19-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 139 [file join $tempPath utf-check-139-0-19-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-139-0-19-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 140 [file join $tempPath utf-check-140-0-20-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-140-0-20-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 141 [file join $tempPath utf-check-141-0-20-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-141-0-20-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 142 [file join $tempPath utf-check-142-0-21-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-142-0-21-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 143 [file join $tempPath utf-check-143-0-21-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-143-0-21-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 144 [file join $tempPath utf-check-144-0-22-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-144-0-22-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 145 [file join $tempPath utf-check-145-0-22-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-145-0-22-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 146 [file join $tempPath utf-check-146-0-23-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-146-0-23-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 147 [file join $tempPath utf-check-147-0-23-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-147-0-23-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 148 [file join $tempPath utf-check-148-0-24-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-148-0-24-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 149 [file join $tempPath utf-check-149-0-24-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-149-0-24-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 150 [file join $tempPath utf-check-150-0-25-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-150-0-25-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 151 [file join $tempPath utf-check-151-0-25-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-151-0-25-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 152 [file join $tempPath utf-check-152-0-26-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-152-0-26-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 153 [file join $tempPath utf-check-153-0-26-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-153-0-26-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 154 [file join $tempPath utf-check-154-0-27-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-154-0-27-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 155 [file join $tempPath utf-check-155-0-27-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-155-0-27-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 156 [file join $tempPath utf-check-156-0-28-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-156-0-28-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 157 [file join $tempPath utf-check-157-0-28-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-157-0-28-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 158 [file join $tempPath utf-check-158-0-29-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-158-0-29-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 159 [file join $tempPath utf-check-159-0-29-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-159-0-29-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 160 [file join $tempPath utf-check-160-0-30-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-160-0-30-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 161 [file join $tempPath utf-check-161-0-30-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-161-0-30-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 162 [file join $tempPath utf-check-162-0-31-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-162-0-31-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 163 [file join $tempPath utf-check-163-0-31-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-163-0-31-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 164 [file join $tempPath utf-check-164-0-32-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-164-0-32-0.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 165 [file join $tempPath utf-check-165-0-32-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-165-0-32-1.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 166 [file join $tempPath utf-check-166-0-33-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-166-0-33-0.jnk" has 2 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 167 [file join $tempPath utf-check-167-0-33-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-167-0-33-1.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 168 [file join $tempPath utf-check-168-0-34-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-168-0-34-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 169 [file join $tempPath utf-check-169-0-34-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-169-0-34-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 170 [file join $tempPath utf-check-170-0-35-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-170-0-35-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 171 [file join $tempPath utf-check-171-0-35-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-171-0-35-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 172 [file join $tempPath utf-check-172-0-36-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-172-0-36-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 173 [file join $tempPath utf-check-173-0-36-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-173-0-36-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 174 [file join $tempPath utf-check-174-0-37-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-174-0-37-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 175 [file join $tempPath utf-check-175-0-37-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-175-0-37-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 176 [file join $tempPath utf-check-176-0-38-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-176-0-38-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 177 [file join $tempPath utf-check-177-0-38-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-177-0-38-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 178 [file join $tempPath utf-check-178-0-39-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-178-0-39-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 179 [file join $tempPath utf-check-179-0-39-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-179-0-39-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 180 [file join $tempPath utf-check-180-0-40-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-180-0-40-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 181 [file join $tempPath utf-check-181-0-40-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-181-0-40-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 182 [file join $tempPath utf-check-182-0-41-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-182-0-41-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 183 [file join $tempPath utf-check-183-0-41-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-183-0-41-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 184 [file join $tempPath utf-check-184-0-42-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-184-0-42-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 185 [file join $tempPath utf-check-185-0-42-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-185-0-42-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 186 [file join $tempPath utf-check-186-0-43-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-186-0-43-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 187 [file join $tempPath utf-check-187-0-43-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-187-0-43-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 188 [file join $tempPath utf-check-188-0-44-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-188-0-44-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 189 [file join $tempPath utf-check-189-0-44-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-189-0-44-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 190 [file join $tempPath utf-check-190-0-45-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-190-0-45-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 191 [file join $tempPath utf-check-191-0-45-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-191-0-45-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 192 [file join $tempPath utf-check-192-0-46-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-192-0-46-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 193 [file join $tempPath utf-check-193-0-46-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-193-0-46-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 194 [file join $tempPath utf-check-194-0-47-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-194-0-47-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 195 [file join $tempPath utf-check-195-0-47-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-195-0-47-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 196 [file join $tempPath utf-check-196-0-48-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-196-0-48-0.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 197 [file join $tempPath utf-check-197-0-48-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-197-0-48-1.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 198 [file join $tempPath utf-check-198-0-49-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-198-0-49-0.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 199 [file join $tempPath utf-check-199-0-49-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-199-0-49-1.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 200 [file join $tempPath utf-check-200-0-50-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-200-0-50-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 201 [file join $tempPath utf-check-201-0-50-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-201-0-50-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 202 [file join $tempPath utf-check-202-0-51-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-202-0-51-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 203 [file join $tempPath utf-check-203-0-51-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-203-0-51-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 204 [file join $tempPath utf-check-204-0-52-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-204-0-52-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 205 [file join $tempPath utf-check-205-0-52-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-205-0-52-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 206 [file join $tempPath utf-check-206-0-53-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-206-0-53-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 207 [file join $tempPath utf-check-207-0-53-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-207-0-53-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 208 [file join $tempPath utf-check-208-0-54-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-208-0-54-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 209 [file join $tempPath utf-check-209-0-54-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-209-0-54-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 210 [file join $tempPath utf-check-210-0-55-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-210-0-55-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 211 [file join $tempPath utf-check-211-0-55-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-211-0-55-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 212 [file join $tempPath utf-check-212-0-56-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-212-0-56-0.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 213 [file join $tempPath utf-check-213-0-56-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-213-0-56-1.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 214 [file join $tempPath utf-check-214-0-57-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-214-0-57-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 215 [file join $tempPath utf-check-215-0-57-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-215-0-57-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 216 [file join $tempPath utf-check-216-0-58-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-216-0-58-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 217 [file join $tempPath utf-check-217-0-58-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-217-0-58-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 218 [file join $tempPath utf-check-218-0-59-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-218-0-59-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 219 [file join $tempPath utf-check-219-0-59-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-219-0-59-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 220 [file join $tempPath utf-check-220-0-60-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-220-0-60-0.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 221 [file join $tempPath utf-check-221-0-60-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-221-0-60-1.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 222 [file join $tempPath utf-check-222-0-61-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-222-0-61-0.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 223 [file join $tempPath utf-check-223-0-61-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-223-0-61-1.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 224 [file join $tempPath utf-check-224-0-62-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-224-0-62-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 225 [file join $tempPath utf-check-225-0-62-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-225-0-62-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 226 [file join $tempPath utf-check-226-0-63-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-226-0-63-0.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 227 [file join $tempPath utf-check-227-0-63-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-227-0-63-1.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 228 [file join $tempPath utf-check-228-0-64-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-228-0-64-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 229 [file join $tempPath utf-check-229-0-64-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-229-0-64-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 230 [file join $tempPath utf-check-230-0-65-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-230-0-65-0.jnk" has 8193 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 231 [file join $tempPath utf-check-231-0-65-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-231-0-65-1.jnk" has 8194 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 232 [file join $tempPath utf-check-232-0-66-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-232-0-66-0.jnk" has 8194 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 233 [file join $tempPath utf-check-233-0-66-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-233-0-66-1.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 234 [file join $tempPath utf-check-234-0-67-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-234-0-67-0.jnk" has 8194 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 235 [file join $tempPath utf-check-235-0-67-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-235-0-67-1.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 236 [file join $tempPath utf-check-236-0-68-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-236-0-68-0.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 237 [file join $tempPath utf-check-237-0-68-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-237-0-68-1.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 238 [file join $tempPath utf-check-238-0-69-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-238-0-69-0.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 239 [file join $tempPath utf-check-239-0-69-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-239-0-69-1.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 240 [file join $tempPath utf-check-240-0-70-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-240-0-70-0.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 241 [file join $tempPath utf-check-241-0-70-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-241-0-70-1.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 242 [file join $tempPath utf-check-242-0-71-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-242-0-71-0.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 243 [file join $tempPath utf-check-243-0-71-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-243-0-71-1.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 244 [file join $tempPath utf-check-244-0-72-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-244-0-72-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 245 [file join $tempPath utf-check-245-0-72-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-245-0-72-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 246 [file join $tempPath utf-check-246-0-73-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-246-0-73-0.jnk" has 8194 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 247 [file join $tempPath utf-check-247-0-73-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-247-0-73-1.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 248 [file join $tempPath utf-check-248-0-74-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-248-0-74-0.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 249 [file join $tempPath utf-check-249-0-74-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-249-0-74-1.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 250 [file join $tempPath utf-check-250-0-75-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-250-0-75-0.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 251 [file join $tempPath utf-check-251-0-75-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-251-0-75-1.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 252 [file join $tempPath utf-check-252-0-76-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-252-0-76-0.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 253 [file join $tempPath utf-check-253-0-76-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-253-0-76-1.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 254 [file join $tempPath utf-check-254-0-77-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-254-0-77-0.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 255 [file join $tempPath utf-check-255-0-77-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-255-0-77-1.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 256 [file join $tempPath utf-check-256-0-78-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-256-0-78-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 257 [file join $tempPath utf-check-257-0-78-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-257-0-78-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 258 [file join $tempPath utf-check-258-0-79-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-258-0-79-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 259 [file join $tempPath utf-check-259-0-79-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-259-0-79-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 260 [file join $tempPath utf-check-260-0-80-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-260-0-80-0.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 261 [file join $tempPath utf-check-261-0-80-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-261-0-80-1.jnk" has 8200 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 262 [file join $tempPath utf-check-262-0-81-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-262-0-81-0.jnk" has 8194 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 263 [file join $tempPath utf-check-263-0-81-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-263-0-81-1.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 264 [file join $tempPath utf-check-264-0-82-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-264-0-82-0.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 265 [file join $tempPath utf-check-265-0-82-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-265-0-82-1.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 266 [file join $tempPath utf-check-266-0-83-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-266-0-83-0.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 267 [file join $tempPath utf-check-267-0-83-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-267-0-83-1.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 268 [file join $tempPath utf-check-268-0-84-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-268-0-84-0.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 269 [file join $tempPath utf-check-269-0-84-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-269-0-84-1.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 270 [file join $tempPath utf-check-270-0-85-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-270-0-85-0.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 271 [file join $tempPath utf-check-271-0-85-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-271-0-85-1.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 272 [file join $tempPath utf-check-272-0-86-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-272-0-86-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 273 [file join $tempPath utf-check-273-0-86-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-273-0-86-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 274 [file join $tempPath utf-check-274-0-87-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-274-0-87-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 275 [file join $tempPath utf-check-275-0-87-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-275-0-87-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 276 [file join $tempPath utf-check-276-0-88-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-276-0-88-0.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 277 [file join $tempPath utf-check-277-0-88-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-277-0-88-1.jnk" has 8200 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 278 [file join $tempPath utf-check-278-0-89-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-278-0-89-0.jnk" has 8195 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 279 [file join $tempPath utf-check-279-0-89-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-279-0-89-1.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 280 [file join $tempPath utf-check-280-0-90-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-280-0-90-0.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 281 [file join $tempPath utf-check-281-0-90-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-281-0-90-1.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 282 [file join $tempPath utf-check-282-0-91-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-282-0-91-0.jnk" has 8196 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 283 [file join $tempPath utf-check-283-0-91-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-283-0-91-1.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 284 [file join $tempPath utf-check-284-0-92-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-284-0-92-0.jnk" has 8197 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 285 [file join $tempPath utf-check-285-0-92-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-285-0-92-1.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 286 [file join $tempPath utf-check-286-0-93-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-286-0-93-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 287 [file join $tempPath utf-check-287-0-93-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-287-0-93-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 288 [file join $tempPath utf-check-288-0-94-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-288-0-94-0.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 289 [file join $tempPath utf-check-289-0-94-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-289-0-94-1.jnk" has 8200 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 290 [file join $tempPath utf-check-290-0-95-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-290-0-95-0.jnk" has 8199 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 291 [file join $tempPath utf-check-291-0-95-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-291-0-95-1.jnk" has 8200 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 292 [file join $tempPath utf-check-292-0-96-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-292-0-96-0.jnk" has 8200 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 293 [file join $tempPath utf-check-293-0-96-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-293-0-96-1.jnk" has 8201 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 294 [file join $tempPath utf-check-294-1-0-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-294-1-0-0.jnk" has 3 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 295 [file join $tempPath utf-check-295-1-0-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-295-1-0-1.jnk" has 4 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 296 [file join $tempPath utf-check-296-1-1-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-296-1-1-0.jnk" has 4 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 297 [file join $tempPath utf-check-297-1-1-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-297-1-1-1.jnk" has 5 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 298 [file join $tempPath utf-check-298-1-2-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-298-1-2-0.jnk" has 5 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 299 [file join $tempPath utf-check-299-1-2-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-299-1-2-1.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 300 [file join $tempPath utf-check-300-1-3-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-300-1-3-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 301 [file join $tempPath utf-check-301-1-3-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-301-1-3-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 302 [file join $tempPath utf-check-302-1-4-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-302-1-4-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 303 [file join $tempPath utf-check-303-1-4-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-303-1-4-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 304 [file join $tempPath utf-check-304-1-5-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-304-1-5-0.jnk" has 5 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 305 [file join $tempPath utf-check-305-1-5-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-305-1-5-1.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 306 [file join $tempPath utf-check-306-1-6-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-306-1-6-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 307 [file join $tempPath utf-check-307-1-6-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-307-1-6-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 308 [file join $tempPath utf-check-308-1-7-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-308-1-7-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 309 [file join $tempPath utf-check-309-1-7-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-309-1-7-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 310 [file join $tempPath utf-check-310-1-8-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-310-1-8-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 311 [file join $tempPath utf-check-311-1-8-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-311-1-8-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 312 [file join $tempPath utf-check-312-1-9-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-312-1-9-0.jnk" has 5 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 313 [file join $tempPath utf-check-313-1-9-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-313-1-9-1.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 314 [file join $tempPath utf-check-314-1-10-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-314-1-10-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 315 [file join $tempPath utf-check-315-1-10-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-315-1-10-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 316 [file join $tempPath utf-check-316-1-11-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-316-1-11-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 317 [file join $tempPath utf-check-317-1-11-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-317-1-11-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 318 [file join $tempPath utf-check-318-1-12-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-318-1-12-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 319 [file join $tempPath utf-check-319-1-12-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-319-1-12-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 320 [file join $tempPath utf-check-320-1-13-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-320-1-13-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 321 [file join $tempPath utf-check-321-1-13-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-321-1-13-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 322 [file join $tempPath utf-check-322-1-14-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-322-1-14-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 323 [file join $tempPath utf-check-323-1-14-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-323-1-14-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 324 [file join $tempPath utf-check-324-1-15-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-324-1-15-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 325 [file join $tempPath utf-check-325-1-15-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-325-1-15-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 326 [file join $tempPath utf-check-326-1-16-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-326-1-16-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 327 [file join $tempPath utf-check-327-1-16-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-327-1-16-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 328 [file join $tempPath utf-check-328-1-17-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-328-1-17-0.jnk" has 5 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 329 [file join $tempPath utf-check-329-1-17-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-329-1-17-1.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 330 [file join $tempPath utf-check-330-1-18-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-330-1-18-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 331 [file join $tempPath utf-check-331-1-18-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-331-1-18-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 332 [file join $tempPath utf-check-332-1-19-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-332-1-19-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 333 [file join $tempPath utf-check-333-1-19-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-333-1-19-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 334 [file join $tempPath utf-check-334-1-20-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-334-1-20-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 335 [file join $tempPath utf-check-335-1-20-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-335-1-20-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 336 [file join $tempPath utf-check-336-1-21-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-336-1-21-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 337 [file join $tempPath utf-check-337-1-21-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-337-1-21-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 338 [file join $tempPath utf-check-338-1-22-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-338-1-22-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 339 [file join $tempPath utf-check-339-1-22-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-339-1-22-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 340 [file join $tempPath utf-check-340-1-23-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-340-1-23-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 341 [file join $tempPath utf-check-341-1-23-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-341-1-23-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 342 [file join $tempPath utf-check-342-1-24-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-342-1-24-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 343 [file join $tempPath utf-check-343-1-24-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-343-1-24-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 344 [file join $tempPath utf-check-344-1-25-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-344-1-25-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 345 [file join $tempPath utf-check-345-1-25-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-345-1-25-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 346 [file join $tempPath utf-check-346-1-26-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-346-1-26-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 347 [file join $tempPath utf-check-347-1-26-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-347-1-26-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 348 [file join $tempPath utf-check-348-1-27-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-348-1-27-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 349 [file join $tempPath utf-check-349-1-27-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-349-1-27-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 350 [file join $tempPath utf-check-350-1-28-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-350-1-28-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 351 [file join $tempPath utf-check-351-1-28-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-351-1-28-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 352 [file join $tempPath utf-check-352-1-29-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-352-1-29-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 353 [file join $tempPath utf-check-353-1-29-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-353-1-29-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 354 [file join $tempPath utf-check-354-1-30-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-354-1-30-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 355 [file join $tempPath utf-check-355-1-30-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-355-1-30-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 356 [file join $tempPath utf-check-356-1-31-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-356-1-31-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 357 [file join $tempPath utf-check-357-1-31-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-357-1-31-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 358 [file join $tempPath utf-check-358-1-32-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-358-1-32-0.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 359 [file join $tempPath utf-check-359-1-32-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-359-1-32-1.jnk" has 11 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 360 [file join $tempPath utf-check-360-1-33-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-360-1-33-0.jnk" has 5 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 361 [file join $tempPath utf-check-361-1-33-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-361-1-33-1.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 362 [file join $tempPath utf-check-362-1-34-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-362-1-34-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 363 [file join $tempPath utf-check-363-1-34-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-363-1-34-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 364 [file join $tempPath utf-check-364-1-35-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-364-1-35-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 365 [file join $tempPath utf-check-365-1-35-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-365-1-35-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 366 [file join $tempPath utf-check-366-1-36-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-366-1-36-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 367 [file join $tempPath utf-check-367-1-36-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-367-1-36-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 368 [file join $tempPath utf-check-368-1-37-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-368-1-37-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 369 [file join $tempPath utf-check-369-1-37-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-369-1-37-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 370 [file join $tempPath utf-check-370-1-38-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-370-1-38-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 371 [file join $tempPath utf-check-371-1-38-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-371-1-38-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 372 [file join $tempPath utf-check-372-1-39-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-372-1-39-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 373 [file join $tempPath utf-check-373-1-39-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-373-1-39-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 374 [file join $tempPath utf-check-374-1-40-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-374-1-40-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 375 [file join $tempPath utf-check-375-1-40-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-375-1-40-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 376 [file join $tempPath utf-check-376-1-41-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-376-1-41-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 377 [file join $tempPath utf-check-377-1-41-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-377-1-41-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 378 [file join $tempPath utf-check-378-1-42-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-378-1-42-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 379 [file join $tempPath utf-check-379-1-42-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-379-1-42-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 380 [file join $tempPath utf-check-380-1-43-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-380-1-43-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 381 [file join $tempPath utf-check-381-1-43-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-381-1-43-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 382 [file join $tempPath utf-check-382-1-44-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-382-1-44-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 383 [file join $tempPath utf-check-383-1-44-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-383-1-44-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 384 [file join $tempPath utf-check-384-1-45-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-384-1-45-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 385 [file join $tempPath utf-check-385-1-45-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-385-1-45-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 386 [file join $tempPath utf-check-386-1-46-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-386-1-46-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 387 [file join $tempPath utf-check-387-1-46-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-387-1-46-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 388 [file join $tempPath utf-check-388-1-47-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-388-1-47-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 389 [file join $tempPath utf-check-389-1-47-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-389-1-47-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 390 [file join $tempPath utf-check-390-1-48-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-390-1-48-0.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 391 [file join $tempPath utf-check-391-1-48-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-391-1-48-1.jnk" has 11 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 392 [file join $tempPath utf-check-392-1-49-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-392-1-49-0.jnk" has 6 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 393 [file join $tempPath utf-check-393-1-49-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-393-1-49-1.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 394 [file join $tempPath utf-check-394-1-50-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-394-1-50-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 395 [file join $tempPath utf-check-395-1-50-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-395-1-50-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 396 [file join $tempPath utf-check-396-1-51-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-396-1-51-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 397 [file join $tempPath utf-check-397-1-51-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-397-1-51-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 398 [file join $tempPath utf-check-398-1-52-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-398-1-52-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 399 [file join $tempPath utf-check-399-1-52-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-399-1-52-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 400 [file join $tempPath utf-check-400-1-53-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-400-1-53-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 401 [file join $tempPath utf-check-401-1-53-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-401-1-53-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 402 [file join $tempPath utf-check-402-1-54-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-402-1-54-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 403 [file join $tempPath utf-check-403-1-54-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-403-1-54-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 404 [file join $tempPath utf-check-404-1-55-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-404-1-55-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 405 [file join $tempPath utf-check-405-1-55-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-405-1-55-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 406 [file join $tempPath utf-check-406-1-56-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-406-1-56-0.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 407 [file join $tempPath utf-check-407-1-56-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-407-1-56-1.jnk" has 11 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 408 [file join $tempPath utf-check-408-1-57-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-408-1-57-0.jnk" has 7 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 409 [file join $tempPath utf-check-409-1-57-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-409-1-57-1.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 410 [file join $tempPath utf-check-410-1-58-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-410-1-58-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 411 [file join $tempPath utf-check-411-1-58-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-411-1-58-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 412 [file join $tempPath utf-check-412-1-59-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-412-1-59-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 413 [file join $tempPath utf-check-413-1-59-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-413-1-59-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 414 [file join $tempPath utf-check-414-1-60-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-414-1-60-0.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 415 [file join $tempPath utf-check-415-1-60-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-415-1-60-1.jnk" has 11 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 416 [file join $tempPath utf-check-416-1-61-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-416-1-61-0.jnk" has 8 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 417 [file join $tempPath utf-check-417-1-61-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-417-1-61-1.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 418 [file join $tempPath utf-check-418-1-62-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-418-1-62-0.jnk" has 9 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 419 [file join $tempPath utf-check-419-1-62-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-419-1-62-1.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 420 [file join $tempPath utf-check-420-1-63-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-420-1-63-0.jnk" has 10 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 421 [file join $tempPath utf-check-421-1-63-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-421-1-63-1.jnk" has 11 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 422 [file join $tempPath utf-check-422-1-64-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-422-1-64-0.jnk" has 11 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 423 [file join $tempPath utf-check-423-1-64-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-423-1-64-1.jnk" has 12 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 424 [file join $tempPath utf-check-424-1-65-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-424-1-65-0.jnk" has 8196 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 425 [file join $tempPath utf-check-425-1-65-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-425-1-65-1.jnk" has 8197 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 426 [file join $tempPath utf-check-426-1-66-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-426-1-66-0.jnk" has 8197 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 427 [file join $tempPath utf-check-427-1-66-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-427-1-66-1.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 428 [file join $tempPath utf-check-428-1-67-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-428-1-67-0.jnk" has 8197 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 429 [file join $tempPath utf-check-429-1-67-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-429-1-67-1.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 430 [file join $tempPath utf-check-430-1-68-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-430-1-68-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 431 [file join $tempPath utf-check-431-1-68-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-431-1-68-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 432 [file join $tempPath utf-check-432-1-69-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-432-1-69-0.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 433 [file join $tempPath utf-check-433-1-69-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-433-1-69-1.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 434 [file join $tempPath utf-check-434-1-70-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-434-1-70-0.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 435 [file join $tempPath utf-check-435-1-70-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-435-1-70-1.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 436 [file join $tempPath utf-check-436-1-71-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-436-1-71-0.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 437 [file join $tempPath utf-check-437-1-71-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-437-1-71-1.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 438 [file join $tempPath utf-check-438-1-72-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-438-1-72-0.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 439 [file join $tempPath utf-check-439-1-72-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-439-1-72-1.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: no Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 440 [file join $tempPath utf-check-440-1-73-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-440-1-73-0.jnk" has 8197 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 441 [file join $tempPath utf-check-441-1-73-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-441-1-73-1.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 442 [file join $tempPath utf-check-442-1-74-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-442-1-74-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 443 [file join $tempPath utf-check-443-1-74-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-443-1-74-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 444 [file join $tempPath utf-check-444-1-75-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-444-1-75-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 445 [file join $tempPath utf-check-445-1-75-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-445-1-75-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 446 [file join $tempPath utf-check-446-1-76-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-446-1-76-0.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 447 [file join $tempPath utf-check-447-1-76-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-447-1-76-1.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 448 [file join $tempPath utf-check-448-1-77-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-448-1-77-0.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 449 [file join $tempPath utf-check-449-1-77-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-449-1-77-1.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 450 [file join $tempPath utf-check-450-1-78-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-450-1-78-0.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 451 [file join $tempPath utf-check-451-1-78-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-451-1-78-1.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 452 [file join $tempPath utf-check-452-1-79-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-452-1-79-0.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 453 [file join $tempPath utf-check-453-1-79-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-453-1-79-1.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 454 [file join $tempPath utf-check-454-1-80-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-454-1-80-0.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 455 [file join $tempPath utf-check-455-1-80-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-455-1-80-1.jnk" has 8203 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 456 [file join $tempPath utf-check-456-1-81-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-456-1-81-0.jnk" has 8197 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 457 [file join $tempPath utf-check-457-1-81-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-457-1-81-1.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 458 [file join $tempPath utf-check-458-1-82-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-458-1-82-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 459 [file join $tempPath utf-check-459-1-82-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-459-1-82-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 460 [file join $tempPath utf-check-460-1-83-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-460-1-83-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 461 [file join $tempPath utf-check-461-1-83-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-461-1-83-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 462 [file join $tempPath utf-check-462-1-84-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-462-1-84-0.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 463 [file join $tempPath utf-check-463-1-84-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-463-1-84-1.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 464 [file join $tempPath utf-check-464-1-85-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-464-1-85-0.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 465 [file join $tempPath utf-check-465-1-85-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-465-1-85-1.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 466 [file join $tempPath utf-check-466-1-86-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-466-1-86-0.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 467 [file join $tempPath utf-check-467-1-86-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-467-1-86-1.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 468 [file join $tempPath utf-check-468-1-87-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-468-1-87-0.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 469 [file join $tempPath utf-check-469-1-87-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-469-1-87-1.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 470 [file join $tempPath utf-check-470-1-88-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-470-1-88-0.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 471 [file join $tempPath utf-check-471-1-88-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-471-1-88-1.jnk" has 8203 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 472 [file join $tempPath utf-check-472-1-89-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-472-1-89-0.jnk" has 8198 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 473 [file join $tempPath utf-check-473-1-89-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-473-1-89-1.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 474 [file join $tempPath utf-check-474-1-90-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-474-1-90-0.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 475 [file join $tempPath utf-check-475-1-90-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-475-1-90-1.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 476 [file join $tempPath utf-check-476-1-91-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-476-1-91-0.jnk" has 8199 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 477 [file join $tempPath utf-check-477-1-91-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-477-1-91-1.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 478 [file join $tempPath utf-check-478-1-92-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-478-1-92-0.jnk" has 8200 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 479 [file join $tempPath utf-check-479-1-92-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-479-1-92-1.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 480 [file join $tempPath utf-check-480-1-93-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-480-1-93-0.jnk" has 8201 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 481 [file join $tempPath utf-check-481-1-93-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-481-1-93-1.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 482 [file join $tempPath utf-check-482-1-94-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-482-1-94-0.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 483 [file join $tempPath utf-check-483-1-94-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-483-1-94-1.jnk" has 8203 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 484 [file join $tempPath utf-check-484-1-95-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-484-1-95-0.jnk" has 8202 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 485 [file join $tempPath utf-check-485-1-95-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-485-1-95-1.jnk" has 8203 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 486 [file join $tempPath utf-check-486-1-96-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-486-1-96-0.jnk" has 8203 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 487 [file join $tempPath utf-check-487-1-96-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-487-1-96-1.jnk" has 8204 bytes. Starts with UTF-8 BOM: yes Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 488 [file join $tempPath utf-check-488-2-0-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-488-2-0-0.jnk" has 2 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 489 [file join $tempPath utf-check-489-2-0-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-489-2-0-1.jnk" has 3 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: yes Has flag LOOK_NUL: no Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 490 [file join $tempPath utf-check-490-2-1-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-490-2-1-0.jnk" has 4 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 491 [file join $tempPath utf-check-491-2-1-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-491-2-1-1.jnk" has 5 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 492 [file join $tempPath utf-check-492-2-2-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-492-2-2-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 493 [file join $tempPath utf-check-493-2-2-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-493-2-2-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 494 [file join $tempPath utf-check-494-2-3-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-494-2-3-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 495 [file join $tempPath utf-check-495-2-3-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-495-2-3-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 496 [file join $tempPath utf-check-496-2-4-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-496-2-4-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 497 [file join $tempPath utf-check-497-2-4-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-497-2-4-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 498 [file join $tempPath utf-check-498-2-5-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-498-2-5-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 499 [file join $tempPath utf-check-499-2-5-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-499-2-5-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 500 [file join $tempPath utf-check-500-2-6-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-500-2-6-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 501 [file join $tempPath utf-check-501-2-6-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-501-2-6-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 502 [file join $tempPath utf-check-502-2-7-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-502-2-7-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 503 [file join $tempPath utf-check-503-2-7-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-503-2-7-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 504 [file join $tempPath utf-check-504-2-8-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-504-2-8-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 505 [file join $tempPath utf-check-505-2-8-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-505-2-8-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 506 [file join $tempPath utf-check-506-2-9-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-506-2-9-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 507 [file join $tempPath utf-check-507-2-9-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-507-2-9-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 508 [file join $tempPath utf-check-508-2-10-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-508-2-10-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 509 [file join $tempPath utf-check-509-2-10-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-509-2-10-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 510 [file join $tempPath utf-check-510-2-11-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-510-2-11-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 511 [file join $tempPath utf-check-511-2-11-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-511-2-11-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 512 [file join $tempPath utf-check-512-2-12-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-512-2-12-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 513 [file join $tempPath utf-check-513-2-12-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-513-2-12-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 514 [file join $tempPath utf-check-514-2-13-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-514-2-13-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 515 [file join $tempPath utf-check-515-2-13-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-515-2-13-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 516 [file join $tempPath utf-check-516-2-14-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-516-2-14-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 517 [file join $tempPath utf-check-517-2-14-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-517-2-14-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 518 [file join $tempPath utf-check-518-2-15-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-518-2-15-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 519 [file join $tempPath utf-check-519-2-15-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-519-2-15-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 520 [file join $tempPath utf-check-520-2-16-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-520-2-16-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 521 [file join $tempPath utf-check-521-2-16-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-521-2-16-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 522 [file join $tempPath utf-check-522-2-17-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-522-2-17-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 523 [file join $tempPath utf-check-523-2-17-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-523-2-17-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 524 [file join $tempPath utf-check-524-2-18-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-524-2-18-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 525 [file join $tempPath utf-check-525-2-18-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-525-2-18-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 526 [file join $tempPath utf-check-526-2-19-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-526-2-19-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 527 [file join $tempPath utf-check-527-2-19-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-527-2-19-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 528 [file join $tempPath utf-check-528-2-20-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-528-2-20-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 529 [file join $tempPath utf-check-529-2-20-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-529-2-20-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 530 [file join $tempPath utf-check-530-2-21-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-530-2-21-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 531 [file join $tempPath utf-check-531-2-21-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-531-2-21-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 532 [file join $tempPath utf-check-532-2-22-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-532-2-22-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 533 [file join $tempPath utf-check-533-2-22-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-533-2-22-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 534 [file join $tempPath utf-check-534-2-23-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-534-2-23-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 535 [file join $tempPath utf-check-535-2-23-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-535-2-23-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 536 [file join $tempPath utf-check-536-2-24-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-536-2-24-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 537 [file join $tempPath utf-check-537-2-24-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-537-2-24-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 538 [file join $tempPath utf-check-538-2-25-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-538-2-25-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 539 [file join $tempPath utf-check-539-2-25-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-539-2-25-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 540 [file join $tempPath utf-check-540-2-26-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-540-2-26-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 541 [file join $tempPath utf-check-541-2-26-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-541-2-26-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 542 [file join $tempPath utf-check-542-2-27-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-542-2-27-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 543 [file join $tempPath utf-check-543-2-27-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-543-2-27-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 544 [file join $tempPath utf-check-544-2-28-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-544-2-28-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 545 [file join $tempPath utf-check-545-2-28-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-545-2-28-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 546 [file join $tempPath utf-check-546-2-29-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-546-2-29-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 547 [file join $tempPath utf-check-547-2-29-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-547-2-29-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 548 [file join $tempPath utf-check-548-2-30-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-548-2-30-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 549 [file join $tempPath utf-check-549-2-30-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-549-2-30-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 550 [file join $tempPath utf-check-550-2-31-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-550-2-31-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 551 [file join $tempPath utf-check-551-2-31-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-551-2-31-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 552 [file join $tempPath utf-check-552-2-32-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-552-2-32-0.jnk" has 16 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 553 [file join $tempPath utf-check-553-2-32-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-553-2-32-1.jnk" has 17 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 554 [file join $tempPath utf-check-554-2-33-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-554-2-33-0.jnk" has 6 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 555 [file join $tempPath utf-check-555-2-33-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-555-2-33-1.jnk" has 7 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 556 [file join $tempPath utf-check-556-2-34-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-556-2-34-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 557 [file join $tempPath utf-check-557-2-34-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-557-2-34-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 558 [file join $tempPath utf-check-558-2-35-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-558-2-35-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 559 [file join $tempPath utf-check-559-2-35-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-559-2-35-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 560 [file join $tempPath utf-check-560-2-36-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-560-2-36-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 561 [file join $tempPath utf-check-561-2-36-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-561-2-36-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 562 [file join $tempPath utf-check-562-2-37-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-562-2-37-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 563 [file join $tempPath utf-check-563-2-37-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-563-2-37-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 564 [file join $tempPath utf-check-564-2-38-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-564-2-38-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 565 [file join $tempPath utf-check-565-2-38-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-565-2-38-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 566 [file join $tempPath utf-check-566-2-39-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-566-2-39-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 567 [file join $tempPath utf-check-567-2-39-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-567-2-39-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 568 [file join $tempPath utf-check-568-2-40-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-568-2-40-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 569 [file join $tempPath utf-check-569-2-40-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-569-2-40-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 570 [file join $tempPath utf-check-570-2-41-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-570-2-41-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 571 [file join $tempPath utf-check-571-2-41-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-571-2-41-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 572 [file join $tempPath utf-check-572-2-42-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-572-2-42-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 573 [file join $tempPath utf-check-573-2-42-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-573-2-42-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 574 [file join $tempPath utf-check-574-2-43-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-574-2-43-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 575 [file join $tempPath utf-check-575-2-43-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-575-2-43-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 576 [file join $tempPath utf-check-576-2-44-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-576-2-44-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 577 [file join $tempPath utf-check-577-2-44-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-577-2-44-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 578 [file join $tempPath utf-check-578-2-45-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-578-2-45-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 579 [file join $tempPath utf-check-579-2-45-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-579-2-45-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 580 [file join $tempPath utf-check-580-2-46-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-580-2-46-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 581 [file join $tempPath utf-check-581-2-46-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-581-2-46-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 582 [file join $tempPath utf-check-582-2-47-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-582-2-47-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 583 [file join $tempPath utf-check-583-2-47-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-583-2-47-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 584 [file join $tempPath utf-check-584-2-48-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-584-2-48-0.jnk" has 16 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 585 [file join $tempPath utf-check-585-2-48-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-585-2-48-1.jnk" has 17 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 586 [file join $tempPath utf-check-586-2-49-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-586-2-49-0.jnk" has 8 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 587 [file join $tempPath utf-check-587-2-49-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-587-2-49-1.jnk" has 9 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 588 [file join $tempPath utf-check-588-2-50-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-588-2-50-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 589 [file join $tempPath utf-check-589-2-50-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-589-2-50-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 590 [file join $tempPath utf-check-590-2-51-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-590-2-51-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 591 [file join $tempPath utf-check-591-2-51-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-591-2-51-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 592 [file join $tempPath utf-check-592-2-52-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-592-2-52-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 593 [file join $tempPath utf-check-593-2-52-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-593-2-52-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 594 [file join $tempPath utf-check-594-2-53-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-594-2-53-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 595 [file join $tempPath utf-check-595-2-53-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-595-2-53-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 596 [file join $tempPath utf-check-596-2-54-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-596-2-54-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 597 [file join $tempPath utf-check-597-2-54-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-597-2-54-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 598 [file join $tempPath utf-check-598-2-55-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-598-2-55-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 599 [file join $tempPath utf-check-599-2-55-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-599-2-55-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 600 [file join $tempPath utf-check-600-2-56-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-600-2-56-0.jnk" has 16 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 601 [file join $tempPath utf-check-601-2-56-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-601-2-56-1.jnk" has 17 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 602 [file join $tempPath utf-check-602-2-57-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-602-2-57-0.jnk" has 10 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 603 [file join $tempPath utf-check-603-2-57-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-603-2-57-1.jnk" has 11 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 604 [file join $tempPath utf-check-604-2-58-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-604-2-58-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 605 [file join $tempPath utf-check-605-2-58-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-605-2-58-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 606 [file join $tempPath utf-check-606-2-59-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-606-2-59-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 607 [file join $tempPath utf-check-607-2-59-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-607-2-59-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 608 [file join $tempPath utf-check-608-2-60-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-608-2-60-0.jnk" has 16 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 609 [file join $tempPath utf-check-609-2-60-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-609-2-60-1.jnk" has 17 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 610 [file join $tempPath utf-check-610-2-61-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-610-2-61-0.jnk" has 12 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 611 [file join $tempPath utf-check-611-2-61-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-611-2-61-1.jnk" has 13 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 612 [file join $tempPath utf-check-612-2-62-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-612-2-62-0.jnk" has 14 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 613 [file join $tempPath utf-check-613-2-62-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-613-2-62-1.jnk" has 15 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 614 [file join $tempPath utf-check-614-2-63-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-614-2-63-0.jnk" has 16 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 615 [file join $tempPath utf-check-615-2-63-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-615-2-63-1.jnk" has 17 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 616 [file join $tempPath utf-check-616-2-64-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-616-2-64-0.jnk" has 18 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 617 [file join $tempPath utf-check-617-2-64-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-617-2-64-1.jnk" has 19 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: no Has flag LOOK_ODD: no}] utf-check 618 [file join $tempPath utf-check-618-2-65-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-618-2-65-0.jnk" has 16388 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 619 [file join $tempPath utf-check-619-2-65-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-619-2-65-1.jnk" has 16389 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 620 [file join $tempPath utf-check-620-2-66-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-620-2-66-0.jnk" has 16390 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 621 [file join $tempPath utf-check-621-2-66-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-621-2-66-1.jnk" has 16391 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 622 [file join $tempPath utf-check-622-2-67-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-622-2-67-0.jnk" has 16390 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 623 [file join $tempPath utf-check-623-2-67-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-623-2-67-1.jnk" has 16391 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 624 [file join $tempPath utf-check-624-2-68-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-624-2-68-0.jnk" has 16392 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 625 [file join $tempPath utf-check-625-2-68-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-625-2-68-1.jnk" has 16393 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 626 [file join $tempPath utf-check-626-2-69-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-626-2-69-0.jnk" has 16394 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 627 [file join $tempPath utf-check-627-2-69-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-627-2-69-1.jnk" has 16395 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 628 [file join $tempPath utf-check-628-2-70-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-628-2-70-0.jnk" has 16396 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 629 [file join $tempPath utf-check-629-2-70-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-629-2-70-1.jnk" has 16397 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 630 [file join $tempPath utf-check-630-2-71-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-630-2-71-0.jnk" has 16396 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 631 [file join $tempPath utf-check-631-2-71-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-631-2-71-1.jnk" has 16397 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 632 [file join $tempPath utf-check-632-2-72-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-632-2-72-0.jnk" has 16398 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 633 [file join $tempPath utf-check-633-2-72-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-633-2-72-1.jnk" has 16399 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 634 [file join $tempPath utf-check-634-2-73-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-634-2-73-0.jnk" has 16390 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 635 [file join $tempPath utf-check-635-2-73-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-635-2-73-1.jnk" has 16391 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 636 [file join $tempPath utf-check-636-2-74-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-636-2-74-0.jnk" has 16392 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 637 [file join $tempPath utf-check-637-2-74-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-637-2-74-1.jnk" has 16393 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 638 [file join $tempPath utf-check-638-2-75-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-638-2-75-0.jnk" has 16392 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 639 [file join $tempPath utf-check-639-2-75-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-639-2-75-1.jnk" has 16393 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 640 [file join $tempPath utf-check-640-2-76-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-640-2-76-0.jnk" has 16394 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 641 [file join $tempPath utf-check-641-2-76-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-641-2-76-1.jnk" has 16395 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 642 [file join $tempPath utf-check-642-2-77-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-642-2-77-0.jnk" has 16396 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 643 [file join $tempPath utf-check-643-2-77-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-643-2-77-1.jnk" has 16397 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 644 [file join $tempPath utf-check-644-2-78-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-644-2-78-0.jnk" has 16398 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 645 [file join $tempPath utf-check-645-2-78-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-645-2-78-1.jnk" has 16399 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 646 [file join $tempPath utf-check-646-2-79-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-646-2-79-0.jnk" has 16398 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 647 [file join $tempPath utf-check-647-2-79-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-647-2-79-1.jnk" has 16399 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 648 [file join $tempPath utf-check-648-2-80-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-648-2-80-0.jnk" has 16400 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 649 [file join $tempPath utf-check-649-2-80-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-649-2-80-1.jnk" has 16401 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 650 [file join $tempPath utf-check-650-2-81-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-650-2-81-0.jnk" has 16390 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 651 [file join $tempPath utf-check-651-2-81-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-651-2-81-1.jnk" has 16391 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 652 [file join $tempPath utf-check-652-2-82-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-652-2-82-0.jnk" has 16392 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 653 [file join $tempPath utf-check-653-2-82-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-653-2-82-1.jnk" has 16393 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 654 [file join $tempPath utf-check-654-2-83-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-654-2-83-0.jnk" has 16392 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 655 [file join $tempPath utf-check-655-2-83-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-655-2-83-1.jnk" has 16393 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 656 [file join $tempPath utf-check-656-2-84-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-656-2-84-0.jnk" has 16394 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 657 [file join $tempPath utf-check-657-2-84-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-657-2-84-1.jnk" has 16395 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 658 [file join $tempPath utf-check-658-2-85-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-658-2-85-0.jnk" has 16396 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 659 [file join $tempPath utf-check-659-2-85-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-659-2-85-1.jnk" has 16397 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 660 [file join $tempPath utf-check-660-2-86-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-660-2-86-0.jnk" has 16398 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 661 [file join $tempPath utf-check-661-2-86-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-661-2-86-1.jnk" has 16399 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 662 [file join $tempPath utf-check-662-2-87-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-662-2-87-0.jnk" has 16398 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 663 [file join $tempPath utf-check-663-2-87-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-663-2-87-1.jnk" has 16399 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 664 [file join $tempPath utf-check-664-2-88-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-664-2-88-0.jnk" has 16400 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-16: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: yes Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 665 [file join $tempPath utf-check-665-2-88-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-665-2-88-1.jnk" has 16401 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: yes Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 666 [file join $tempPath utf-check-666-2-89-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-666-2-89-0.jnk" has 16392 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 667 [file join $tempPath utf-check-667-2-89-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-667-2-89-1.jnk" has 16393 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 668 [file join $tempPath utf-check-668-2-90-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-668-2-90-0.jnk" has 16394 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 669 [file join $tempPath utf-check-669-2-90-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-669-2-90-1.jnk" has 16395 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 670 [file join $tempPath utf-check-670-2-91-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-670-2-91-0.jnk" has 16394 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 671 [file join $tempPath utf-check-671-2-91-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-671-2-91-1.jnk" has 16395 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 672 [file join $tempPath utf-check-672-2-92-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-672-2-92-0.jnk" has 16396 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 673 [file join $tempPath utf-check-673-2-92-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-673-2-92-1.jnk" has 16397 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 674 [file join $tempPath utf-check-674-2-93-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-674-2-93-0.jnk" has 16398 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 675 [file join $tempPath utf-check-675-2-93-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-675-2-93-1.jnk" has 16399 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 676 [file join $tempPath utf-check-676-2-94-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-676-2-94-0.jnk" has 16400 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 677 [file join $tempPath utf-check-677-2-94-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-677-2-94-1.jnk" has 16401 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: no Has flag LOOK_LONE_LF: no Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 678 [file join $tempPath utf-check-678-2-95-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-678-2-95-0.jnk" has 16400 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 679 [file join $tempPath utf-check-679-2-95-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-679-2-95-1.jnk" has 16401 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: no Has flag LOOK_LONE_CR: no Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 680 [file join $tempPath utf-check-680-2-96-0.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-680-2-96-0.jnk" has 16402 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] utf-check 681 [file join $tempPath utf-check-681-2-96-1.jnk] \ [string map [list %TEMP% $tempPath \r\n \n] \ {File "%TEMP%/utf-check-681-2-96-1.jnk" has 16403 bytes. Starts with UTF-8 BOM: no Starts with UTF-16 BOM: no Looks like UTF-8: no Has flag LOOK_NUL: yes Has flag LOOK_CR: yes Has flag LOOK_LONE_CR: yes Has flag LOOK_LF: yes Has flag LOOK_LONE_LF: yes Has flag LOOK_CRLF: no Has flag LOOK_LENGTH: yes Has flag LOOK_ODD: no}] ############################ END GENERATED SECTION ############################ deleteTestFiles $tempPath 100