@port-labs/jq-node-bindings 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (286) hide show
  1. package/binding.gyp +3 -3
  2. package/configure +8 -6
  3. package/deps/jq/.travis.yml +184 -35
  4. package/deps/jq/AUTHORS +31 -30
  5. package/deps/jq/COPYING +2 -2
  6. package/deps/jq/KEYS +8 -0
  7. package/deps/jq/Makefile.am +85 -70
  8. package/deps/jq/NEWS +5 -4
  9. package/deps/jq/README.md +18 -9
  10. package/deps/jq/appveyor.yml +53 -0
  11. package/deps/jq/compile-ios.sh +5 -5
  12. package/deps/jq/config/m4/check-math-func.m4 +7 -2
  13. package/deps/jq/configure.ac +130 -68
  14. package/deps/jq/docs/Rakefile +14 -135
  15. package/deps/jq/docs/Rakefile.manual +49 -0
  16. package/deps/jq/docs/Rakefile.website +76 -0
  17. package/deps/jq/docs/content/2.download/default.yml +115 -39
  18. package/deps/jq/docs/content/3.manual/manual.yml +641 -231
  19. package/deps/jq/docs/content/3.manual/v1.3/manual.yml +130 -130
  20. package/deps/jq/docs/content/3.manual/v1.4/manual.yml +160 -160
  21. package/deps/jq/docs/content/3.manual/v1.5/manual.yml +2878 -0
  22. package/deps/jq/docs/content/3.manual/v1.6/manual.yml +3287 -0
  23. package/deps/jq/docs/content/index/index.yml +28 -6
  24. package/deps/jq/docs/public/.htaccess +2 -2
  25. package/deps/jq/docs/public/css/base.scss +141 -59
  26. package/deps/jq/docs/public/js/manual-search.js +52 -0
  27. package/deps/jq/docs/site.yml +1 -10
  28. package/deps/jq/docs/templates/default.liquid +10 -10
  29. package/deps/jq/docs/templates/index.liquid +45 -32
  30. package/deps/jq/docs/templates/manual.liquid +67 -90
  31. package/deps/jq/docs/templates/shared/_footer.liquid +10 -5
  32. package/deps/jq/docs/templates/shared/_head.liquid +17 -12
  33. package/deps/jq/docs/templates/shared/_navbar.liquid +27 -0
  34. package/deps/jq/jq.1.prebuilt +523 -139
  35. package/deps/jq/modules/oniguruma/AUTHORS +1 -0
  36. package/deps/jq/modules/oniguruma/CMakeLists.txt +86 -0
  37. package/deps/jq/modules/oniguruma/COPYING +28 -0
  38. package/deps/jq/modules/oniguruma/ChangeLog +0 -0
  39. package/deps/jq/modules/oniguruma/HISTORY +2138 -0
  40. package/deps/jq/modules/oniguruma/Makefile.am +33 -0
  41. package/deps/jq/modules/oniguruma/NEWS +0 -0
  42. package/deps/jq/modules/oniguruma/README +189 -0
  43. package/deps/jq/modules/oniguruma/README.ja +195 -0
  44. package/deps/jq/modules/oniguruma/README.md +203 -0
  45. package/deps/jq/modules/oniguruma/cmake/dist.cmake +321 -0
  46. package/deps/jq/modules/oniguruma/compile +348 -0
  47. package/deps/jq/modules/oniguruma/config.guess +1754 -0
  48. package/deps/jq/modules/oniguruma/config.sub +1890 -0
  49. package/deps/jq/modules/oniguruma/configure.ac +87 -0
  50. package/deps/jq/modules/oniguruma/contributed/libfuzzer-onig.cpp +31 -0
  51. package/deps/jq/modules/oniguruma/depcomp +791 -0
  52. package/deps/jq/modules/oniguruma/dist.info +10 -0
  53. package/deps/jq/modules/oniguruma/doc/API +660 -0
  54. package/deps/jq/modules/oniguruma/doc/API.ja +667 -0
  55. package/deps/jq/modules/oniguruma/doc/FAQ +12 -0
  56. package/deps/jq/modules/oniguruma/doc/FAQ.ja +22 -0
  57. package/deps/jq/modules/oniguruma/doc/RE +436 -0
  58. package/deps/jq/modules/oniguruma/doc/RE.ja +448 -0
  59. package/deps/jq/modules/oniguruma/doc/UNICODE_PROPERTIES +698 -0
  60. package/deps/jq/modules/oniguruma/index.html +181 -0
  61. package/deps/jq/modules/oniguruma/index_ja.html +184 -0
  62. package/deps/jq/modules/oniguruma/install-sh +541 -0
  63. package/deps/jq/modules/oniguruma/m4/.whatever +0 -0
  64. package/deps/jq/modules/oniguruma/make_win32.bat +3 -0
  65. package/deps/jq/modules/oniguruma/make_win64.bat +3 -0
  66. package/deps/jq/modules/oniguruma/missing +215 -0
  67. package/deps/jq/modules/oniguruma/onig-config.in +78 -0
  68. package/deps/jq/modules/oniguruma/oniguruma.pc.cmake.in +13 -0
  69. package/deps/jq/modules/oniguruma/oniguruma.pc.in +14 -0
  70. package/deps/jq/modules/oniguruma/sample/CMakeLists.txt +28 -0
  71. package/deps/jq/modules/oniguruma/sample/Makefile.am +34 -0
  72. package/deps/jq/modules/oniguruma/sample/bug_fix.c +131 -0
  73. package/deps/jq/modules/oniguruma/sample/crnl.c +127 -0
  74. package/deps/jq/modules/oniguruma/sample/encode.c +308 -0
  75. package/deps/jq/modules/oniguruma/sample/listcap.c +110 -0
  76. package/deps/jq/modules/oniguruma/sample/names.c +75 -0
  77. package/deps/jq/modules/oniguruma/sample/posix.c +96 -0
  78. package/deps/jq/modules/oniguruma/sample/scan.c +88 -0
  79. package/deps/jq/modules/oniguruma/sample/simple.c +59 -0
  80. package/deps/jq/modules/oniguruma/sample/sql.c +76 -0
  81. package/deps/jq/modules/oniguruma/sample/syntax.c +76 -0
  82. package/deps/jq/modules/oniguruma/sample/user_property.c +87 -0
  83. package/deps/jq/modules/oniguruma/src/Makefile.am +58 -0
  84. package/deps/jq/modules/oniguruma/src/Makefile.windows +183 -0
  85. package/deps/jq/modules/oniguruma/src/ascii.c +61 -0
  86. package/deps/jq/modules/oniguruma/src/big5.c +190 -0
  87. package/deps/jq/modules/oniguruma/src/config.h.cmake.in +71 -0
  88. package/deps/jq/modules/oniguruma/src/config.h.win32 +84 -0
  89. package/deps/jq/modules/oniguruma/src/config.h.win64 +84 -0
  90. package/deps/jq/modules/oniguruma/src/cp1251.c +203 -0
  91. package/deps/jq/modules/oniguruma/src/euc_jp.c +310 -0
  92. package/deps/jq/modules/oniguruma/src/euc_jp_prop.c +158 -0
  93. package/deps/jq/modules/oniguruma/src/euc_jp_prop.gperf +27 -0
  94. package/deps/jq/modules/oniguruma/src/euc_kr.c +188 -0
  95. package/deps/jq/modules/oniguruma/src/euc_tw.c +171 -0
  96. package/deps/jq/modules/oniguruma/src/gb18030.c +538 -0
  97. package/deps/jq/modules/oniguruma/src/gperf_fold_key_conv.py +67 -0
  98. package/deps/jq/modules/oniguruma/src/gperf_unfold_key_conv.py +55 -0
  99. package/deps/jq/modules/oniguruma/src/iso8859_1.c +275 -0
  100. package/deps/jq/modules/oniguruma/src/iso8859_10.c +242 -0
  101. package/deps/jq/modules/oniguruma/src/iso8859_11.c +99 -0
  102. package/deps/jq/modules/oniguruma/src/iso8859_13.c +231 -0
  103. package/deps/jq/modules/oniguruma/src/iso8859_14.c +244 -0
  104. package/deps/jq/modules/oniguruma/src/iso8859_15.c +238 -0
  105. package/deps/jq/modules/oniguruma/src/iso8859_16.c +240 -0
  106. package/deps/jq/modules/oniguruma/src/iso8859_2.c +238 -0
  107. package/deps/jq/modules/oniguruma/src/iso8859_3.c +238 -0
  108. package/deps/jq/modules/oniguruma/src/iso8859_4.c +240 -0
  109. package/deps/jq/modules/oniguruma/src/iso8859_5.c +229 -0
  110. package/deps/jq/modules/oniguruma/src/iso8859_6.c +99 -0
  111. package/deps/jq/modules/oniguruma/src/iso8859_7.c +225 -0
  112. package/deps/jq/modules/oniguruma/src/iso8859_8.c +99 -0
  113. package/deps/jq/modules/oniguruma/src/iso8859_9.c +231 -0
  114. package/deps/jq/modules/oniguruma/src/koi8.c +253 -0
  115. package/deps/jq/modules/oniguruma/src/koi8_r.c +215 -0
  116. package/deps/jq/modules/oniguruma/src/make_unicode_fold.sh +22 -0
  117. package/deps/jq/modules/oniguruma/src/make_unicode_fold_data.py +306 -0
  118. package/deps/jq/modules/oniguruma/src/make_unicode_property.sh +18 -0
  119. package/deps/jq/modules/oniguruma/src/make_unicode_property_data.py +545 -0
  120. package/deps/jq/modules/oniguruma/src/mktable.c +1184 -0
  121. package/deps/jq/modules/oniguruma/src/onig_init.c +45 -0
  122. package/deps/jq/modules/oniguruma/src/oniggnu.h +85 -0
  123. package/deps/jq/modules/oniguruma/src/onigposix.h +169 -0
  124. package/deps/jq/modules/oniguruma/src/oniguruma.h +841 -0
  125. package/deps/jq/modules/oniguruma/src/regcomp.c +6300 -0
  126. package/deps/jq/modules/oniguruma/src/regenc.c +917 -0
  127. package/deps/jq/modules/oniguruma/src/regenc.h +243 -0
  128. package/deps/jq/modules/oniguruma/src/regerror.c +393 -0
  129. package/deps/jq/modules/oniguruma/src/regexec.c +3856 -0
  130. package/deps/jq/modules/oniguruma/src/regext.c +202 -0
  131. package/deps/jq/modules/oniguruma/src/reggnu.c +147 -0
  132. package/deps/jq/modules/oniguruma/src/regint.h +779 -0
  133. package/deps/jq/modules/oniguruma/src/regparse.c +5403 -0
  134. package/deps/jq/modules/oniguruma/src/regparse.h +351 -0
  135. package/deps/jq/modules/oniguruma/src/regposerr.c +105 -0
  136. package/deps/jq/modules/oniguruma/src/regposix.c +306 -0
  137. package/deps/jq/modules/oniguruma/src/regsyntax.c +315 -0
  138. package/deps/jq/modules/oniguruma/src/regtrav.c +76 -0
  139. package/deps/jq/modules/oniguruma/src/regversion.c +57 -0
  140. package/deps/jq/modules/oniguruma/src/sjis.c +341 -0
  141. package/deps/jq/modules/oniguruma/src/sjis_prop.c +158 -0
  142. package/deps/jq/modules/oniguruma/src/sjis_prop.gperf +27 -0
  143. package/deps/jq/modules/oniguruma/src/st.c +589 -0
  144. package/deps/jq/modules/oniguruma/src/st.h +68 -0
  145. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold1_key.c +2250 -0
  146. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold2_key.c +203 -0
  147. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold3_key.c +113 -0
  148. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold_data.c +1225 -0
  149. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data.c +24742 -0
  150. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data_posix.c +4846 -0
  151. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_unfold_key.c +2571 -0
  152. package/deps/jq/modules/oniguruma/src/unicode.c +664 -0
  153. package/deps/jq/modules/oniguruma/src/unicode_fold1_key.c +2548 -0
  154. package/deps/jq/modules/oniguruma/src/unicode_fold2_key.c +203 -0
  155. package/deps/jq/modules/oniguruma/src/unicode_fold3_key.c +113 -0
  156. package/deps/jq/modules/oniguruma/src/unicode_fold_data.c +1366 -0
  157. package/deps/jq/modules/oniguruma/src/unicode_property_data.c +25306 -0
  158. package/deps/jq/modules/oniguruma/src/unicode_property_data_posix.c +4940 -0
  159. package/deps/jq/modules/oniguruma/src/unicode_unfold_key.c +2854 -0
  160. package/deps/jq/modules/oniguruma/src/utf16_be.c +235 -0
  161. package/deps/jq/modules/oniguruma/src/utf16_le.c +245 -0
  162. package/deps/jq/modules/oniguruma/src/utf32_be.c +194 -0
  163. package/deps/jq/modules/oniguruma/src/utf32_le.c +194 -0
  164. package/deps/jq/modules/oniguruma/src/utf8.c +335 -0
  165. package/deps/jq/modules/oniguruma/test/Makefile.am +28 -0
  166. package/deps/jq/modules/oniguruma/test/testc.c +874 -0
  167. package/deps/jq/modules/oniguruma/test/testu.c +916 -0
  168. package/deps/jq/modules/oniguruma/test-driver +153 -0
  169. package/deps/jq/modules/oniguruma/windows/testc.c +869 -0
  170. package/deps/jq/scripts/crosscompile +2 -1
  171. package/deps/jq/scripts/gen_utf8_tables.py +2 -3
  172. package/deps/jq/scripts/update-website +29 -0
  173. package/deps/jq/scripts/version +7 -2
  174. package/deps/jq/sig/jq-release.key +41 -0
  175. package/deps/jq/sig/v1.3/jq-linux-x86.asc +17 -0
  176. package/deps/jq/sig/v1.3/jq-linux-x86_64.asc +17 -0
  177. package/deps/jq/sig/v1.3/jq-osx-x86.asc +17 -0
  178. package/deps/jq/sig/v1.3/jq-osx-x86_64.asc +17 -0
  179. package/deps/jq/sig/v1.3/jq-win32.exe.asc +17 -0
  180. package/deps/jq/sig/v1.3/jq-win64.exe.asc +17 -0
  181. package/deps/jq/sig/v1.3/sha256sum.txt +6 -0
  182. package/deps/jq/sig/v1.4/jq-linux-x86.asc +17 -0
  183. package/deps/jq/sig/v1.4/jq-linux-x86_64.asc +17 -0
  184. package/deps/jq/sig/v1.4/jq-osx-x86.asc +17 -0
  185. package/deps/jq/sig/v1.4/jq-osx-x86_64.asc +17 -0
  186. package/deps/jq/sig/v1.4/jq-solaris11-32.asc +17 -0
  187. package/deps/jq/sig/v1.4/jq-solaris11-64.asc +17 -0
  188. package/deps/jq/sig/v1.4/jq-win32.exe.asc +17 -0
  189. package/deps/jq/sig/v1.4/jq-win64.exe.asc +17 -0
  190. package/deps/jq/sig/v1.4/sha256sum.txt +8 -0
  191. package/deps/jq/sig/v1.5/jq-linux32-no-oniguruma.asc +17 -0
  192. package/deps/jq/sig/v1.5/jq-linux32.asc +17 -0
  193. package/deps/jq/sig/v1.5/jq-linux64.asc +17 -0
  194. package/deps/jq/sig/v1.5/jq-osx-amd64.asc +17 -0
  195. package/deps/jq/sig/v1.5/jq-win32.exe.asc +17 -0
  196. package/deps/jq/sig/v1.5/jq-win64.exe.asc +17 -0
  197. package/deps/jq/sig/v1.5/sha256sum.txt +5 -0
  198. package/deps/jq/sig/v1.5rc1/jq-linux-x86_64-static.asc +17 -0
  199. package/deps/jq/sig/v1.5rc1/jq-win32.exe.asc +17 -0
  200. package/deps/jq/sig/v1.5rc1/jq-win64.exe.asc +17 -0
  201. package/deps/jq/sig/v1.5rc1/sha256sum.txt +3 -0
  202. package/deps/jq/sig/v1.5rc2/jq-linux-x86.asc +17 -0
  203. package/deps/jq/sig/v1.5rc2/jq-linux-x86_64.asc +17 -0
  204. package/deps/jq/sig/v1.5rc2/jq-osx-x86_64.asc +17 -0
  205. package/deps/jq/sig/v1.5rc2/jq-win32.exe.asc +17 -0
  206. package/deps/jq/sig/v1.5rc2/jq-win64.exe.asc +17 -0
  207. package/deps/jq/sig/v1.5rc2/sha256sum.txt +5 -0
  208. package/deps/jq/sig/v1.6/jq-linux32.asc +16 -0
  209. package/deps/jq/sig/v1.6/jq-linux64.asc +16 -0
  210. package/deps/jq/sig/v1.6/jq-osx-amd64.asc +16 -0
  211. package/deps/jq/sig/v1.6/jq-win32.exe.asc +16 -0
  212. package/deps/jq/sig/v1.6/jq-win64.exe.asc +16 -0
  213. package/deps/jq/sig/v1.6/sha256sum.txt +5 -0
  214. package/deps/jq/{builtin.c → src/builtin.c} +449 -344
  215. package/deps/jq/{builtin.h → src/builtin.h} +0 -0
  216. package/deps/jq/src/builtin.jq +311 -0
  217. package/deps/jq/{bytecode.c → src/bytecode.c} +0 -0
  218. package/deps/jq/{bytecode.h → src/bytecode.h} +0 -0
  219. package/deps/jq/{compile.c → src/compile.c} +213 -37
  220. package/deps/jq/{compile.h → src/compile.h} +7 -2
  221. package/deps/jq/{exec_stack.h → src/exec_stack.h} +0 -0
  222. package/deps/jq/{execute.c → src/execute.c} +127 -24
  223. package/deps/jq/{inject_errors.c → src/inject_errors.c} +0 -0
  224. package/deps/jq/{jq.h → src/jq.h} +13 -2
  225. package/deps/jq/{jq_parser.h → src/jq_parser.h} +0 -0
  226. package/deps/jq/{jq_test.c → src/jq_test.c} +1 -1
  227. package/deps/jq/{jv.c → src/jv.c} +24 -5
  228. package/deps/jq/{jv.h → src/jv.h} +46 -11
  229. package/deps/jq/{jv_alloc.c → src/jv_alloc.c} +0 -0
  230. package/deps/jq/{jv_alloc.h → src/jv_alloc.h} +0 -0
  231. package/deps/jq/{jv_aux.c → src/jv_aux.c} +38 -14
  232. package/deps/jq/{jv_dtoa.c → src/jv_dtoa.c} +4 -5
  233. package/deps/jq/{jv_dtoa.h → src/jv_dtoa.h} +0 -0
  234. package/deps/jq/src/jv_file.c +81 -0
  235. package/deps/jq/{jv_parse.c → src/jv_parse.c} +8 -2
  236. package/deps/jq/{jv_print.c → src/jv_print.c} +80 -27
  237. package/deps/jq/{jv_unicode.c → src/jv_unicode.c} +28 -4
  238. package/deps/jq/{jv_unicode.h → src/jv_unicode.h} +1 -0
  239. package/deps/jq/{jv_utf8_tables.h → src/jv_utf8_tables.h} +0 -0
  240. package/deps/jq/{lexer.c → src/lexer.c} +317 -292
  241. package/deps/jq/{lexer.h → src/lexer.h} +16 -12
  242. package/deps/jq/{lexer.l → src/lexer.l} +5 -4
  243. package/deps/jq/src/libm.h +291 -0
  244. package/deps/jq/{linker.c → src/linker.c} +5 -3
  245. package/deps/jq/{linker.h → src/linker.h} +0 -0
  246. package/deps/jq/{locfile.c → src/locfile.c} +1 -1
  247. package/deps/jq/{locfile.h → src/locfile.h} +0 -0
  248. package/deps/jq/{main.c → src/main.c} +202 -100
  249. package/deps/jq/{opcode_list.h → src/opcode_list.h} +4 -0
  250. package/deps/jq/{parser.c → src/parser.c} +1149 -1069
  251. package/deps/jq/{parser.h → src/parser.h} +28 -24
  252. package/deps/jq/{parser.y → src/parser.y} +108 -52
  253. package/deps/jq/{util.c → src/util.c} +12 -9
  254. package/deps/jq/{util.h → src/util.h} +0 -0
  255. package/deps/jq/tests/base64.test +35 -0
  256. package/deps/jq/tests/base64test +5 -0
  257. package/deps/jq/tests/jq-f-test.sh +4 -0
  258. package/deps/jq/tests/jq.test +305 -21
  259. package/deps/jq/tests/jqtest +1 -1
  260. package/deps/jq/tests/mantest +1 -1
  261. package/deps/jq/tests/onig.test +13 -0
  262. package/deps/jq/tests/onigtest +1 -1
  263. package/deps/jq/tests/optional.test +20 -0
  264. package/deps/jq/tests/optionaltest +5 -0
  265. package/deps/jq/tests/setup +7 -1
  266. package/deps/jq/tests/shtest +133 -29
  267. package/deps/jq/tests/utf8-truncate.jq +3 -0
  268. package/deps/jq/tests/utf8test +10 -0
  269. package/lib/index.js +7 -1
  270. package/package.json +3 -3
  271. package/test/santiy.test.js +24 -0
  272. package/deps/jq/docs/default_manpage.md +0 -22
  273. package/deps/jq/docs/public/bootstrap/css/bootstrap-responsive.css +0 -1058
  274. package/deps/jq/docs/public/bootstrap/css/bootstrap-responsive.min.css +0 -9
  275. package/deps/jq/docs/public/bootstrap/css/bootstrap.css +0 -5224
  276. package/deps/jq/docs/public/bootstrap/css/bootstrap.min.css +0 -9
  277. package/deps/jq/docs/public/bootstrap/img/glyphicons-halflings-white.png +0 -0
  278. package/deps/jq/docs/public/bootstrap/img/glyphicons-halflings.png +0 -0
  279. package/deps/jq/docs/public/bootstrap/js/bootstrap.js +0 -2027
  280. package/deps/jq/docs/public/bootstrap/js/bootstrap.min.js +0 -6
  281. package/deps/jq/docs/templates/shared/_header.liquid +0 -26
  282. package/deps/jq/jq.1.default +0 -39
  283. package/deps/jq/jv_file.c +0 -49
  284. package/deps/jq/libm.h +0 -160
  285. package/deps/jq/setup.sh +0 -33
  286. package/reports/jest-port-api.xml +0 -35
@@ -0,0 +1,698 @@
1
+ Unicode Properties (from Unicode Version: 8.0.0)
2
+
3
+ 1: Any
4
+ 2: Assigned
5
+ 3: C
6
+ 4: Cc
7
+ 5: Cf
8
+ 6: Cn
9
+ 7: Co
10
+ 8: Cs
11
+ 9: L
12
+ 10: LC
13
+ 11: Ll
14
+ 12: Lm
15
+ 13: Lo
16
+ 14: Lt
17
+ 15: Lu
18
+ 16: M
19
+ 17: Mc
20
+ 18: Me
21
+ 19: Mn
22
+ 20: N
23
+ 21: Nd
24
+ 22: Nl
25
+ 23: No
26
+ 24: P
27
+ 25: Pc
28
+ 26: Pd
29
+ 27: Pe
30
+ 28: Pf
31
+ 29: Pi
32
+ 30: Po
33
+ 31: Ps
34
+ 32: S
35
+ 33: Sc
36
+ 34: Sk
37
+ 35: Sm
38
+ 36: So
39
+ 37: Z
40
+ 38: Zl
41
+ 39: Zp
42
+ 40: Zs
43
+ 41: Math
44
+ 42: Alphabetic
45
+ 43: Lowercase
46
+ 44: Uppercase
47
+ 45: Cased
48
+ 46: Case_Ignorable
49
+ 47: Changes_When_Lowercased
50
+ 48: Changes_When_Uppercased
51
+ 49: Changes_When_Titlecased
52
+ 50: Changes_When_Casefolded
53
+ 51: Changes_When_Casemapped
54
+ 52: ID_Start
55
+ 53: ID_Continue
56
+ 54: XID_Start
57
+ 55: XID_Continue
58
+ 56: Default_Ignorable_Code_Point
59
+ 57: Grapheme_Extend
60
+ 58: Grapheme_Base
61
+ 59: Grapheme_Link
62
+ 60: Common
63
+ 61: Latin
64
+ 62: Greek
65
+ 63: Cyrillic
66
+ 64: Armenian
67
+ 65: Hebrew
68
+ 66: Arabic
69
+ 67: Syriac
70
+ 68: Thaana
71
+ 69: Devanagari
72
+ 70: Bengali
73
+ 71: Gurmukhi
74
+ 72: Gujarati
75
+ 73: Oriya
76
+ 74: Tamil
77
+ 75: Telugu
78
+ 76: Kannada
79
+ 77: Malayalam
80
+ 78: Sinhala
81
+ 79: Thai
82
+ 80: Lao
83
+ 81: Tibetan
84
+ 82: Myanmar
85
+ 83: Georgian
86
+ 84: Hangul
87
+ 85: Ethiopic
88
+ 86: Cherokee
89
+ 87: Canadian_Aboriginal
90
+ 88: Ogham
91
+ 89: Runic
92
+ 90: Khmer
93
+ 91: Mongolian
94
+ 92: Hiragana
95
+ 93: Katakana
96
+ 94: Bopomofo
97
+ 95: Han
98
+ 96: Yi
99
+ 97: Old_Italic
100
+ 98: Gothic
101
+ 99: Deseret
102
+ 100: Inherited
103
+ 101: Tagalog
104
+ 102: Hanunoo
105
+ 103: Buhid
106
+ 104: Tagbanwa
107
+ 105: Limbu
108
+ 106: Tai_Le
109
+ 107: Linear_B
110
+ 108: Ugaritic
111
+ 109: Shavian
112
+ 110: Osmanya
113
+ 111: Cypriot
114
+ 112: Braille
115
+ 113: Buginese
116
+ 114: Coptic
117
+ 115: New_Tai_Lue
118
+ 116: Glagolitic
119
+ 117: Tifinagh
120
+ 118: Syloti_Nagri
121
+ 119: Old_Persian
122
+ 120: Kharoshthi
123
+ 121: Balinese
124
+ 122: Cuneiform
125
+ 123: Phoenician
126
+ 124: Phags_Pa
127
+ 125: Nko
128
+ 126: Sundanese
129
+ 127: Lepcha
130
+ 128: Ol_Chiki
131
+ 129: Vai
132
+ 130: Saurashtra
133
+ 131: Kayah_Li
134
+ 132: Rejang
135
+ 133: Lycian
136
+ 134: Carian
137
+ 135: Lydian
138
+ 136: Cham
139
+ 137: Tai_Tham
140
+ 138: Tai_Viet
141
+ 139: Avestan
142
+ 140: Egyptian_Hieroglyphs
143
+ 141: Samaritan
144
+ 142: Lisu
145
+ 143: Bamum
146
+ 144: Javanese
147
+ 145: Meetei_Mayek
148
+ 146: Imperial_Aramaic
149
+ 147: Old_South_Arabian
150
+ 148: Inscriptional_Parthian
151
+ 149: Inscriptional_Pahlavi
152
+ 150: Old_Turkic
153
+ 151: Kaithi
154
+ 152: Batak
155
+ 153: Brahmi
156
+ 154: Mandaic
157
+ 155: Chakma
158
+ 156: Meroitic_Cursive
159
+ 157: Meroitic_Hieroglyphs
160
+ 158: Miao
161
+ 159: Sharada
162
+ 160: Sora_Sompeng
163
+ 161: Takri
164
+ 162: Caucasian_Albanian
165
+ 163: Bassa_Vah
166
+ 164: Duployan
167
+ 165: Elbasan
168
+ 166: Grantha
169
+ 167: Pahawh_Hmong
170
+ 168: Khojki
171
+ 169: Linear_A
172
+ 170: Mahajani
173
+ 171: Manichaean
174
+ 172: Mende_Kikakui
175
+ 173: Modi
176
+ 174: Mro
177
+ 175: Old_North_Arabian
178
+ 176: Nabataean
179
+ 177: Palmyrene
180
+ 178: Pau_Cin_Hau
181
+ 179: Old_Permic
182
+ 180: Psalter_Pahlavi
183
+ 181: Siddham
184
+ 182: Khudawadi
185
+ 183: Tirhuta
186
+ 184: Warang_Citi
187
+ 185: Ahom
188
+ 186: Anatolian_Hieroglyphs
189
+ 187: Hatran
190
+ 188: Multani
191
+ 189: Old_Hungarian
192
+ 190: SignWriting
193
+ 191: White_Space
194
+ 192: Bidi_Control
195
+ 193: Join_Control
196
+ 194: Dash
197
+ 195: Hyphen
198
+ 196: Quotation_Mark
199
+ 197: Terminal_Punctuation
200
+ 198: Other_Math
201
+ 199: Hex_Digit
202
+ 200: ASCII_Hex_Digit
203
+ 201: Other_Alphabetic
204
+ 202: Ideographic
205
+ 203: Diacritic
206
+ 204: Extender
207
+ 205: Other_Lowercase
208
+ 206: Other_Uppercase
209
+ 207: Noncharacter_Code_Point
210
+ 208: Other_Grapheme_Extend
211
+ 209: IDS_Binary_Operator
212
+ 210: IDS_Trinary_Operator
213
+ 211: Radical
214
+ 212: Unified_Ideograph
215
+ 213: Other_Default_Ignorable_Code_Point
216
+ 214: Deprecated
217
+ 215: Soft_Dotted
218
+ 216: Logical_Order_Exception
219
+ 217: Other_ID_Start
220
+ 218: Other_ID_Continue
221
+ 219: STerm
222
+ 220: Variation_Selector
223
+ 221: Pattern_White_Space
224
+ 222: Pattern_Syntax
225
+ 223: Unknown
226
+ 224: Aghb
227
+ 225: AHex
228
+ 226: Arab
229
+ 227: Armi
230
+ 228: Armn
231
+ 229: Avst
232
+ 230: Bali
233
+ 231: Bamu
234
+ 232: Bass
235
+ 233: Batk
236
+ 234: Beng
237
+ 235: Bidi_C
238
+ 236: Bopo
239
+ 237: Brah
240
+ 238: Brai
241
+ 239: Bugi
242
+ 240: Buhd
243
+ 241: Cakm
244
+ 242: Cans
245
+ 243: Cari
246
+ 244: Cased_Letter
247
+ 245: Cher
248
+ 246: CI
249
+ 247: Close_Punctuation
250
+ 248: Combining_Mark
251
+ 249: Connector_Punctuation
252
+ 250: Control
253
+ 251: Copt
254
+ 252: Cprt
255
+ 253: Currency_Symbol
256
+ 254: CWCF
257
+ 255: CWCM
258
+ 256: CWL
259
+ 257: CWT
260
+ 258: CWU
261
+ 259: Cyrl
262
+ 260: Dash_Punctuation
263
+ 261: Decimal_Number
264
+ 262: Dep
265
+ 263: Deva
266
+ 264: DI
267
+ 265: Dia
268
+ 266: Dsrt
269
+ 267: Dupl
270
+ 268: Egyp
271
+ 269: Elba
272
+ 270: Enclosing_Mark
273
+ 271: Ethi
274
+ 272: Ext
275
+ 273: Final_Punctuation
276
+ 274: Format
277
+ 275: Geor
278
+ 276: Glag
279
+ 277: Goth
280
+ 278: Gran
281
+ 279: Gr_Base
282
+ 280: Grek
283
+ 281: Gr_Ext
284
+ 282: Gr_Link
285
+ 283: Gujr
286
+ 284: Guru
287
+ 285: Hang
288
+ 286: Hani
289
+ 287: Hano
290
+ 288: Hatr
291
+ 289: Hebr
292
+ 290: Hex
293
+ 291: Hira
294
+ 292: Hluw
295
+ 293: Hmng
296
+ 294: Hung
297
+ 295: IDC
298
+ 296: Ideo
299
+ 297: IDS
300
+ 298: IDSB
301
+ 299: IDST
302
+ 300: Initial_Punctuation
303
+ 301: Ital
304
+ 302: Java
305
+ 303: Join_C
306
+ 304: Kali
307
+ 305: Kana
308
+ 306: Khar
309
+ 307: Khmr
310
+ 308: Khoj
311
+ 309: Knda
312
+ 310: Kthi
313
+ 311: Lana
314
+ 312: Laoo
315
+ 313: Latn
316
+ 314: Lepc
317
+ 315: Letter
318
+ 316: Letter_Number
319
+ 317: Limb
320
+ 318: Lina
321
+ 319: Linb
322
+ 320: Line_Separator
323
+ 321: LOE
324
+ 322: Lowercase_Letter
325
+ 323: Lyci
326
+ 324: Lydi
327
+ 325: Mahj
328
+ 326: Mand
329
+ 327: Mani
330
+ 328: Mark
331
+ 329: Math_Symbol
332
+ 330: Mend
333
+ 331: Merc
334
+ 332: Mero
335
+ 333: Mlym
336
+ 334: Modifier_Letter
337
+ 335: Modifier_Symbol
338
+ 336: Mong
339
+ 337: Mroo
340
+ 338: Mtei
341
+ 339: Mult
342
+ 340: Mymr
343
+ 341: Narb
344
+ 342: Nbat
345
+ 343: NChar
346
+ 344: Nkoo
347
+ 345: Nonspacing_Mark
348
+ 346: Number
349
+ 347: OAlpha
350
+ 348: ODI
351
+ 349: Ogam
352
+ 350: OGr_Ext
353
+ 351: OIDC
354
+ 352: OIDS
355
+ 353: Olck
356
+ 354: OLower
357
+ 355: OMath
358
+ 356: Open_Punctuation
359
+ 357: Orkh
360
+ 358: Orya
361
+ 359: Osma
362
+ 360: Other
363
+ 361: Other_Letter
364
+ 362: Other_Number
365
+ 363: Other_Punctuation
366
+ 364: Other_Symbol
367
+ 365: OUpper
368
+ 366: Palm
369
+ 367: Paragraph_Separator
370
+ 368: Pat_Syn
371
+ 369: Pat_WS
372
+ 370: Pauc
373
+ 371: Perm
374
+ 372: Phag
375
+ 373: Phli
376
+ 374: Phlp
377
+ 375: Phnx
378
+ 376: Plrd
379
+ 377: Private_Use
380
+ 378: Prti
381
+ 379: Punctuation
382
+ 380: Qaac
383
+ 381: Qaai
384
+ 382: QMark
385
+ 383: Rjng
386
+ 384: Runr
387
+ 385: Samr
388
+ 386: Sarb
389
+ 387: Saur
390
+ 388: SD
391
+ 389: Separator
392
+ 390: Sgnw
393
+ 391: Shaw
394
+ 392: Shrd
395
+ 393: Sidd
396
+ 394: Sind
397
+ 395: Sinh
398
+ 396: Sora
399
+ 397: Space_Separator
400
+ 398: Spacing_Mark
401
+ 399: Sund
402
+ 400: Surrogate
403
+ 401: Sylo
404
+ 402: Symbol
405
+ 403: Syrc
406
+ 404: Tagb
407
+ 405: Takr
408
+ 406: Tale
409
+ 407: Talu
410
+ 408: Taml
411
+ 409: Tavt
412
+ 410: Telu
413
+ 411: Term
414
+ 412: Tfng
415
+ 413: Tglg
416
+ 414: Thaa
417
+ 415: Tibt
418
+ 416: Tirh
419
+ 417: Titlecase_Letter
420
+ 418: Ugar
421
+ 419: UIdeo
422
+ 420: Unassigned
423
+ 421: Uppercase_Letter
424
+ 422: Vaii
425
+ 423: VS
426
+ 424: Wara
427
+ 425: WSpace
428
+ 426: XIDC
429
+ 427: XIDS
430
+ 428: Xpeo
431
+ 429: Xsux
432
+ 430: Yiii
433
+ 431: Zinh
434
+ 432: Zyyy
435
+ 433: Zzzz
436
+ 434: In_Basic_Latin
437
+ 435: In_Latin_1_Supplement
438
+ 436: In_Latin_Extended_A
439
+ 437: In_Latin_Extended_B
440
+ 438: In_IPA_Extensions
441
+ 439: In_Spacing_Modifier_Letters
442
+ 440: In_Combining_Diacritical_Marks
443
+ 441: In_Greek_and_Coptic
444
+ 442: In_Cyrillic
445
+ 443: In_Cyrillic_Supplement
446
+ 444: In_Armenian
447
+ 445: In_Hebrew
448
+ 446: In_Arabic
449
+ 447: In_Syriac
450
+ 448: In_Arabic_Supplement
451
+ 449: In_Thaana
452
+ 450: In_NKo
453
+ 451: In_Samaritan
454
+ 452: In_Mandaic
455
+ 453: In_Arabic_Extended_A
456
+ 454: In_Devanagari
457
+ 455: In_Bengali
458
+ 456: In_Gurmukhi
459
+ 457: In_Gujarati
460
+ 458: In_Oriya
461
+ 459: In_Tamil
462
+ 460: In_Telugu
463
+ 461: In_Kannada
464
+ 462: In_Malayalam
465
+ 463: In_Sinhala
466
+ 464: In_Thai
467
+ 465: In_Lao
468
+ 466: In_Tibetan
469
+ 467: In_Myanmar
470
+ 468: In_Georgian
471
+ 469: In_Hangul_Jamo
472
+ 470: In_Ethiopic
473
+ 471: In_Ethiopic_Supplement
474
+ 472: In_Cherokee
475
+ 473: In_Unified_Canadian_Aboriginal_Syllabics
476
+ 474: In_Ogham
477
+ 475: In_Runic
478
+ 476: In_Tagalog
479
+ 477: In_Hanunoo
480
+ 478: In_Buhid
481
+ 479: In_Tagbanwa
482
+ 480: In_Khmer
483
+ 481: In_Mongolian
484
+ 482: In_Unified_Canadian_Aboriginal_Syllabics_Extended
485
+ 483: In_Limbu
486
+ 484: In_Tai_Le
487
+ 485: In_New_Tai_Lue
488
+ 486: In_Khmer_Symbols
489
+ 487: In_Buginese
490
+ 488: In_Tai_Tham
491
+ 489: In_Combining_Diacritical_Marks_Extended
492
+ 490: In_Balinese
493
+ 491: In_Sundanese
494
+ 492: In_Batak
495
+ 493: In_Lepcha
496
+ 494: In_Ol_Chiki
497
+ 495: In_Sundanese_Supplement
498
+ 496: In_Vedic_Extensions
499
+ 497: In_Phonetic_Extensions
500
+ 498: In_Phonetic_Extensions_Supplement
501
+ 499: In_Combining_Diacritical_Marks_Supplement
502
+ 500: In_Latin_Extended_Additional
503
+ 501: In_Greek_Extended
504
+ 502: In_General_Punctuation
505
+ 503: In_Superscripts_and_Subscripts
506
+ 504: In_Currency_Symbols
507
+ 505: In_Combining_Diacritical_Marks_for_Symbols
508
+ 506: In_Letterlike_Symbols
509
+ 507: In_Number_Forms
510
+ 508: In_Arrows
511
+ 509: In_Mathematical_Operators
512
+ 510: In_Miscellaneous_Technical
513
+ 511: In_Control_Pictures
514
+ 512: In_Optical_Character_Recognition
515
+ 513: In_Enclosed_Alphanumerics
516
+ 514: In_Box_Drawing
517
+ 515: In_Block_Elements
518
+ 516: In_Geometric_Shapes
519
+ 517: In_Miscellaneous_Symbols
520
+ 518: In_Dingbats
521
+ 519: In_Miscellaneous_Mathematical_Symbols_A
522
+ 520: In_Supplemental_Arrows_A
523
+ 521: In_Braille_Patterns
524
+ 522: In_Supplemental_Arrows_B
525
+ 523: In_Miscellaneous_Mathematical_Symbols_B
526
+ 524: In_Supplemental_Mathematical_Operators
527
+ 525: In_Miscellaneous_Symbols_and_Arrows
528
+ 526: In_Glagolitic
529
+ 527: In_Latin_Extended_C
530
+ 528: In_Coptic
531
+ 529: In_Georgian_Supplement
532
+ 530: In_Tifinagh
533
+ 531: In_Ethiopic_Extended
534
+ 532: In_Cyrillic_Extended_A
535
+ 533: In_Supplemental_Punctuation
536
+ 534: In_CJK_Radicals_Supplement
537
+ 535: In_Kangxi_Radicals
538
+ 536: In_Ideographic_Description_Characters
539
+ 537: In_CJK_Symbols_and_Punctuation
540
+ 538: In_Hiragana
541
+ 539: In_Katakana
542
+ 540: In_Bopomofo
543
+ 541: In_Hangul_Compatibility_Jamo
544
+ 542: In_Kanbun
545
+ 543: In_Bopomofo_Extended
546
+ 544: In_CJK_Strokes
547
+ 545: In_Katakana_Phonetic_Extensions
548
+ 546: In_Enclosed_CJK_Letters_and_Months
549
+ 547: In_CJK_Compatibility
550
+ 548: In_CJK_Unified_Ideographs_Extension_A
551
+ 549: In_Yijing_Hexagram_Symbols
552
+ 550: In_CJK_Unified_Ideographs
553
+ 551: In_Yi_Syllables
554
+ 552: In_Yi_Radicals
555
+ 553: In_Lisu
556
+ 554: In_Vai
557
+ 555: In_Cyrillic_Extended_B
558
+ 556: In_Bamum
559
+ 557: In_Modifier_Tone_Letters
560
+ 558: In_Latin_Extended_D
561
+ 559: In_Syloti_Nagri
562
+ 560: In_Common_Indic_Number_Forms
563
+ 561: In_Phags_pa
564
+ 562: In_Saurashtra
565
+ 563: In_Devanagari_Extended
566
+ 564: In_Kayah_Li
567
+ 565: In_Rejang
568
+ 566: In_Hangul_Jamo_Extended_A
569
+ 567: In_Javanese
570
+ 568: In_Myanmar_Extended_B
571
+ 569: In_Cham
572
+ 570: In_Myanmar_Extended_A
573
+ 571: In_Tai_Viet
574
+ 572: In_Meetei_Mayek_Extensions
575
+ 573: In_Ethiopic_Extended_A
576
+ 574: In_Latin_Extended_E
577
+ 575: In_Cherokee_Supplement
578
+ 576: In_Meetei_Mayek
579
+ 577: In_Hangul_Syllables
580
+ 578: In_Hangul_Jamo_Extended_B
581
+ 579: In_High_Surrogates
582
+ 580: In_High_Private_Use_Surrogates
583
+ 581: In_Low_Surrogates
584
+ 582: In_Private_Use_Area
585
+ 583: In_CJK_Compatibility_Ideographs
586
+ 584: In_Alphabetic_Presentation_Forms
587
+ 585: In_Arabic_Presentation_Forms_A
588
+ 586: In_Variation_Selectors
589
+ 587: In_Vertical_Forms
590
+ 588: In_Combining_Half_Marks
591
+ 589: In_CJK_Compatibility_Forms
592
+ 590: In_Small_Form_Variants
593
+ 591: In_Arabic_Presentation_Forms_B
594
+ 592: In_Halfwidth_and_Fullwidth_Forms
595
+ 593: In_Specials
596
+ 594: In_Linear_B_Syllabary
597
+ 595: In_Linear_B_Ideograms
598
+ 596: In_Aegean_Numbers
599
+ 597: In_Ancient_Greek_Numbers
600
+ 598: In_Ancient_Symbols
601
+ 599: In_Phaistos_Disc
602
+ 600: In_Lycian
603
+ 601: In_Carian
604
+ 602: In_Coptic_Epact_Numbers
605
+ 603: In_Old_Italic
606
+ 604: In_Gothic
607
+ 605: In_Old_Permic
608
+ 606: In_Ugaritic
609
+ 607: In_Old_Persian
610
+ 608: In_Deseret
611
+ 609: In_Shavian
612
+ 610: In_Osmanya
613
+ 611: In_Elbasan
614
+ 612: In_Caucasian_Albanian
615
+ 613: In_Linear_A
616
+ 614: In_Cypriot_Syllabary
617
+ 615: In_Imperial_Aramaic
618
+ 616: In_Palmyrene
619
+ 617: In_Nabataean
620
+ 618: In_Hatran
621
+ 619: In_Phoenician
622
+ 620: In_Lydian
623
+ 621: In_Meroitic_Hieroglyphs
624
+ 622: In_Meroitic_Cursive
625
+ 623: In_Kharoshthi
626
+ 624: In_Old_South_Arabian
627
+ 625: In_Old_North_Arabian
628
+ 626: In_Manichaean
629
+ 627: In_Avestan
630
+ 628: In_Inscriptional_Parthian
631
+ 629: In_Inscriptional_Pahlavi
632
+ 630: In_Psalter_Pahlavi
633
+ 631: In_Old_Turkic
634
+ 632: In_Old_Hungarian
635
+ 633: In_Rumi_Numeral_Symbols
636
+ 634: In_Brahmi
637
+ 635: In_Kaithi
638
+ 636: In_Sora_Sompeng
639
+ 637: In_Chakma
640
+ 638: In_Mahajani
641
+ 639: In_Sharada
642
+ 640: In_Sinhala_Archaic_Numbers
643
+ 641: In_Khojki
644
+ 642: In_Multani
645
+ 643: In_Khudawadi
646
+ 644: In_Grantha
647
+ 645: In_Tirhuta
648
+ 646: In_Siddham
649
+ 647: In_Modi
650
+ 648: In_Takri
651
+ 649: In_Ahom
652
+ 650: In_Warang_Citi
653
+ 651: In_Pau_Cin_Hau
654
+ 652: In_Cuneiform
655
+ 653: In_Cuneiform_Numbers_and_Punctuation
656
+ 654: In_Early_Dynastic_Cuneiform
657
+ 655: In_Egyptian_Hieroglyphs
658
+ 656: In_Anatolian_Hieroglyphs
659
+ 657: In_Bamum_Supplement
660
+ 658: In_Mro
661
+ 659: In_Bassa_Vah
662
+ 660: In_Pahawh_Hmong
663
+ 661: In_Miao
664
+ 662: In_Kana_Supplement
665
+ 663: In_Duployan
666
+ 664: In_Shorthand_Format_Controls
667
+ 665: In_Byzantine_Musical_Symbols
668
+ 666: In_Musical_Symbols
669
+ 667: In_Ancient_Greek_Musical_Notation
670
+ 668: In_Tai_Xuan_Jing_Symbols
671
+ 669: In_Counting_Rod_Numerals
672
+ 670: In_Mathematical_Alphanumeric_Symbols
673
+ 671: In_Sutton_SignWriting
674
+ 672: In_Mende_Kikakui
675
+ 673: In_Arabic_Mathematical_Alphabetic_Symbols
676
+ 674: In_Mahjong_Tiles
677
+ 675: In_Domino_Tiles
678
+ 676: In_Playing_Cards
679
+ 677: In_Enclosed_Alphanumeric_Supplement
680
+ 678: In_Enclosed_Ideographic_Supplement
681
+ 679: In_Miscellaneous_Symbols_and_Pictographs
682
+ 680: In_Emoticons
683
+ 681: In_Ornamental_Dingbats
684
+ 682: In_Transport_and_Map_Symbols
685
+ 683: In_Alchemical_Symbols
686
+ 684: In_Geometric_Shapes_Extended
687
+ 685: In_Supplemental_Arrows_C
688
+ 686: In_Supplemental_Symbols_and_Pictographs
689
+ 687: In_CJK_Unified_Ideographs_Extension_B
690
+ 688: In_CJK_Unified_Ideographs_Extension_C
691
+ 689: In_CJK_Unified_Ideographs_Extension_D
692
+ 690: In_CJK_Unified_Ideographs_Extension_E
693
+ 691: In_CJK_Compatibility_Ideographs_Supplement
694
+ 692: In_Tags
695
+ 693: In_Variation_Selectors_Supplement
696
+ 694: In_Supplementary_Private_Use_Area_A
697
+ 695: In_Supplementary_Private_Use_Area_B
698
+ 696: In_No_Block