@port-labs/jq-node-bindings 0.0.13 → 0.0.15-dev1

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 (453) hide show
  1. package/README.md +6 -1
  2. package/binding.gyp +41 -19
  3. package/configure +1 -1
  4. package/deps/jq/.gitattributes +12 -0
  5. package/deps/jq/AUTHORS +149 -43
  6. package/deps/jq/COPYING +75 -1
  7. package/deps/jq/ChangeLog +2 -2
  8. package/deps/jq/Makefile.am +106 -65
  9. package/deps/jq/NEWS.md +391 -0
  10. package/deps/jq/README.md +54 -52
  11. package/deps/jq/SECURITY.md +7 -0
  12. package/deps/jq/compile-ios.sh +106 -102
  13. package/deps/jq/configure.ac +72 -59
  14. package/deps/jq/docs/Pipfile +14 -0
  15. package/deps/jq/docs/Pipfile.lock +415 -0
  16. package/deps/jq/docs/README.md +15 -14
  17. package/deps/jq/docs/build_manpage.py +251 -0
  18. package/deps/jq/docs/build_mantests.py +21 -0
  19. package/deps/jq/docs/build_website.py +95 -0
  20. package/deps/jq/docs/content/download/default.yml +249 -0
  21. package/deps/jq/docs/content/index.yml +83 -0
  22. package/deps/jq/docs/content/{3.manual/v1.6 → manual/dev}/manual.yml +992 -452
  23. package/deps/jq/docs/content/{3.manual → manual}/v1.3/manual.yml +105 -116
  24. package/deps/jq/docs/content/{3.manual → manual}/v1.4/manual.yml +122 -129
  25. package/deps/jq/docs/content/{3.manual → manual}/v1.5/manual.yml +313 -262
  26. package/deps/jq/docs/content/{3.manual → manual/v1.6}/manual.yml +407 -332
  27. package/deps/jq/docs/content/manual/v1.7/manual.yml +3697 -0
  28. package/deps/jq/docs/content/tutorial/default.yml +337 -0
  29. package/deps/jq/docs/manual_schema.yml +60 -0
  30. package/deps/jq/docs/public/css/style.css +99 -0
  31. package/deps/jq/docs/public/icon.png +0 -0
  32. package/deps/jq/docs/public/icon.svg +1 -0
  33. package/deps/jq/docs/public/jq.svg +1 -0
  34. package/deps/jq/docs/public/js/manual-search.js +31 -49
  35. package/deps/jq/docs/templates/default.html.j2 +31 -0
  36. package/deps/jq/docs/templates/index.html.j2 +58 -0
  37. package/deps/jq/docs/templates/manual.html.j2 +120 -0
  38. package/deps/jq/docs/templates/shared/_footer.html.j2 +14 -0
  39. package/deps/jq/docs/templates/shared/_head.html.j2 +23 -0
  40. package/deps/jq/docs/templates/shared/_navbar.html.j2 +40 -0
  41. package/deps/jq/docs/validate_manual_schema.py +19 -0
  42. package/deps/jq/jq.1.prebuilt +1102 -294
  43. package/deps/jq/jq.spec +2 -3
  44. package/deps/jq/libjq.pc.in +11 -0
  45. package/deps/jq/m4/ax_pthread.m4 +522 -0
  46. package/deps/jq/modules/oniguruma/.travis.yml +17 -0
  47. package/deps/jq/modules/oniguruma/CMakeLists.txt +206 -41
  48. package/deps/jq/modules/oniguruma/COPYING +23 -25
  49. package/deps/jq/modules/oniguruma/HISTORY +368 -23
  50. package/deps/jq/modules/oniguruma/Makefile.am +61 -7
  51. package/deps/jq/modules/oniguruma/README +34 -20
  52. package/deps/jq/modules/oniguruma/README.md +106 -33
  53. package/deps/jq/modules/oniguruma/README_japanese +183 -0
  54. package/deps/jq/modules/oniguruma/autogen.sh +9 -0
  55. package/deps/jq/modules/oniguruma/cmake/Config.cmake.in +4 -0
  56. package/deps/jq/modules/oniguruma/configure.ac +66 -55
  57. package/deps/jq/modules/oniguruma/doc/API +485 -42
  58. package/deps/jq/modules/oniguruma/doc/API.ja +732 -293
  59. package/deps/jq/modules/oniguruma/doc/CALLOUTS.API +397 -0
  60. package/deps/jq/modules/oniguruma/doc/CALLOUTS.API.ja +393 -0
  61. package/deps/jq/modules/oniguruma/doc/CALLOUTS.BUILTIN +95 -0
  62. package/deps/jq/modules/oniguruma/doc/CALLOUTS.BUILTIN.ja +93 -0
  63. package/deps/jq/modules/oniguruma/doc/FAQ +3 -3
  64. package/deps/jq/modules/oniguruma/doc/FAQ.ja +8 -8
  65. package/deps/jq/modules/oniguruma/doc/RE +223 -63
  66. package/deps/jq/modules/oniguruma/doc/RE.ja +420 -265
  67. package/deps/jq/modules/oniguruma/doc/SYNTAX.md +1091 -0
  68. package/deps/jq/modules/oniguruma/doc/UNICODE_PROPERTIES +840 -697
  69. package/deps/jq/modules/oniguruma/harnesses/ascii_compatible.dict +113 -0
  70. package/deps/jq/modules/oniguruma/harnesses/base.c +749 -0
  71. package/deps/jq/modules/oniguruma/harnesses/deluxe.c +206 -0
  72. package/deps/jq/modules/oniguruma/harnesses/dict_conv.py +72 -0
  73. package/deps/jq/modules/oniguruma/harnesses/fuzzer.options +2 -0
  74. package/deps/jq/modules/oniguruma/harnesses/libfuzzer-onig.cpp +45 -0
  75. package/deps/jq/modules/oniguruma/harnesses/regset.c +392 -0
  76. package/deps/jq/modules/oniguruma/index.html +16 -5
  77. package/deps/jq/modules/oniguruma/index_ja.html +16 -5
  78. package/deps/jq/modules/oniguruma/make_win.bat +5 -0
  79. package/deps/jq/modules/oniguruma/make_win32.bat +5 -3
  80. package/deps/jq/modules/oniguruma/make_win64.bat +5 -3
  81. package/deps/jq/modules/oniguruma/onig-config.cmake.in +80 -0
  82. package/deps/jq/modules/oniguruma/onig-config.in +1 -1
  83. package/deps/jq/modules/oniguruma/oniguruma.pc.cmake.in +1 -1
  84. package/deps/jq/modules/oniguruma/oniguruma.pc.in +0 -1
  85. package/deps/jq/modules/oniguruma/sample/CMakeLists.txt +9 -2
  86. package/deps/jq/modules/oniguruma/sample/Makefile.am +24 -5
  87. package/deps/jq/modules/oniguruma/sample/bug_fix.c +13 -51
  88. package/deps/jq/modules/oniguruma/sample/callback_each_match.c +168 -0
  89. package/deps/jq/modules/oniguruma/sample/callout.c +268 -0
  90. package/deps/jq/modules/oniguruma/sample/count.c +125 -0
  91. package/deps/jq/modules/oniguruma/sample/crnl.c +6 -4
  92. package/deps/jq/modules/oniguruma/sample/echo.c +136 -0
  93. package/deps/jq/modules/oniguruma/sample/encode.c +53 -146
  94. package/deps/jq/modules/oniguruma/sample/listcap.c +18 -10
  95. package/deps/jq/modules/oniguruma/sample/names.c +10 -6
  96. package/deps/jq/modules/oniguruma/sample/posix.c +13 -2
  97. package/deps/jq/modules/oniguruma/sample/regset.c +95 -0
  98. package/deps/jq/modules/oniguruma/sample/scan.c +20 -6
  99. package/deps/jq/modules/oniguruma/sample/simple.c +8 -4
  100. package/deps/jq/modules/oniguruma/sample/sql.c +13 -8
  101. package/deps/jq/modules/oniguruma/sample/syntax.c +11 -10
  102. package/deps/jq/modules/oniguruma/sample/user_property.c +12 -7
  103. package/deps/jq/modules/oniguruma/src/Makefile.am +41 -15
  104. package/deps/jq/modules/oniguruma/src/Makefile.windows +196 -183
  105. package/deps/jq/modules/oniguruma/src/ascii.c +64 -7
  106. package/deps/jq/modules/oniguruma/src/big5.c +25 -15
  107. package/deps/jq/modules/oniguruma/src/config.h.cmake.in +7 -22
  108. package/deps/jq/modules/oniguruma/src/config.h.win32 +56 -84
  109. package/deps/jq/modules/oniguruma/src/config.h.win64 +56 -84
  110. package/deps/jq/modules/oniguruma/src/config.h.windows.in +62 -0
  111. package/deps/jq/modules/oniguruma/src/cp1251.c +14 -8
  112. package/deps/jq/modules/oniguruma/src/euc_jp.c +28 -30
  113. package/deps/jq/modules/oniguruma/src/euc_jp_prop.c +25 -32
  114. package/deps/jq/modules/oniguruma/src/euc_jp_prop.gperf +1 -2
  115. package/deps/jq/modules/oniguruma/src/euc_kr.c +27 -15
  116. package/deps/jq/modules/oniguruma/src/euc_tw.c +40 -17
  117. package/deps/jq/modules/oniguruma/src/gb18030.c +177 -119
  118. package/deps/jq/modules/oniguruma/src/gperf_fold_key_conv.py +12 -8
  119. package/deps/jq/modules/oniguruma/src/gperf_unfold_key_conv.py +8 -6
  120. package/deps/jq/modules/oniguruma/src/iso8859_1.c +92 -91
  121. package/deps/jq/modules/oniguruma/src/iso8859_10.c +13 -29
  122. package/deps/jq/modules/oniguruma/src/iso8859_11.c +4 -2
  123. package/deps/jq/modules/oniguruma/src/iso8859_13.c +13 -33
  124. package/deps/jq/modules/oniguruma/src/iso8859_14.c +13 -30
  125. package/deps/jq/modules/oniguruma/src/iso8859_15.c +13 -34
  126. package/deps/jq/modules/oniguruma/src/iso8859_16.c +13 -29
  127. package/deps/jq/modules/oniguruma/src/iso8859_2.c +13 -29
  128. package/deps/jq/modules/oniguruma/src/iso8859_3.c +13 -33
  129. package/deps/jq/modules/oniguruma/src/iso8859_4.c +13 -32
  130. package/deps/jq/modules/oniguruma/src/iso8859_5.c +16 -23
  131. package/deps/jq/modules/oniguruma/src/iso8859_6.c +4 -2
  132. package/deps/jq/modules/oniguruma/src/iso8859_7.c +14 -29
  133. package/deps/jq/modules/oniguruma/src/iso8859_8.c +4 -2
  134. package/deps/jq/modules/oniguruma/src/iso8859_9.c +13 -33
  135. package/deps/jq/modules/oniguruma/src/koi8.c +14 -27
  136. package/deps/jq/modules/oniguruma/src/koi8_r.c +12 -19
  137. package/deps/jq/modules/oniguruma/src/make_property.sh +21 -0
  138. package/deps/jq/modules/oniguruma/src/make_unicode_egcb.sh +7 -0
  139. package/deps/jq/modules/oniguruma/src/make_unicode_egcb_data.py +267 -0
  140. package/deps/jq/modules/oniguruma/src/make_unicode_fold.sh +25 -11
  141. package/deps/jq/modules/oniguruma/src/make_unicode_fold_data.py +206 -26
  142. package/deps/jq/modules/oniguruma/src/make_unicode_property.sh +19 -10
  143. package/deps/jq/modules/oniguruma/src/make_unicode_property_data.py +474 -375
  144. package/deps/jq/modules/oniguruma/src/make_unicode_wb.sh +7 -0
  145. package/deps/jq/modules/oniguruma/src/make_unicode_wb_data.py +267 -0
  146. package/deps/jq/modules/oniguruma/src/mktable.c +28 -24
  147. package/deps/jq/modules/oniguruma/src/onig_init.c +2 -2
  148. package/deps/jq/modules/oniguruma/src/oniggnu.h +7 -5
  149. package/deps/jq/modules/oniguruma/src/onigposix.h +40 -16
  150. package/deps/jq/modules/oniguruma/src/oniguruma.h +357 -107
  151. package/deps/jq/modules/oniguruma/src/regcomp.c +6214 -3933
  152. package/deps/jq/modules/oniguruma/src/regenc.c +197 -120
  153. package/deps/jq/modules/oniguruma/src/regenc.h +106 -63
  154. package/deps/jq/modules/oniguruma/src/regerror.c +112 -91
  155. package/deps/jq/modules/oniguruma/src/regexec.c +4876 -2010
  156. package/deps/jq/modules/oniguruma/src/regext.c +8 -8
  157. package/deps/jq/modules/oniguruma/src/reggnu.c +13 -17
  158. package/deps/jq/modules/oniguruma/src/regint.h +757 -491
  159. package/deps/jq/modules/oniguruma/src/regparse.c +7204 -3240
  160. package/deps/jq/modules/oniguruma/src/regparse.h +361 -218
  161. package/deps/jq/modules/oniguruma/src/regposerr.c +49 -9
  162. package/deps/jq/modules/oniguruma/src/regposix.c +106 -24
  163. package/deps/jq/modules/oniguruma/src/regsyntax.c +66 -13
  164. package/deps/jq/modules/oniguruma/src/regtrav.c +1 -1
  165. package/deps/jq/modules/oniguruma/src/regversion.c +6 -4
  166. package/deps/jq/modules/oniguruma/src/sjis.c +23 -52
  167. package/deps/jq/modules/oniguruma/src/sjis_prop.c +25 -32
  168. package/deps/jq/modules/oniguruma/src/sjis_prop.gperf +1 -2
  169. package/deps/jq/modules/oniguruma/src/st.c +248 -249
  170. package/deps/jq/modules/oniguruma/src/st.h +4 -5
  171. package/deps/jq/modules/oniguruma/src/unicode.c +869 -294
  172. package/deps/jq/modules/oniguruma/src/unicode_egcb_data.c +1419 -0
  173. package/deps/jq/modules/oniguruma/src/unicode_fold1_key.c +1829 -1300
  174. package/deps/jq/modules/oniguruma/src/unicode_fold2_key.c +32 -9
  175. package/deps/jq/modules/oniguruma/src/unicode_fold3_key.c +32 -9
  176. package/deps/jq/modules/oniguruma/src/unicode_fold_data.c +1210 -984
  177. package/deps/jq/modules/oniguruma/src/unicode_property_data.c +22480 -15198
  178. package/deps/jq/modules/oniguruma/src/unicode_property_data_posix.c +1463 -591
  179. package/deps/jq/modules/oniguruma/src/unicode_unfold_key.c +1958 -1418
  180. package/deps/jq/modules/oniguruma/src/unicode_wb_data.c +1106 -0
  181. package/deps/jq/modules/oniguruma/src/utf16_be.c +90 -49
  182. package/deps/jq/modules/oniguruma/src/utf16_le.c +80 -49
  183. package/deps/jq/modules/oniguruma/src/utf32_be.c +14 -42
  184. package/deps/jq/modules/oniguruma/src/utf32_le.c +13 -40
  185. package/deps/jq/modules/oniguruma/src/utf8.c +33 -78
  186. package/deps/jq/modules/oniguruma/test/CMakeLists.txt +55 -0
  187. package/deps/jq/modules/oniguruma/test/Makefile.am +65 -10
  188. package/deps/jq/modules/oniguruma/test/test.sh +17 -0
  189. package/deps/jq/modules/oniguruma/test/test_back.c +1450 -0
  190. package/deps/jq/modules/oniguruma/test/test_options.c +228 -0
  191. package/deps/jq/modules/oniguruma/test/test_regset.c +466 -0
  192. package/deps/jq/modules/oniguruma/test/test_syntax.c +365 -0
  193. package/deps/jq/modules/oniguruma/test/test_utf8.c +1761 -0
  194. package/deps/jq/modules/oniguruma/test/testc.c +128 -88
  195. package/deps/jq/modules/oniguruma/test/testp.c +613 -0
  196. package/deps/jq/modules/oniguruma/test/testu.c +75 -28
  197. package/deps/jq/modules/oniguruma/tis-ci/stub.c +3 -0
  198. package/deps/jq/modules/oniguruma/tis-ci/test_back.config +26 -0
  199. package/deps/jq/modules/oniguruma/tis-ci/test_regset.config +20 -0
  200. package/deps/jq/modules/oniguruma/tis-ci/test_syntax.config +26 -0
  201. package/deps/jq/modules/oniguruma/tis-ci/test_utf8.config +25 -0
  202. package/deps/jq/modules/oniguruma/tis-ci/testc.config +26 -0
  203. package/deps/jq/modules/oniguruma/tis-ci/testu.config +24 -0
  204. package/deps/jq/modules/oniguruma/tis.config +1336 -0
  205. package/deps/jq/modules/oniguruma/windows/CMakeLists.txt +8 -0
  206. package/deps/jq/modules/oniguruma/windows/testc.c +865 -869
  207. package/deps/jq/scripts/update-website +6 -5
  208. package/deps/jq/scripts/version +10 -7
  209. package/deps/jq/sig/jq-release-new.key +29 -0
  210. package/deps/jq/sig/v1.4/sha256sum.txt +1 -0
  211. package/deps/jq/sig/v1.5/sha256sum.txt +2 -0
  212. package/deps/jq/sig/v1.5rc1/sha256sum.txt +1 -0
  213. package/deps/jq/sig/v1.5rc2/sha256sum.txt +2 -0
  214. package/deps/jq/sig/v1.6/sha256sum.txt +2 -0
  215. package/deps/jq/sig/v1.7/jq-1.7.tar.gz.asc +16 -0
  216. package/deps/jq/sig/v1.7/jq-1.7.zip.asc +16 -0
  217. package/deps/jq/sig/v1.7/jq-linux-amd64.asc +16 -0
  218. package/deps/jq/sig/v1.7/jq-linux-arm64.asc +16 -0
  219. package/deps/jq/sig/v1.7/jq-linux-armel.asc +16 -0
  220. package/deps/jq/sig/v1.7/jq-linux-armhf.asc +16 -0
  221. package/deps/jq/sig/v1.7/jq-linux-i386.asc +16 -0
  222. package/deps/jq/sig/v1.7/jq-linux-mips.asc +16 -0
  223. package/deps/jq/sig/v1.7/jq-linux-mips64.asc +16 -0
  224. package/deps/jq/sig/v1.7/jq-linux-mips64el.asc +16 -0
  225. package/deps/jq/sig/v1.7/jq-linux-mips64r6.asc +16 -0
  226. package/deps/jq/sig/v1.7/jq-linux-mips64r6el.asc +16 -0
  227. package/deps/jq/sig/v1.7/jq-linux-mipsel.asc +16 -0
  228. package/deps/jq/sig/v1.7/jq-linux-mipsr6.asc +16 -0
  229. package/deps/jq/sig/v1.7/jq-linux-mipsr6el.asc +16 -0
  230. package/deps/jq/sig/v1.7/jq-linux-powerpc.asc +16 -0
  231. package/deps/jq/sig/v1.7/jq-linux-ppc64el.asc +16 -0
  232. package/deps/jq/sig/v1.7/jq-linux-riscv64.asc +16 -0
  233. package/deps/jq/sig/v1.7/jq-linux-s390x.asc +16 -0
  234. package/deps/jq/sig/v1.7/jq-macos-amd64.asc +16 -0
  235. package/deps/jq/sig/v1.7/jq-macos-arm64.asc +16 -0
  236. package/deps/jq/sig/v1.7/jq-windows-amd64.exe.asc +16 -0
  237. package/deps/jq/sig/v1.7/jq-windows-i386.exe.asc +16 -0
  238. package/deps/jq/sig/v1.7/sha256sum.txt +23 -0
  239. package/deps/jq/sig/v1.7.1/jq-1.7.1.tar.gz.asc +16 -0
  240. package/deps/jq/sig/v1.7.1/jq-1.7.1.zip.asc +16 -0
  241. package/deps/jq/sig/v1.7.1/jq-linux-amd64.asc +16 -0
  242. package/deps/jq/sig/v1.7.1/jq-linux-arm64.asc +16 -0
  243. package/deps/jq/sig/v1.7.1/jq-linux-armel.asc +16 -0
  244. package/deps/jq/sig/v1.7.1/jq-linux-armhf.asc +16 -0
  245. package/deps/jq/sig/v1.7.1/jq-linux-i386.asc +16 -0
  246. package/deps/jq/sig/v1.7.1/jq-linux-mips.asc +16 -0
  247. package/deps/jq/sig/v1.7.1/jq-linux-mips64.asc +16 -0
  248. package/deps/jq/sig/v1.7.1/jq-linux-mips64el.asc +16 -0
  249. package/deps/jq/sig/v1.7.1/jq-linux-mips64r6.asc +16 -0
  250. package/deps/jq/sig/v1.7.1/jq-linux-mips64r6el.asc +16 -0
  251. package/deps/jq/sig/v1.7.1/jq-linux-mipsel.asc +16 -0
  252. package/deps/jq/sig/v1.7.1/jq-linux-mipsr6.asc +16 -0
  253. package/deps/jq/sig/v1.7.1/jq-linux-mipsr6el.asc +16 -0
  254. package/deps/jq/sig/v1.7.1/jq-linux-powerpc.asc +16 -0
  255. package/deps/jq/sig/v1.7.1/jq-linux-ppc64el.asc +16 -0
  256. package/deps/jq/sig/v1.7.1/jq-linux-riscv64.asc +16 -0
  257. package/deps/jq/sig/v1.7.1/jq-linux-s390x.asc +16 -0
  258. package/deps/jq/sig/v1.7.1/jq-linux64.asc +16 -0
  259. package/deps/jq/sig/v1.7.1/jq-macos-amd64.asc +16 -0
  260. package/deps/jq/sig/v1.7.1/jq-macos-arm64.asc +16 -0
  261. package/deps/jq/sig/v1.7.1/jq-osx-amd64.asc +16 -0
  262. package/deps/jq/sig/v1.7.1/jq-win64.exe.asc +16 -0
  263. package/deps/jq/sig/v1.7.1/jq-windows-amd64.exe.asc +16 -0
  264. package/deps/jq/sig/v1.7.1/jq-windows-i386.exe.asc +16 -0
  265. package/deps/jq/sig/v1.7.1/sha256sum.txt +26 -0
  266. package/deps/jq/sig/v1.7rc1/jq-1.7rc1.tar.gz.asc +16 -0
  267. package/deps/jq/sig/v1.7rc1/jq-1.7rc1.zip.asc +16 -0
  268. package/deps/jq/sig/v1.7rc1/jq-linux-amd64.asc +16 -0
  269. package/deps/jq/sig/v1.7rc1/jq-linux-arm64.asc +16 -0
  270. package/deps/jq/sig/v1.7rc1/jq-linux-armel.asc +16 -0
  271. package/deps/jq/sig/v1.7rc1/jq-linux-armhf.asc +16 -0
  272. package/deps/jq/sig/v1.7rc1/jq-linux-i386.asc +16 -0
  273. package/deps/jq/sig/v1.7rc1/jq-linux-mips.asc +16 -0
  274. package/deps/jq/sig/v1.7rc1/jq-linux-mips64.asc +16 -0
  275. package/deps/jq/sig/v1.7rc1/jq-linux-mips64el.asc +16 -0
  276. package/deps/jq/sig/v1.7rc1/jq-linux-mips64r6.asc +16 -0
  277. package/deps/jq/sig/v1.7rc1/jq-linux-mips64r6el.asc +16 -0
  278. package/deps/jq/sig/v1.7rc1/jq-linux-mipsel.asc +16 -0
  279. package/deps/jq/sig/v1.7rc1/jq-linux-mipsr6.asc +16 -0
  280. package/deps/jq/sig/v1.7rc1/jq-linux-mipsr6el.asc +16 -0
  281. package/deps/jq/sig/v1.7rc1/jq-linux-powerpc.asc +16 -0
  282. package/deps/jq/sig/v1.7rc1/jq-linux-ppc64el.asc +16 -0
  283. package/deps/jq/sig/v1.7rc1/jq-linux-riscv64.asc +16 -0
  284. package/deps/jq/sig/v1.7rc1/jq-linux-s390x.asc +16 -0
  285. package/deps/jq/sig/v1.7rc1/jq-macos-amd64.asc +16 -0
  286. package/deps/jq/sig/v1.7rc1/jq-macos-arm64.asc +16 -0
  287. package/deps/jq/sig/v1.7rc1/jq-windows-amd64.exe.asc +16 -0
  288. package/deps/jq/sig/v1.7rc1/jq-windows-i386.exe.asc +16 -0
  289. package/deps/jq/sig/v1.7rc1/sha256sum.txt +23 -0
  290. package/deps/jq/sig/v1.7rc2/jq-1.7rc2.tar.gz.asc +16 -0
  291. package/deps/jq/sig/v1.7rc2/jq-1.7rc2.zip.asc +16 -0
  292. package/deps/jq/sig/v1.7rc2/jq-linux-amd64.asc +16 -0
  293. package/deps/jq/sig/v1.7rc2/jq-linux-arm64.asc +16 -0
  294. package/deps/jq/sig/v1.7rc2/jq-linux-armel.asc +16 -0
  295. package/deps/jq/sig/v1.7rc2/jq-linux-armhf.asc +16 -0
  296. package/deps/jq/sig/v1.7rc2/jq-linux-i386.asc +16 -0
  297. package/deps/jq/sig/v1.7rc2/jq-linux-mips.asc +16 -0
  298. package/deps/jq/sig/v1.7rc2/jq-linux-mips64.asc +16 -0
  299. package/deps/jq/sig/v1.7rc2/jq-linux-mips64el.asc +16 -0
  300. package/deps/jq/sig/v1.7rc2/jq-linux-mips64r6.asc +16 -0
  301. package/deps/jq/sig/v1.7rc2/jq-linux-mips64r6el.asc +16 -0
  302. package/deps/jq/sig/v1.7rc2/jq-linux-mipsel.asc +16 -0
  303. package/deps/jq/sig/v1.7rc2/jq-linux-mipsr6.asc +16 -0
  304. package/deps/jq/sig/v1.7rc2/jq-linux-mipsr6el.asc +16 -0
  305. package/deps/jq/sig/v1.7rc2/jq-linux-powerpc.asc +16 -0
  306. package/deps/jq/sig/v1.7rc2/jq-linux-ppc64el.asc +16 -0
  307. package/deps/jq/sig/v1.7rc2/jq-linux-riscv64.asc +16 -0
  308. package/deps/jq/sig/v1.7rc2/jq-linux-s390x.asc +16 -0
  309. package/deps/jq/sig/v1.7rc2/jq-macos-amd64.asc +16 -0
  310. package/deps/jq/sig/v1.7rc2/jq-macos-arm64.asc +16 -0
  311. package/deps/jq/sig/v1.7rc2/jq-windows-amd64.exe.asc +16 -0
  312. package/deps/jq/sig/v1.7rc2/jq-windows-i386.exe.asc +16 -0
  313. package/deps/jq/sig/v1.7rc2/sha256sum.txt +23 -0
  314. package/deps/jq/src/builtin.c +537 -343
  315. package/deps/jq/src/builtin.h +18 -0
  316. package/deps/jq/src/builtin.jq +116 -143
  317. package/deps/jq/src/bytecode.h +8 -4
  318. package/deps/jq/src/compile.c +157 -143
  319. package/deps/jq/src/compile.h +3 -4
  320. package/deps/jq/src/decNumber/ICU-license.html +45 -0
  321. package/deps/jq/src/decNumber/decBasic.c +3908 -0
  322. package/deps/jq/src/decNumber/decCommon.c +1835 -0
  323. package/deps/jq/src/decNumber/decContext.c +437 -0
  324. package/deps/jq/src/decNumber/decContext.h +254 -0
  325. package/deps/jq/src/decNumber/decDPD.h +1185 -0
  326. package/deps/jq/src/decNumber/decDouble.c +140 -0
  327. package/deps/jq/src/decNumber/decDouble.h +155 -0
  328. package/deps/jq/src/decNumber/decNumber.c +8143 -0
  329. package/deps/jq/src/decNumber/decNumber.h +182 -0
  330. package/deps/jq/src/decNumber/decNumberLocal.h +757 -0
  331. package/deps/jq/src/decNumber/decPacked.c +220 -0
  332. package/deps/jq/src/decNumber/decPacked.h +52 -0
  333. package/deps/jq/src/decNumber/decQuad.c +135 -0
  334. package/deps/jq/src/decNumber/decQuad.h +177 -0
  335. package/deps/jq/src/decNumber/decSingle.c +71 -0
  336. package/deps/jq/src/decNumber/decSingle.h +86 -0
  337. package/deps/jq/src/decNumber/decimal128.c +553 -0
  338. package/deps/jq/src/decNumber/decimal128.h +81 -0
  339. package/deps/jq/src/decNumber/decimal32.c +476 -0
  340. package/deps/jq/src/decNumber/decimal32.h +81 -0
  341. package/deps/jq/src/decNumber/decimal64.c +839 -0
  342. package/deps/jq/src/decNumber/decimal64.h +83 -0
  343. package/deps/jq/src/decNumber/decnumber.pdf +0 -0
  344. package/deps/jq/src/decNumber/example1.c +38 -0
  345. package/deps/jq/src/decNumber/example2.c +52 -0
  346. package/deps/jq/src/decNumber/example3.c +64 -0
  347. package/deps/jq/src/decNumber/example4.c +61 -0
  348. package/deps/jq/src/decNumber/example5.c +36 -0
  349. package/deps/jq/src/decNumber/example6.c +61 -0
  350. package/deps/jq/src/decNumber/example7.c +35 -0
  351. package/deps/jq/src/decNumber/example8.c +39 -0
  352. package/deps/jq/src/decNumber/readme.txt +81 -0
  353. package/deps/jq/src/exec_stack.h +5 -3
  354. package/deps/jq/src/execute.c +126 -44
  355. package/deps/jq/src/inject_errors.c +0 -2
  356. package/deps/jq/src/jq.h +10 -1
  357. package/deps/jq/src/jq_test.c +222 -11
  358. package/deps/jq/src/jv.c +807 -176
  359. package/deps/jq/src/jv.h +22 -1
  360. package/deps/jq/src/jv_alloc.c +33 -26
  361. package/deps/jq/src/jv_alloc.h +0 -11
  362. package/deps/jq/src/jv_aux.c +153 -67
  363. package/deps/jq/src/jv_dtoa.c +12 -2
  364. package/deps/jq/src/jv_dtoa_tsd.c +51 -0
  365. package/deps/jq/src/jv_dtoa_tsd.h +4 -0
  366. package/deps/jq/src/jv_parse.c +70 -15
  367. package/deps/jq/src/jv_print.c +56 -60
  368. package/deps/jq/src/jv_private.h +7 -0
  369. package/deps/jq/src/jv_thread.h +76 -0
  370. package/deps/jq/src/jv_unicode.c +18 -0
  371. package/deps/jq/src/jv_unicode.h +2 -0
  372. package/deps/jq/src/lexer.c +782 -543
  373. package/deps/jq/src/lexer.h +438 -64
  374. package/deps/jq/src/lexer.l +10 -3
  375. package/deps/jq/src/libm.h +16 -6
  376. package/deps/jq/src/linker.c +97 -40
  377. package/deps/jq/src/locfile.c +2 -1
  378. package/deps/jq/src/main.c +384 -336
  379. package/deps/jq/src/opcode_list.h +5 -2
  380. package/deps/jq/src/parser.c +2260 -1898
  381. package/deps/jq/src/parser.h +115 -98
  382. package/deps/jq/src/parser.y +124 -89
  383. package/deps/jq/src/util.c +854 -55
  384. package/deps/jq/src/util.h +6 -4
  385. package/deps/jq/tests/jq.test +762 -26
  386. package/deps/jq/tests/jq_fuzz_compile.c +27 -0
  387. package/deps/jq/tests/jq_fuzz_execute.cpp +42 -0
  388. package/deps/jq/tests/jq_fuzz_fixed.cpp +297 -0
  389. package/deps/jq/tests/jq_fuzz_load_file.c +28 -0
  390. package/deps/jq/tests/jq_fuzz_parse.c +21 -0
  391. package/deps/jq/tests/jq_fuzz_parse_extended.c +36 -0
  392. package/deps/jq/tests/jq_fuzz_parse_stream.c +21 -0
  393. package/deps/jq/tests/local.supp +14 -0
  394. package/deps/jq/tests/man.test +979 -0
  395. package/deps/jq/tests/manonig.test +76 -0
  396. package/deps/jq/tests/manonigtest +5 -0
  397. package/deps/jq/tests/mantest +1 -2
  398. package/deps/jq/tests/modules/home2/.jq/g.jq +1 -0
  399. package/deps/jq/tests/modules/shadow1.jq +2 -0
  400. package/deps/jq/tests/modules/shadow2.jq +1 -0
  401. package/deps/jq/tests/modules/test_bind_order0.jq +1 -0
  402. package/deps/jq/tests/modules/test_bind_order1.jq +1 -1
  403. package/deps/jq/tests/modules/test_bind_order2.jq +0 -1
  404. package/deps/jq/tests/no-main-program.jq +1 -0
  405. package/deps/jq/tests/onig.test +77 -2
  406. package/deps/jq/tests/setup +7 -2
  407. package/deps/jq/tests/shtest +478 -59
  408. package/deps/jq/tests/uri.test +38 -0
  409. package/deps/jq/tests/uritest +5 -0
  410. package/deps/jq/tests/yes-main-program.jq +2 -0
  411. package/lib/index.js +3 -0
  412. package/lib/jq.js +15 -1
  413. package/lib/templateAsync.js +137 -0
  414. package/package.json +7 -7
  415. package/src/binding.cc +623 -146
  416. package/src/binding.h +3 -4
  417. package/test/santiy-async.test.js +171 -0
  418. package/test/santiy.test.js +2 -2
  419. package/test/template-async.test.js +182 -0
  420. package/test/template.test.js +3 -3
  421. package/deps/jq/.travis.yml +0 -202
  422. package/deps/jq/NEWS +0 -89
  423. package/deps/jq/appveyor.yml +0 -53
  424. package/deps/jq/docs/Gemfile +0 -7
  425. package/deps/jq/docs/Gemfile.lock +0 -63
  426. package/deps/jq/docs/Rakefile +0 -24
  427. package/deps/jq/docs/Rakefile.manual +0 -49
  428. package/deps/jq/docs/Rakefile.website +0 -76
  429. package/deps/jq/docs/content/1.tutorial/default.yml +0 -327
  430. package/deps/jq/docs/content/2.download/default.yml +0 -193
  431. package/deps/jq/docs/content/index/index.yml +0 -73
  432. package/deps/jq/docs/public/css/base.scss +0 -181
  433. package/deps/jq/docs/public/jq.png +0 -0
  434. package/deps/jq/docs/site.yml +0 -9
  435. package/deps/jq/docs/templates/default.liquid +0 -34
  436. package/deps/jq/docs/templates/index.liquid +0 -73
  437. package/deps/jq/docs/templates/manual.liquid +0 -99
  438. package/deps/jq/docs/templates/shared/_footer.liquid +0 -10
  439. package/deps/jq/docs/templates/shared/_head.liquid +0 -17
  440. package/deps/jq/docs/templates/shared/_navbar.liquid +0 -27
  441. package/deps/jq/modules/oniguruma/README.ja +0 -195
  442. package/deps/jq/modules/oniguruma/cmake/dist.cmake +0 -321
  443. package/deps/jq/modules/oniguruma/contributed/libfuzzer-onig.cpp +0 -31
  444. package/deps/jq/modules/oniguruma/dist.info +0 -10
  445. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold1_key.c +0 -2250
  446. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold2_key.c +0 -203
  447. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold3_key.c +0 -113
  448. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold_data.c +0 -1225
  449. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data.c +0 -24742
  450. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data_posix.c +0 -4846
  451. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_unfold_key.c +0 -2571
  452. /package/deps/jq/sig/{jq-release.key → jq-release-old.key} +0 -0
  453. /package/deps/jq/tests/modules/{.jq → home1/.jq} +0 -0
@@ -1,698 +1,841 @@
1
- Unicode Properties (from Unicode Version: 8.0.0)
1
+ Unicode Properties (Unicode Version: 15.0.0, Emoji: 15.0)
2
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
3
+ ASCII_Hex_Digit
4
+ Adlam
5
+ Ahom
6
+ Alphabetic
7
+ Anatolian_Hieroglyphs
8
+ Any
9
+ Arabic
10
+ Armenian
11
+ Assigned
12
+ Avestan
13
+ Balinese
14
+ Bamum
15
+ Bassa_Vah
16
+ Batak
17
+ Bengali
18
+ Bhaiksuki
19
+ Bidi_Control
20
+ Bopomofo
21
+ Brahmi
22
+ Braille
23
+ Buginese
24
+ Buhid
25
+ C
26
+ Canadian_Aboriginal
27
+ Carian
28
+ Case_Ignorable
29
+ Cased
30
+ Caucasian_Albanian
31
+ Cc
32
+ Cf
33
+ Chakma
34
+ Cham
35
+ Changes_When_Casefolded
36
+ Changes_When_Casemapped
37
+ Changes_When_Lowercased
38
+ Changes_When_Titlecased
39
+ Changes_When_Uppercased
40
+ Cherokee
41
+ Chorasmian
42
+ Cn
43
+ Co
44
+ Common
45
+ Coptic
46
+ Cs
47
+ Cuneiform
48
+ Cypriot
49
+ Cypro_Minoan
50
+ Cyrillic
51
+ Dash
52
+ Default_Ignorable_Code_Point
53
+ Deprecated
54
+ Deseret
55
+ Devanagari
56
+ Diacritic
57
+ Dives_Akuru
58
+ Dogra
59
+ Duployan
60
+ Egyptian_Hieroglyphs
61
+ Elbasan
62
+ Elymaic
63
+ Emoji
64
+ Emoji_Component
65
+ Emoji_Modifier
66
+ Emoji_Modifier_Base
67
+ Emoji_Presentation
68
+ Ethiopic
69
+ Extended_Pictographic
70
+ Extender
71
+ Georgian
72
+ Glagolitic
73
+ Gothic
74
+ Grantha
75
+ Grapheme_Base
76
+ Grapheme_Extend
77
+ Grapheme_Link
78
+ Greek
79
+ Gujarati
80
+ Gunjala_Gondi
81
+ Gurmukhi
82
+ Han
83
+ Hangul
84
+ Hanifi_Rohingya
85
+ Hanunoo
86
+ Hatran
87
+ Hebrew
88
+ Hex_Digit
89
+ Hiragana
90
+ Hyphen
91
+ IDS_Binary_Operator
92
+ IDS_Trinary_Operator
93
+ ID_Continue
94
+ ID_Start
95
+ Ideographic
96
+ Imperial_Aramaic
97
+ Inherited
98
+ Inscriptional_Pahlavi
99
+ Inscriptional_Parthian
100
+ Javanese
101
+ Join_Control
102
+ Kaithi
103
+ Kannada
104
+ Katakana
105
+ Kawi
106
+ Kayah_Li
107
+ Kharoshthi
108
+ Khitan_Small_Script
109
+ Khmer
110
+ Khojki
111
+ Khudawadi
112
+ L
113
+ LC
114
+ Lao
115
+ Latin
116
+ Lepcha
117
+ Limbu
118
+ Linear_A
119
+ Linear_B
120
+ Lisu
121
+ Ll
122
+ Lm
123
+ Lo
124
+ Logical_Order_Exception
125
+ Lowercase
126
+ Lt
127
+ Lu
128
+ Lycian
129
+ Lydian
130
+ M
131
+ Mahajani
132
+ Makasar
133
+ Malayalam
134
+ Mandaic
135
+ Manichaean
136
+ Marchen
137
+ Masaram_Gondi
138
+ Math
139
+ Mc
140
+ Me
141
+ Medefaidrin
142
+ Meetei_Mayek
143
+ Mende_Kikakui
144
+ Meroitic_Cursive
145
+ Meroitic_Hieroglyphs
146
+ Miao
147
+ Mn
148
+ Modi
149
+ Mongolian
150
+ Mro
151
+ Multani
152
+ Myanmar
153
+ N
154
+ Nabataean
155
+ Nag_Mundari
156
+ Nandinagari
157
+ Nd
158
+ New_Tai_Lue
159
+ Newa
160
+ Nko
161
+ Nl
162
+ No
163
+ Noncharacter_Code_Point
164
+ Nushu
165
+ Nyiakeng_Puachue_Hmong
166
+ Ogham
167
+ Ol_Chiki
168
+ Old_Hungarian
169
+ Old_Italic
170
+ Old_North_Arabian
171
+ Old_Permic
172
+ Old_Persian
173
+ Old_Sogdian
174
+ Old_South_Arabian
175
+ Old_Turkic
176
+ Old_Uyghur
177
+ Oriya
178
+ Osage
179
+ Osmanya
180
+ Other_Alphabetic
181
+ Other_Default_Ignorable_Code_Point
182
+ Other_Grapheme_Extend
183
+ Other_ID_Continue
184
+ Other_ID_Start
185
+ Other_Lowercase
186
+ Other_Math
187
+ Other_Uppercase
188
+ P
189
+ Pahawh_Hmong
190
+ Palmyrene
191
+ Pattern_Syntax
192
+ Pattern_White_Space
193
+ Pau_Cin_Hau
194
+ Pc
195
+ Pd
196
+ Pe
197
+ Pf
198
+ Phags_Pa
199
+ Phoenician
200
+ Pi
201
+ Po
202
+ Prepended_Concatenation_Mark
203
+ Ps
204
+ Psalter_Pahlavi
205
+ Quotation_Mark
206
+ Radical
207
+ Regional_Indicator
208
+ Rejang
209
+ Runic
210
+ S
211
+ Samaritan
212
+ Saurashtra
213
+ Sc
214
+ Sentence_Terminal
215
+ Sharada
216
+ Shavian
217
+ Siddham
218
+ SignWriting
219
+ Sinhala
220
+ Sk
221
+ Sm
222
+ So
223
+ Soft_Dotted
224
+ Sogdian
225
+ Sora_Sompeng
226
+ Soyombo
227
+ Sundanese
228
+ Syloti_Nagri
229
+ Syriac
230
+ Tagalog
231
+ Tagbanwa
232
+ Tai_Le
233
+ Tai_Tham
234
+ Tai_Viet
235
+ Takri
236
+ Tamil
237
+ Tangsa
238
+ Tangut
239
+ Telugu
240
+ Terminal_Punctuation
241
+ Thaana
242
+ Thai
243
+ Tibetan
244
+ Tifinagh
245
+ Tirhuta
246
+ Toto
247
+ Ugaritic
248
+ Unified_Ideograph
249
+ Unknown
250
+ Uppercase
251
+ Vai
252
+ Variation_Selector
253
+ Vithkuqi
254
+ Wancho
255
+ Warang_Citi
256
+ White_Space
257
+ XID_Continue
258
+ XID_Start
259
+ Yezidi
260
+ Yi
261
+ Z
262
+ Zanabazar_Square
263
+ Zl
264
+ Zp
265
+ Zs
266
+ Adlm
267
+ Aghb
268
+ AHex
269
+ Arab
270
+ Armi
271
+ Armn
272
+ Avst
273
+ Bali
274
+ Bamu
275
+ Bass
276
+ Batk
277
+ Beng
278
+ Bhks
279
+ Bidi_C
280
+ Bopo
281
+ Brah
282
+ Brai
283
+ Bugi
284
+ Buhd
285
+ Cakm
286
+ Cans
287
+ Cari
288
+ Cased_Letter
289
+ Cher
290
+ Chrs
291
+ CI
292
+ Close_Punctuation
293
+ Combining_Mark
294
+ Connector_Punctuation
295
+ Control
296
+ Copt
297
+ Cpmn
298
+ Cprt
299
+ Currency_Symbol
300
+ CWCF
301
+ CWCM
302
+ CWL
303
+ CWT
304
+ CWU
305
+ Cyrl
306
+ Dash_Punctuation
307
+ Decimal_Number
308
+ Dep
309
+ Deva
310
+ DI
311
+ Dia
312
+ Diak
313
+ Dogr
314
+ Dsrt
315
+ Dupl
316
+ EBase
317
+ EComp
318
+ Egyp
319
+ Elba
320
+ Elym
321
+ EMod
322
+ Enclosing_Mark
323
+ EPres
324
+ Ethi
325
+ Ext
326
+ ExtPict
327
+ Final_Punctuation
328
+ Format
329
+ Geor
330
+ Glag
331
+ Gong
332
+ Gonm
333
+ Goth
334
+ Gran
335
+ Gr_Base
336
+ Grek
337
+ Gr_Ext
338
+ Gr_Link
339
+ Gujr
340
+ Guru
341
+ Hang
342
+ Hani
343
+ Hano
344
+ Hatr
345
+ Hebr
346
+ Hex
347
+ Hira
348
+ Hluw
349
+ Hmng
350
+ Hmnp
351
+ Hung
352
+ IDC
353
+ Ideo
354
+ IDS
355
+ IDSB
356
+ IDST
357
+ Initial_Punctuation
358
+ Ital
359
+ Java
360
+ Join_C
361
+ Kali
362
+ Kana
363
+ Khar
364
+ Khmr
365
+ Khoj
366
+ Kits
367
+ Knda
368
+ Kthi
369
+ Lana
370
+ Laoo
371
+ Latn
372
+ Lepc
373
+ Letter
374
+ Letter_Number
375
+ Limb
376
+ Lina
377
+ Linb
378
+ Line_Separator
379
+ LOE
380
+ Lowercase_Letter
381
+ Lyci
382
+ Lydi
383
+ Mahj
384
+ Maka
385
+ Mand
386
+ Mani
387
+ Marc
388
+ Mark
389
+ Math_Symbol
390
+ Medf
391
+ Mend
392
+ Merc
393
+ Mero
394
+ Mlym
395
+ Modifier_Letter
396
+ Modifier_Symbol
397
+ Mong
398
+ Mroo
399
+ Mtei
400
+ Mult
401
+ Mymr
402
+ Nagm
403
+ Nand
404
+ Narb
405
+ Nbat
406
+ NChar
407
+ Nkoo
408
+ Nonspacing_Mark
409
+ Nshu
410
+ Number
411
+ OAlpha
412
+ ODI
413
+ Ogam
414
+ OGr_Ext
415
+ OIDC
416
+ OIDS
417
+ Olck
418
+ OLower
419
+ OMath
420
+ Open_Punctuation
421
+ Orkh
422
+ Orya
423
+ Osge
424
+ Osma
425
+ Other
426
+ Other_Letter
427
+ Other_Number
428
+ Other_Punctuation
429
+ Other_Symbol
430
+ Ougr
431
+ OUpper
432
+ Palm
433
+ Paragraph_Separator
434
+ Pat_Syn
435
+ Pat_WS
436
+ Pauc
437
+ PCM
438
+ Perm
439
+ Phag
440
+ Phli
441
+ Phlp
442
+ Phnx
443
+ Plrd
444
+ Private_Use
445
+ Prti
446
+ punct
447
+ Punctuation
448
+ Qaac
449
+ Qaai
450
+ QMark
451
+ RI
452
+ Rjng
453
+ Rohg
454
+ Runr
455
+ Samr
456
+ Sarb
457
+ Saur
458
+ SD
459
+ Separator
460
+ Sgnw
461
+ Shaw
462
+ Shrd
463
+ Sidd
464
+ Sind
465
+ Sinh
466
+ Sogd
467
+ Sogo
468
+ Sora
469
+ Soyo
470
+ Space_Separator
471
+ Spacing_Mark
472
+ STerm
473
+ Sund
474
+ Surrogate
475
+ Sylo
476
+ Symbol
477
+ Syrc
478
+ Tagb
479
+ Takr
480
+ Tale
481
+ Talu
482
+ Taml
483
+ Tang
484
+ Tavt
485
+ Telu
486
+ Term
487
+ Tfng
488
+ Tglg
489
+ Thaa
490
+ Tibt
491
+ Tirh
492
+ Titlecase_Letter
493
+ Tnsa
494
+ Ugar
495
+ UIdeo
496
+ Unassigned
497
+ Uppercase_Letter
498
+ Vaii
499
+ Vith
500
+ VS
501
+ Wara
502
+ Wcho
503
+ WSpace
504
+ XIDC
505
+ XIDS
506
+ Xpeo
507
+ Xsux
508
+ Yezi
509
+ Yiii
510
+ Zanb
511
+ Zinh
512
+ Zyyy
513
+ Zzzz
514
+ In_Basic_Latin
515
+ In_Latin_1_Supplement
516
+ In_Latin_Extended_A
517
+ In_Latin_Extended_B
518
+ In_IPA_Extensions
519
+ In_Spacing_Modifier_Letters
520
+ In_Combining_Diacritical_Marks
521
+ In_Greek_and_Coptic
522
+ In_Cyrillic
523
+ In_Cyrillic_Supplement
524
+ In_Armenian
525
+ In_Hebrew
526
+ In_Arabic
527
+ In_Syriac
528
+ In_Arabic_Supplement
529
+ In_Thaana
530
+ In_NKo
531
+ In_Samaritan
532
+ In_Mandaic
533
+ In_Syriac_Supplement
534
+ In_Arabic_Extended_B
535
+ In_Arabic_Extended_A
536
+ In_Devanagari
537
+ In_Bengali
538
+ In_Gurmukhi
539
+ In_Gujarati
540
+ In_Oriya
541
+ In_Tamil
542
+ In_Telugu
543
+ In_Kannada
544
+ In_Malayalam
545
+ In_Sinhala
546
+ In_Thai
547
+ In_Lao
548
+ In_Tibetan
549
+ In_Myanmar
550
+ In_Georgian
551
+ In_Hangul_Jamo
552
+ In_Ethiopic
553
+ In_Ethiopic_Supplement
554
+ In_Cherokee
555
+ In_Unified_Canadian_Aboriginal_Syllabics
556
+ In_Ogham
557
+ In_Runic
558
+ In_Tagalog
559
+ In_Hanunoo
560
+ In_Buhid
561
+ In_Tagbanwa
562
+ In_Khmer
563
+ In_Mongolian
564
+ In_Unified_Canadian_Aboriginal_Syllabics_Extended
565
+ In_Limbu
566
+ In_Tai_Le
567
+ In_New_Tai_Lue
568
+ In_Khmer_Symbols
569
+ In_Buginese
570
+ In_Tai_Tham
571
+ In_Combining_Diacritical_Marks_Extended
572
+ In_Balinese
573
+ In_Sundanese
574
+ In_Batak
575
+ In_Lepcha
576
+ In_Ol_Chiki
577
+ In_Cyrillic_Extended_C
578
+ In_Georgian_Extended
579
+ In_Sundanese_Supplement
580
+ In_Vedic_Extensions
581
+ In_Phonetic_Extensions
582
+ In_Phonetic_Extensions_Supplement
583
+ In_Combining_Diacritical_Marks_Supplement
584
+ In_Latin_Extended_Additional
585
+ In_Greek_Extended
586
+ In_General_Punctuation
587
+ In_Superscripts_and_Subscripts
588
+ In_Currency_Symbols
589
+ In_Combining_Diacritical_Marks_for_Symbols
590
+ In_Letterlike_Symbols
591
+ In_Number_Forms
592
+ In_Arrows
593
+ In_Mathematical_Operators
594
+ In_Miscellaneous_Technical
595
+ In_Control_Pictures
596
+ In_Optical_Character_Recognition
597
+ In_Enclosed_Alphanumerics
598
+ In_Box_Drawing
599
+ In_Block_Elements
600
+ In_Geometric_Shapes
601
+ In_Miscellaneous_Symbols
602
+ In_Dingbats
603
+ In_Miscellaneous_Mathematical_Symbols_A
604
+ In_Supplemental_Arrows_A
605
+ In_Braille_Patterns
606
+ In_Supplemental_Arrows_B
607
+ In_Miscellaneous_Mathematical_Symbols_B
608
+ In_Supplemental_Mathematical_Operators
609
+ In_Miscellaneous_Symbols_and_Arrows
610
+ In_Glagolitic
611
+ In_Latin_Extended_C
612
+ In_Coptic
613
+ In_Georgian_Supplement
614
+ In_Tifinagh
615
+ In_Ethiopic_Extended
616
+ In_Cyrillic_Extended_A
617
+ In_Supplemental_Punctuation
618
+ In_CJK_Radicals_Supplement
619
+ In_Kangxi_Radicals
620
+ In_Ideographic_Description_Characters
621
+ In_CJK_Symbols_and_Punctuation
622
+ In_Hiragana
623
+ In_Katakana
624
+ In_Bopomofo
625
+ In_Hangul_Compatibility_Jamo
626
+ In_Kanbun
627
+ In_Bopomofo_Extended
628
+ In_CJK_Strokes
629
+ In_Katakana_Phonetic_Extensions
630
+ In_Enclosed_CJK_Letters_and_Months
631
+ In_CJK_Compatibility
632
+ In_CJK_Unified_Ideographs_Extension_A
633
+ In_Yijing_Hexagram_Symbols
634
+ In_CJK_Unified_Ideographs
635
+ In_Yi_Syllables
636
+ In_Yi_Radicals
637
+ In_Lisu
638
+ In_Vai
639
+ In_Cyrillic_Extended_B
640
+ In_Bamum
641
+ In_Modifier_Tone_Letters
642
+ In_Latin_Extended_D
643
+ In_Syloti_Nagri
644
+ In_Common_Indic_Number_Forms
645
+ In_Phags_pa
646
+ In_Saurashtra
647
+ In_Devanagari_Extended
648
+ In_Kayah_Li
649
+ In_Rejang
650
+ In_Hangul_Jamo_Extended_A
651
+ In_Javanese
652
+ In_Myanmar_Extended_B
653
+ In_Cham
654
+ In_Myanmar_Extended_A
655
+ In_Tai_Viet
656
+ In_Meetei_Mayek_Extensions
657
+ In_Ethiopic_Extended_A
658
+ In_Latin_Extended_E
659
+ In_Cherokee_Supplement
660
+ In_Meetei_Mayek
661
+ In_Hangul_Syllables
662
+ In_Hangul_Jamo_Extended_B
663
+ In_High_Surrogates
664
+ In_High_Private_Use_Surrogates
665
+ In_Low_Surrogates
666
+ In_Private_Use_Area
667
+ In_CJK_Compatibility_Ideographs
668
+ In_Alphabetic_Presentation_Forms
669
+ In_Arabic_Presentation_Forms_A
670
+ In_Variation_Selectors
671
+ In_Vertical_Forms
672
+ In_Combining_Half_Marks
673
+ In_CJK_Compatibility_Forms
674
+ In_Small_Form_Variants
675
+ In_Arabic_Presentation_Forms_B
676
+ In_Halfwidth_and_Fullwidth_Forms
677
+ In_Specials
678
+ In_Linear_B_Syllabary
679
+ In_Linear_B_Ideograms
680
+ In_Aegean_Numbers
681
+ In_Ancient_Greek_Numbers
682
+ In_Ancient_Symbols
683
+ In_Phaistos_Disc
684
+ In_Lycian
685
+ In_Carian
686
+ In_Coptic_Epact_Numbers
687
+ In_Old_Italic
688
+ In_Gothic
689
+ In_Old_Permic
690
+ In_Ugaritic
691
+ In_Old_Persian
692
+ In_Deseret
693
+ In_Shavian
694
+ In_Osmanya
695
+ In_Osage
696
+ In_Elbasan
697
+ In_Caucasian_Albanian
698
+ In_Vithkuqi
699
+ In_Linear_A
700
+ In_Latin_Extended_F
701
+ In_Cypriot_Syllabary
702
+ In_Imperial_Aramaic
703
+ In_Palmyrene
704
+ In_Nabataean
705
+ In_Hatran
706
+ In_Phoenician
707
+ In_Lydian
708
+ In_Meroitic_Hieroglyphs
709
+ In_Meroitic_Cursive
710
+ In_Kharoshthi
711
+ In_Old_South_Arabian
712
+ In_Old_North_Arabian
713
+ In_Manichaean
714
+ In_Avestan
715
+ In_Inscriptional_Parthian
716
+ In_Inscriptional_Pahlavi
717
+ In_Psalter_Pahlavi
718
+ In_Old_Turkic
719
+ In_Old_Hungarian
720
+ In_Hanifi_Rohingya
721
+ In_Rumi_Numeral_Symbols
722
+ In_Yezidi
723
+ In_Arabic_Extended_C
724
+ In_Old_Sogdian
725
+ In_Sogdian
726
+ In_Old_Uyghur
727
+ In_Chorasmian
728
+ In_Elymaic
729
+ In_Brahmi
730
+ In_Kaithi
731
+ In_Sora_Sompeng
732
+ In_Chakma
733
+ In_Mahajani
734
+ In_Sharada
735
+ In_Sinhala_Archaic_Numbers
736
+ In_Khojki
737
+ In_Multani
738
+ In_Khudawadi
739
+ In_Grantha
740
+ In_Newa
741
+ In_Tirhuta
742
+ In_Siddham
743
+ In_Modi
744
+ In_Mongolian_Supplement
745
+ In_Takri
746
+ In_Ahom
747
+ In_Dogra
748
+ In_Warang_Citi
749
+ In_Dives_Akuru
750
+ In_Nandinagari
751
+ In_Zanabazar_Square
752
+ In_Soyombo
753
+ In_Unified_Canadian_Aboriginal_Syllabics_Extended_A
754
+ In_Pau_Cin_Hau
755
+ In_Devanagari_Extended_A
756
+ In_Bhaiksuki
757
+ In_Marchen
758
+ In_Masaram_Gondi
759
+ In_Gunjala_Gondi
760
+ In_Makasar
761
+ In_Kawi
762
+ In_Lisu_Supplement
763
+ In_Tamil_Supplement
764
+ In_Cuneiform
765
+ In_Cuneiform_Numbers_and_Punctuation
766
+ In_Early_Dynastic_Cuneiform
767
+ In_Cypro_Minoan
768
+ In_Egyptian_Hieroglyphs
769
+ In_Egyptian_Hieroglyph_Format_Controls
770
+ In_Anatolian_Hieroglyphs
771
+ In_Bamum_Supplement
772
+ In_Mro
773
+ In_Tangsa
774
+ In_Bassa_Vah
775
+ In_Pahawh_Hmong
776
+ In_Medefaidrin
777
+ In_Miao
778
+ In_Ideographic_Symbols_and_Punctuation
779
+ In_Tangut
780
+ In_Tangut_Components
781
+ In_Khitan_Small_Script
782
+ In_Tangut_Supplement
783
+ In_Kana_Extended_B
784
+ In_Kana_Supplement
785
+ In_Kana_Extended_A
786
+ In_Small_Kana_Extension
787
+ In_Nushu
788
+ In_Duployan
789
+ In_Shorthand_Format_Controls
790
+ In_Znamenny_Musical_Notation
791
+ In_Byzantine_Musical_Symbols
792
+ In_Musical_Symbols
793
+ In_Ancient_Greek_Musical_Notation
794
+ In_Kaktovik_Numerals
795
+ In_Mayan_Numerals
796
+ In_Tai_Xuan_Jing_Symbols
797
+ In_Counting_Rod_Numerals
798
+ In_Mathematical_Alphanumeric_Symbols
799
+ In_Sutton_SignWriting
800
+ In_Latin_Extended_G
801
+ In_Glagolitic_Supplement
802
+ In_Cyrillic_Extended_D
803
+ In_Nyiakeng_Puachue_Hmong
804
+ In_Toto
805
+ In_Wancho
806
+ In_Nag_Mundari
807
+ In_Ethiopic_Extended_B
808
+ In_Mende_Kikakui
809
+ In_Adlam
810
+ In_Indic_Siyaq_Numbers
811
+ In_Ottoman_Siyaq_Numbers
812
+ In_Arabic_Mathematical_Alphabetic_Symbols
813
+ In_Mahjong_Tiles
814
+ In_Domino_Tiles
815
+ In_Playing_Cards
816
+ In_Enclosed_Alphanumeric_Supplement
817
+ In_Enclosed_Ideographic_Supplement
818
+ In_Miscellaneous_Symbols_and_Pictographs
819
+ In_Emoticons
820
+ In_Ornamental_Dingbats
821
+ In_Transport_and_Map_Symbols
822
+ In_Alchemical_Symbols
823
+ In_Geometric_Shapes_Extended
824
+ In_Supplemental_Arrows_C
825
+ In_Supplemental_Symbols_and_Pictographs
826
+ In_Chess_Symbols
827
+ In_Symbols_and_Pictographs_Extended_A
828
+ In_Symbols_for_Legacy_Computing
829
+ In_CJK_Unified_Ideographs_Extension_B
830
+ In_CJK_Unified_Ideographs_Extension_C
831
+ In_CJK_Unified_Ideographs_Extension_D
832
+ In_CJK_Unified_Ideographs_Extension_E
833
+ In_CJK_Unified_Ideographs_Extension_F
834
+ In_CJK_Compatibility_Ideographs_Supplement
835
+ In_CJK_Unified_Ideographs_Extension_G
836
+ In_CJK_Unified_Ideographs_Extension_H
837
+ In_Tags
838
+ In_Variation_Selectors_Supplement
839
+ In_Supplementary_Private_Use_Area_A
840
+ In_Supplementary_Private_Use_Area_B
841
+ In_No_Block