Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

unicode-blocks.js 22 KiB

il y a 3 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. /*!
  6. * XRegExp Unicode Blocks 4.0.0
  7. * <xregexp.com>
  8. * Steven Levithan (c) 2010-2017 MIT License
  9. * Unicode data by Mathias Bynens <mathiasbynens.be>
  10. */
  11. exports.default = function (XRegExp) {
  12. /**
  13. * Adds support for all Unicode blocks. Block names use the prefix 'In'. E.g.,
  14. * `\p{InBasicLatin}`. Token names are case insensitive, and any spaces, hyphens, and
  15. * underscores are ignored.
  16. *
  17. * Uses Unicode 9.0.0.
  18. *
  19. * @requires XRegExp, Unicode Base
  20. */
  21. if (!XRegExp.addUnicodeData) {
  22. throw new ReferenceError('Unicode Base must be loaded before Unicode Blocks');
  23. }
  24. XRegExp.addUnicodeData([{
  25. name: 'InAdlam',
  26. astral: '\uD83A[\uDD00-\uDD5F]'
  27. }, {
  28. name: 'InAegean_Numbers',
  29. astral: '\uD800[\uDD00-\uDD3F]'
  30. }, {
  31. name: 'InAhom',
  32. astral: '\uD805[\uDF00-\uDF3F]'
  33. }, {
  34. name: 'InAlchemical_Symbols',
  35. astral: '\uD83D[\uDF00-\uDF7F]'
  36. }, {
  37. name: 'InAlphabetic_Presentation_Forms',
  38. bmp: '\uFB00-\uFB4F'
  39. }, {
  40. name: 'InAnatolian_Hieroglyphs',
  41. astral: '\uD811[\uDC00-\uDE7F]'
  42. }, {
  43. name: 'InAncient_Greek_Musical_Notation',
  44. astral: '\uD834[\uDE00-\uDE4F]'
  45. }, {
  46. name: 'InAncient_Greek_Numbers',
  47. astral: '\uD800[\uDD40-\uDD8F]'
  48. }, {
  49. name: 'InAncient_Symbols',
  50. astral: '\uD800[\uDD90-\uDDCF]'
  51. }, {
  52. name: 'InArabic',
  53. bmp: '\u0600-\u06FF'
  54. }, {
  55. name: 'InArabic_Extended_A',
  56. bmp: '\u08A0-\u08FF'
  57. }, {
  58. name: 'InArabic_Mathematical_Alphabetic_Symbols',
  59. astral: '\uD83B[\uDE00-\uDEFF]'
  60. }, {
  61. name: 'InArabic_Presentation_Forms_A',
  62. bmp: '\uFB50-\uFDFF'
  63. }, {
  64. name: 'InArabic_Presentation_Forms_B',
  65. bmp: '\uFE70-\uFEFF'
  66. }, {
  67. name: 'InArabic_Supplement',
  68. bmp: '\u0750-\u077F'
  69. }, {
  70. name: 'InArmenian',
  71. bmp: '\u0530-\u058F'
  72. }, {
  73. name: 'InArrows',
  74. bmp: '\u2190-\u21FF'
  75. }, {
  76. name: 'InAvestan',
  77. astral: '\uD802[\uDF00-\uDF3F]'
  78. }, {
  79. name: 'InBalinese',
  80. bmp: '\u1B00-\u1B7F'
  81. }, {
  82. name: 'InBamum',
  83. bmp: '\uA6A0-\uA6FF'
  84. }, {
  85. name: 'InBamum_Supplement',
  86. astral: '\uD81A[\uDC00-\uDE3F]'
  87. }, {
  88. name: 'InBasic_Latin',
  89. bmp: '\0-\x7F'
  90. }, {
  91. name: 'InBassa_Vah',
  92. astral: '\uD81A[\uDED0-\uDEFF]'
  93. }, {
  94. name: 'InBatak',
  95. bmp: '\u1BC0-\u1BFF'
  96. }, {
  97. name: 'InBengali',
  98. bmp: '\u0980-\u09FF'
  99. }, {
  100. name: 'InBhaiksuki',
  101. astral: '\uD807[\uDC00-\uDC6F]'
  102. }, {
  103. name: 'InBlock_Elements',
  104. bmp: '\u2580-\u259F'
  105. }, {
  106. name: 'InBopomofo',
  107. bmp: '\u3100-\u312F'
  108. }, {
  109. name: 'InBopomofo_Extended',
  110. bmp: '\u31A0-\u31BF'
  111. }, {
  112. name: 'InBox_Drawing',
  113. bmp: '\u2500-\u257F'
  114. }, {
  115. name: 'InBrahmi',
  116. astral: '\uD804[\uDC00-\uDC7F]'
  117. }, {
  118. name: 'InBraille_Patterns',
  119. bmp: '\u2800-\u28FF'
  120. }, {
  121. name: 'InBuginese',
  122. bmp: '\u1A00-\u1A1F'
  123. }, {
  124. name: 'InBuhid',
  125. bmp: '\u1740-\u175F'
  126. }, {
  127. name: 'InByzantine_Musical_Symbols',
  128. astral: '\uD834[\uDC00-\uDCFF]'
  129. }, {
  130. name: 'InCJK_Compatibility',
  131. bmp: '\u3300-\u33FF'
  132. }, {
  133. name: 'InCJK_Compatibility_Forms',
  134. bmp: '\uFE30-\uFE4F'
  135. }, {
  136. name: 'InCJK_Compatibility_Ideographs',
  137. bmp: '\uF900-\uFAFF'
  138. }, {
  139. name: 'InCJK_Compatibility_Ideographs_Supplement',
  140. astral: '\uD87E[\uDC00-\uDE1F]'
  141. }, {
  142. name: 'InCJK_Radicals_Supplement',
  143. bmp: '\u2E80-\u2EFF'
  144. }, {
  145. name: 'InCJK_Strokes',
  146. bmp: '\u31C0-\u31EF'
  147. }, {
  148. name: 'InCJK_Symbols_and_Punctuation',
  149. bmp: '\u3000-\u303F'
  150. }, {
  151. name: 'InCJK_Unified_Ideographs',
  152. bmp: '\u4E00-\u9FFF'
  153. }, {
  154. name: 'InCJK_Unified_Ideographs_Extension_A',
  155. bmp: '\u3400-\u4DBF'
  156. }, {
  157. name: 'InCJK_Unified_Ideographs_Extension_B',
  158. astral: '[\uD840-\uD868][\uDC00-\uDFFF]|\uD869[\uDC00-\uDEDF]'
  159. }, {
  160. name: 'InCJK_Unified_Ideographs_Extension_C',
  161. astral: '\uD869[\uDF00-\uDFFF]|[\uD86A-\uD86C][\uDC00-\uDFFF]|\uD86D[\uDC00-\uDF3F]'
  162. }, {
  163. name: 'InCJK_Unified_Ideographs_Extension_D',
  164. astral: '\uD86D[\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1F]'
  165. }, {
  166. name: 'InCJK_Unified_Ideographs_Extension_E',
  167. astral: '\uD86E[\uDC20-\uDFFF]|[\uD86F-\uD872][\uDC00-\uDFFF]|\uD873[\uDC00-\uDEAF]'
  168. }, {
  169. name: 'InCarian',
  170. astral: '\uD800[\uDEA0-\uDEDF]'
  171. }, {
  172. name: 'InCaucasian_Albanian',
  173. astral: '\uD801[\uDD30-\uDD6F]'
  174. }, {
  175. name: 'InChakma',
  176. astral: '\uD804[\uDD00-\uDD4F]'
  177. }, {
  178. name: 'InCham',
  179. bmp: '\uAA00-\uAA5F'
  180. }, {
  181. name: 'InCherokee',
  182. bmp: '\u13A0-\u13FF'
  183. }, {
  184. name: 'InCherokee_Supplement',
  185. bmp: '\uAB70-\uABBF'
  186. }, {
  187. name: 'InCombining_Diacritical_Marks',
  188. bmp: '\u0300-\u036F'
  189. }, {
  190. name: 'InCombining_Diacritical_Marks_Extended',
  191. bmp: '\u1AB0-\u1AFF'
  192. }, {
  193. name: 'InCombining_Diacritical_Marks_Supplement',
  194. bmp: '\u1DC0-\u1DFF'
  195. }, {
  196. name: 'InCombining_Diacritical_Marks_for_Symbols',
  197. bmp: '\u20D0-\u20FF'
  198. }, {
  199. name: 'InCombining_Half_Marks',
  200. bmp: '\uFE20-\uFE2F'
  201. }, {
  202. name: 'InCommon_Indic_Number_Forms',
  203. bmp: '\uA830-\uA83F'
  204. }, {
  205. name: 'InControl_Pictures',
  206. bmp: '\u2400-\u243F'
  207. }, {
  208. name: 'InCoptic',
  209. bmp: '\u2C80-\u2CFF'
  210. }, {
  211. name: 'InCoptic_Epact_Numbers',
  212. astral: '\uD800[\uDEE0-\uDEFF]'
  213. }, {
  214. name: 'InCounting_Rod_Numerals',
  215. astral: '\uD834[\uDF60-\uDF7F]'
  216. }, {
  217. name: 'InCuneiform',
  218. astral: '\uD808[\uDC00-\uDFFF]'
  219. }, {
  220. name: 'InCuneiform_Numbers_and_Punctuation',
  221. astral: '\uD809[\uDC00-\uDC7F]'
  222. }, {
  223. name: 'InCurrency_Symbols',
  224. bmp: '\u20A0-\u20CF'
  225. }, {
  226. name: 'InCypriot_Syllabary',
  227. astral: '\uD802[\uDC00-\uDC3F]'
  228. }, {
  229. name: 'InCyrillic',
  230. bmp: '\u0400-\u04FF'
  231. }, {
  232. name: 'InCyrillic_Extended_A',
  233. bmp: '\u2DE0-\u2DFF'
  234. }, {
  235. name: 'InCyrillic_Extended_B',
  236. bmp: '\uA640-\uA69F'
  237. }, {
  238. name: 'InCyrillic_Extended_C',
  239. bmp: '\u1C80-\u1C8F'
  240. }, {
  241. name: 'InCyrillic_Supplement',
  242. bmp: '\u0500-\u052F'
  243. }, {
  244. name: 'InDeseret',
  245. astral: '\uD801[\uDC00-\uDC4F]'
  246. }, {
  247. name: 'InDevanagari',
  248. bmp: '\u0900-\u097F'
  249. }, {
  250. name: 'InDevanagari_Extended',
  251. bmp: '\uA8E0-\uA8FF'
  252. }, {
  253. name: 'InDingbats',
  254. bmp: '\u2700-\u27BF'
  255. }, {
  256. name: 'InDomino_Tiles',
  257. astral: '\uD83C[\uDC30-\uDC9F]'
  258. }, {
  259. name: 'InDuployan',
  260. astral: '\uD82F[\uDC00-\uDC9F]'
  261. }, {
  262. name: 'InEarly_Dynastic_Cuneiform',
  263. astral: '\uD809[\uDC80-\uDD4F]'
  264. }, {
  265. name: 'InEgyptian_Hieroglyphs',
  266. astral: '\uD80C[\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F]'
  267. }, {
  268. name: 'InElbasan',
  269. astral: '\uD801[\uDD00-\uDD2F]'
  270. }, {
  271. name: 'InEmoticons',
  272. astral: '\uD83D[\uDE00-\uDE4F]'
  273. }, {
  274. name: 'InEnclosed_Alphanumeric_Supplement',
  275. astral: '\uD83C[\uDD00-\uDDFF]'
  276. }, {
  277. name: 'InEnclosed_Alphanumerics',
  278. bmp: '\u2460-\u24FF'
  279. }, {
  280. name: 'InEnclosed_CJK_Letters_and_Months',
  281. bmp: '\u3200-\u32FF'
  282. }, {
  283. name: 'InEnclosed_Ideographic_Supplement',
  284. astral: '\uD83C[\uDE00-\uDEFF]'
  285. }, {
  286. name: 'InEthiopic',
  287. bmp: '\u1200-\u137F'
  288. }, {
  289. name: 'InEthiopic_Extended',
  290. bmp: '\u2D80-\u2DDF'
  291. }, {
  292. name: 'InEthiopic_Extended_A',
  293. bmp: '\uAB00-\uAB2F'
  294. }, {
  295. name: 'InEthiopic_Supplement',
  296. bmp: '\u1380-\u139F'
  297. }, {
  298. name: 'InGeneral_Punctuation',
  299. bmp: '\u2000-\u206F'
  300. }, {
  301. name: 'InGeometric_Shapes',
  302. bmp: '\u25A0-\u25FF'
  303. }, {
  304. name: 'InGeometric_Shapes_Extended',
  305. astral: '\uD83D[\uDF80-\uDFFF]'
  306. }, {
  307. name: 'InGeorgian',
  308. bmp: '\u10A0-\u10FF'
  309. }, {
  310. name: 'InGeorgian_Supplement',
  311. bmp: '\u2D00-\u2D2F'
  312. }, {
  313. name: 'InGlagolitic',
  314. bmp: '\u2C00-\u2C5F'
  315. }, {
  316. name: 'InGlagolitic_Supplement',
  317. astral: '\uD838[\uDC00-\uDC2F]'
  318. }, {
  319. name: 'InGothic',
  320. astral: '\uD800[\uDF30-\uDF4F]'
  321. }, {
  322. name: 'InGrantha',
  323. astral: '\uD804[\uDF00-\uDF7F]'
  324. }, {
  325. name: 'InGreek_Extended',
  326. bmp: '\u1F00-\u1FFF'
  327. }, {
  328. name: 'InGreek_and_Coptic',
  329. bmp: '\u0370-\u03FF'
  330. }, {
  331. name: 'InGujarati',
  332. bmp: '\u0A80-\u0AFF'
  333. }, {
  334. name: 'InGurmukhi',
  335. bmp: '\u0A00-\u0A7F'
  336. }, {
  337. name: 'InHalfwidth_and_Fullwidth_Forms',
  338. bmp: '\uFF00-\uFFEF'
  339. }, {
  340. name: 'InHangul_Compatibility_Jamo',
  341. bmp: '\u3130-\u318F'
  342. }, {
  343. name: 'InHangul_Jamo',
  344. bmp: '\u1100-\u11FF'
  345. }, {
  346. name: 'InHangul_Jamo_Extended_A',
  347. bmp: '\uA960-\uA97F'
  348. }, {
  349. name: 'InHangul_Jamo_Extended_B',
  350. bmp: '\uD7B0-\uD7FF'
  351. }, {
  352. name: 'InHangul_Syllables',
  353. bmp: '\uAC00-\uD7AF'
  354. }, {
  355. name: 'InHanunoo',
  356. bmp: '\u1720-\u173F'
  357. }, {
  358. name: 'InHatran',
  359. astral: '\uD802[\uDCE0-\uDCFF]'
  360. }, {
  361. name: 'InHebrew',
  362. bmp: '\u0590-\u05FF'
  363. }, {
  364. name: 'InHigh_Private_Use_Surrogates',
  365. bmp: '\uDB80-\uDBFF'
  366. }, {
  367. name: 'InHigh_Surrogates',
  368. bmp: '\uD800-\uDB7F'
  369. }, {
  370. name: 'InHiragana',
  371. bmp: '\u3040-\u309F'
  372. }, {
  373. name: 'InIPA_Extensions',
  374. bmp: '\u0250-\u02AF'
  375. }, {
  376. name: 'InIdeographic_Description_Characters',
  377. bmp: '\u2FF0-\u2FFF'
  378. }, {
  379. name: 'InIdeographic_Symbols_and_Punctuation',
  380. astral: '\uD81B[\uDFE0-\uDFFF]'
  381. }, {
  382. name: 'InImperial_Aramaic',
  383. astral: '\uD802[\uDC40-\uDC5F]'
  384. }, {
  385. name: 'InInscriptional_Pahlavi',
  386. astral: '\uD802[\uDF60-\uDF7F]'
  387. }, {
  388. name: 'InInscriptional_Parthian',
  389. astral: '\uD802[\uDF40-\uDF5F]'
  390. }, {
  391. name: 'InJavanese',
  392. bmp: '\uA980-\uA9DF'
  393. }, {
  394. name: 'InKaithi',
  395. astral: '\uD804[\uDC80-\uDCCF]'
  396. }, {
  397. name: 'InKana_Supplement',
  398. astral: '\uD82C[\uDC00-\uDCFF]'
  399. }, {
  400. name: 'InKanbun',
  401. bmp: '\u3190-\u319F'
  402. }, {
  403. name: 'InKangxi_Radicals',
  404. bmp: '\u2F00-\u2FDF'
  405. }, {
  406. name: 'InKannada',
  407. bmp: '\u0C80-\u0CFF'
  408. }, {
  409. name: 'InKatakana',
  410. bmp: '\u30A0-\u30FF'
  411. }, {
  412. name: 'InKatakana_Phonetic_Extensions',
  413. bmp: '\u31F0-\u31FF'
  414. }, {
  415. name: 'InKayah_Li',
  416. bmp: '\uA900-\uA92F'
  417. }, {
  418. name: 'InKharoshthi',
  419. astral: '\uD802[\uDE00-\uDE5F]'
  420. }, {
  421. name: 'InKhmer',
  422. bmp: '\u1780-\u17FF'
  423. }, {
  424. name: 'InKhmer_Symbols',
  425. bmp: '\u19E0-\u19FF'
  426. }, {
  427. name: 'InKhojki',
  428. astral: '\uD804[\uDE00-\uDE4F]'
  429. }, {
  430. name: 'InKhudawadi',
  431. astral: '\uD804[\uDEB0-\uDEFF]'
  432. }, {
  433. name: 'InLao',
  434. bmp: '\u0E80-\u0EFF'
  435. }, {
  436. name: 'InLatin_Extended_Additional',
  437. bmp: '\u1E00-\u1EFF'
  438. }, {
  439. name: 'InLatin_Extended_A',
  440. bmp: '\u0100-\u017F'
  441. }, {
  442. name: 'InLatin_Extended_B',
  443. bmp: '\u0180-\u024F'
  444. }, {
  445. name: 'InLatin_Extended_C',
  446. bmp: '\u2C60-\u2C7F'
  447. }, {
  448. name: 'InLatin_Extended_D',
  449. bmp: '\uA720-\uA7FF'
  450. }, {
  451. name: 'InLatin_Extended_E',
  452. bmp: '\uAB30-\uAB6F'
  453. }, {
  454. name: 'InLatin_1_Supplement',
  455. bmp: '\x80-\xFF'
  456. }, {
  457. name: 'InLepcha',
  458. bmp: '\u1C00-\u1C4F'
  459. }, {
  460. name: 'InLetterlike_Symbols',
  461. bmp: '\u2100-\u214F'
  462. }, {
  463. name: 'InLimbu',
  464. bmp: '\u1900-\u194F'
  465. }, {
  466. name: 'InLinear_A',
  467. astral: '\uD801[\uDE00-\uDF7F]'
  468. }, {
  469. name: 'InLinear_B_Ideograms',
  470. astral: '\uD800[\uDC80-\uDCFF]'
  471. }, {
  472. name: 'InLinear_B_Syllabary',
  473. astral: '\uD800[\uDC00-\uDC7F]'
  474. }, {
  475. name: 'InLisu',
  476. bmp: '\uA4D0-\uA4FF'
  477. }, {
  478. name: 'InLow_Surrogates',
  479. bmp: '\uDC00-\uDFFF'
  480. }, {
  481. name: 'InLycian',
  482. astral: '\uD800[\uDE80-\uDE9F]'
  483. }, {
  484. name: 'InLydian',
  485. astral: '\uD802[\uDD20-\uDD3F]'
  486. }, {
  487. name: 'InMahajani',
  488. astral: '\uD804[\uDD50-\uDD7F]'
  489. }, {
  490. name: 'InMahjong_Tiles',
  491. astral: '\uD83C[\uDC00-\uDC2F]'
  492. }, {
  493. name: 'InMalayalam',
  494. bmp: '\u0D00-\u0D7F'
  495. }, {
  496. name: 'InMandaic',
  497. bmp: '\u0840-\u085F'
  498. }, {
  499. name: 'InManichaean',
  500. astral: '\uD802[\uDEC0-\uDEFF]'
  501. }, {
  502. name: 'InMarchen',
  503. astral: '\uD807[\uDC70-\uDCBF]'
  504. }, {
  505. name: 'InMathematical_Alphanumeric_Symbols',
  506. astral: '\uD835[\uDC00-\uDFFF]'
  507. }, {
  508. name: 'InMathematical_Operators',
  509. bmp: '\u2200-\u22FF'
  510. }, {
  511. name: 'InMeetei_Mayek',
  512. bmp: '\uABC0-\uABFF'
  513. }, {
  514. name: 'InMeetei_Mayek_Extensions',
  515. bmp: '\uAAE0-\uAAFF'
  516. }, {
  517. name: 'InMende_Kikakui',
  518. astral: '\uD83A[\uDC00-\uDCDF]'
  519. }, {
  520. name: 'InMeroitic_Cursive',
  521. astral: '\uD802[\uDDA0-\uDDFF]'
  522. }, {
  523. name: 'InMeroitic_Hieroglyphs',
  524. astral: '\uD802[\uDD80-\uDD9F]'
  525. }, {
  526. name: 'InMiao',
  527. astral: '\uD81B[\uDF00-\uDF9F]'
  528. }, {
  529. name: 'InMiscellaneous_Mathematical_Symbols_A',
  530. bmp: '\u27C0-\u27EF'
  531. }, {
  532. name: 'InMiscellaneous_Mathematical_Symbols_B',
  533. bmp: '\u2980-\u29FF'
  534. }, {
  535. name: 'InMiscellaneous_Symbols',
  536. bmp: '\u2600-\u26FF'
  537. }, {
  538. name: 'InMiscellaneous_Symbols_and_Arrows',
  539. bmp: '\u2B00-\u2BFF'
  540. }, {
  541. name: 'InMiscellaneous_Symbols_and_Pictographs',
  542. astral: '\uD83C[\uDF00-\uDFFF]|\uD83D[\uDC00-\uDDFF]'
  543. }, {
  544. name: 'InMiscellaneous_Technical',
  545. bmp: '\u2300-\u23FF'
  546. }, {
  547. name: 'InModi',
  548. astral: '\uD805[\uDE00-\uDE5F]'
  549. }, {
  550. name: 'InModifier_Tone_Letters',
  551. bmp: '\uA700-\uA71F'
  552. }, {
  553. name: 'InMongolian',
  554. bmp: '\u1800-\u18AF'
  555. }, {
  556. name: 'InMongolian_Supplement',
  557. astral: '\uD805[\uDE60-\uDE7F]'
  558. }, {
  559. name: 'InMro',
  560. astral: '\uD81A[\uDE40-\uDE6F]'
  561. }, {
  562. name: 'InMultani',
  563. astral: '\uD804[\uDE80-\uDEAF]'
  564. }, {
  565. name: 'InMusical_Symbols',
  566. astral: '\uD834[\uDD00-\uDDFF]'
  567. }, {
  568. name: 'InMyanmar',
  569. bmp: '\u1000-\u109F'
  570. }, {
  571. name: 'InMyanmar_Extended_A',
  572. bmp: '\uAA60-\uAA7F'
  573. }, {
  574. name: 'InMyanmar_Extended_B',
  575. bmp: '\uA9E0-\uA9FF'
  576. }, {
  577. name: 'InNKo',
  578. bmp: '\u07C0-\u07FF'
  579. }, {
  580. name: 'InNabataean',
  581. astral: '\uD802[\uDC80-\uDCAF]'
  582. }, {
  583. name: 'InNew_Tai_Lue',
  584. bmp: '\u1980-\u19DF'
  585. }, {
  586. name: 'InNewa',
  587. astral: '\uD805[\uDC00-\uDC7F]'
  588. }, {
  589. name: 'InNumber_Forms',
  590. bmp: '\u2150-\u218F'
  591. }, {
  592. name: 'InOgham',
  593. bmp: '\u1680-\u169F'
  594. }, {
  595. name: 'InOl_Chiki',
  596. bmp: '\u1C50-\u1C7F'
  597. }, {
  598. name: 'InOld_Hungarian',
  599. astral: '\uD803[\uDC80-\uDCFF]'
  600. }, {
  601. name: 'InOld_Italic',
  602. astral: '\uD800[\uDF00-\uDF2F]'
  603. }, {
  604. name: 'InOld_North_Arabian',
  605. astral: '\uD802[\uDE80-\uDE9F]'
  606. }, {
  607. name: 'InOld_Permic',
  608. astral: '\uD800[\uDF50-\uDF7F]'
  609. }, {
  610. name: 'InOld_Persian',
  611. astral: '\uD800[\uDFA0-\uDFDF]'
  612. }, {
  613. name: 'InOld_South_Arabian',
  614. astral: '\uD802[\uDE60-\uDE7F]'
  615. }, {
  616. name: 'InOld_Turkic',
  617. astral: '\uD803[\uDC00-\uDC4F]'
  618. }, {
  619. name: 'InOptical_Character_Recognition',
  620. bmp: '\u2440-\u245F'
  621. }, {
  622. name: 'InOriya',
  623. bmp: '\u0B00-\u0B7F'
  624. }, {
  625. name: 'InOrnamental_Dingbats',
  626. astral: '\uD83D[\uDE50-\uDE7F]'
  627. }, {
  628. name: 'InOsage',
  629. astral: '\uD801[\uDCB0-\uDCFF]'
  630. }, {
  631. name: 'InOsmanya',
  632. astral: '\uD801[\uDC80-\uDCAF]'
  633. }, {
  634. name: 'InPahawh_Hmong',
  635. astral: '\uD81A[\uDF00-\uDF8F]'
  636. }, {
  637. name: 'InPalmyrene',
  638. astral: '\uD802[\uDC60-\uDC7F]'
  639. }, {
  640. name: 'InPau_Cin_Hau',
  641. astral: '\uD806[\uDEC0-\uDEFF]'
  642. }, {
  643. name: 'InPhags_pa',
  644. bmp: '\uA840-\uA87F'
  645. }, {
  646. name: 'InPhaistos_Disc',
  647. astral: '\uD800[\uDDD0-\uDDFF]'
  648. }, {
  649. name: 'InPhoenician',
  650. astral: '\uD802[\uDD00-\uDD1F]'
  651. }, {
  652. name: 'InPhonetic_Extensions',
  653. bmp: '\u1D00-\u1D7F'
  654. }, {
  655. name: 'InPhonetic_Extensions_Supplement',
  656. bmp: '\u1D80-\u1DBF'
  657. }, {
  658. name: 'InPlaying_Cards',
  659. astral: '\uD83C[\uDCA0-\uDCFF]'
  660. }, {
  661. name: 'InPrivate_Use_Area',
  662. bmp: '\uE000-\uF8FF'
  663. }, {
  664. name: 'InPsalter_Pahlavi',
  665. astral: '\uD802[\uDF80-\uDFAF]'
  666. }, {
  667. name: 'InRejang',
  668. bmp: '\uA930-\uA95F'
  669. }, {
  670. name: 'InRumi_Numeral_Symbols',
  671. astral: '\uD803[\uDE60-\uDE7F]'
  672. }, {
  673. name: 'InRunic',
  674. bmp: '\u16A0-\u16FF'
  675. }, {
  676. name: 'InSamaritan',
  677. bmp: '\u0800-\u083F'
  678. }, {
  679. name: 'InSaurashtra',
  680. bmp: '\uA880-\uA8DF'
  681. }, {
  682. name: 'InSharada',
  683. astral: '\uD804[\uDD80-\uDDDF]'
  684. }, {
  685. name: 'InShavian',
  686. astral: '\uD801[\uDC50-\uDC7F]'
  687. }, {
  688. name: 'InShorthand_Format_Controls',
  689. astral: '\uD82F[\uDCA0-\uDCAF]'
  690. }, {
  691. name: 'InSiddham',
  692. astral: '\uD805[\uDD80-\uDDFF]'
  693. }, {
  694. name: 'InSinhala',
  695. bmp: '\u0D80-\u0DFF'
  696. }, {
  697. name: 'InSinhala_Archaic_Numbers',
  698. astral: '\uD804[\uDDE0-\uDDFF]'
  699. }, {
  700. name: 'InSmall_Form_Variants',
  701. bmp: '\uFE50-\uFE6F'
  702. }, {
  703. name: 'InSora_Sompeng',
  704. astral: '\uD804[\uDCD0-\uDCFF]'
  705. }, {
  706. name: 'InSpacing_Modifier_Letters',
  707. bmp: '\u02B0-\u02FF'
  708. }, {
  709. name: 'InSpecials',
  710. bmp: '\uFFF0-\uFFFF'
  711. }, {
  712. name: 'InSundanese',
  713. bmp: '\u1B80-\u1BBF'
  714. }, {
  715. name: 'InSundanese_Supplement',
  716. bmp: '\u1CC0-\u1CCF'
  717. }, {
  718. name: 'InSuperscripts_and_Subscripts',
  719. bmp: '\u2070-\u209F'
  720. }, {
  721. name: 'InSupplemental_Arrows_A',
  722. bmp: '\u27F0-\u27FF'
  723. }, {
  724. name: 'InSupplemental_Arrows_B',
  725. bmp: '\u2900-\u297F'
  726. }, {
  727. name: 'InSupplemental_Arrows_C',
  728. astral: '\uD83E[\uDC00-\uDCFF]'
  729. }, {
  730. name: 'InSupplemental_Mathematical_Operators',
  731. bmp: '\u2A00-\u2AFF'
  732. }, {
  733. name: 'InSupplemental_Punctuation',
  734. bmp: '\u2E00-\u2E7F'
  735. }, {
  736. name: 'InSupplemental_Symbols_and_Pictographs',
  737. astral: '\uD83E[\uDD00-\uDDFF]'
  738. }, {
  739. name: 'InSupplementary_Private_Use_Area_A',
  740. astral: '[\uDB80-\uDBBF][\uDC00-\uDFFF]'
  741. }, {
  742. name: 'InSupplementary_Private_Use_Area_B',
  743. astral: '[\uDBC0-\uDBFF][\uDC00-\uDFFF]'
  744. }, {
  745. name: 'InSutton_SignWriting',
  746. astral: '\uD836[\uDC00-\uDEAF]'
  747. }, {
  748. name: 'InSyloti_Nagri',
  749. bmp: '\uA800-\uA82F'
  750. }, {
  751. name: 'InSyriac',
  752. bmp: '\u0700-\u074F'
  753. }, {
  754. name: 'InTagalog',
  755. bmp: '\u1700-\u171F'
  756. }, {
  757. name: 'InTagbanwa',
  758. bmp: '\u1760-\u177F'
  759. }, {
  760. name: 'InTags',
  761. astral: '\uDB40[\uDC00-\uDC7F]'
  762. }, {
  763. name: 'InTai_Le',
  764. bmp: '\u1950-\u197F'
  765. }, {
  766. name: 'InTai_Tham',
  767. bmp: '\u1A20-\u1AAF'
  768. }, {
  769. name: 'InTai_Viet',
  770. bmp: '\uAA80-\uAADF'
  771. }, {
  772. name: 'InTai_Xuan_Jing_Symbols',
  773. astral: '\uD834[\uDF00-\uDF5F]'
  774. }, {
  775. name: 'InTakri',
  776. astral: '\uD805[\uDE80-\uDECF]'
  777. }, {
  778. name: 'InTamil',
  779. bmp: '\u0B80-\u0BFF'
  780. }, {
  781. name: 'InTangut',
  782. astral: '[\uD81C-\uD821][\uDC00-\uDFFF]'
  783. }, {
  784. name: 'InTangut_Components',
  785. astral: '\uD822[\uDC00-\uDEFF]'
  786. }, {
  787. name: 'InTelugu',
  788. bmp: '\u0C00-\u0C7F'
  789. }, {
  790. name: 'InThaana',
  791. bmp: '\u0780-\u07BF'
  792. }, {
  793. name: 'InThai',
  794. bmp: '\u0E00-\u0E7F'
  795. }, {
  796. name: 'InTibetan',
  797. bmp: '\u0F00-\u0FFF'
  798. }, {
  799. name: 'InTifinagh',
  800. bmp: '\u2D30-\u2D7F'
  801. }, {
  802. name: 'InTirhuta',
  803. astral: '\uD805[\uDC80-\uDCDF]'
  804. }, {
  805. name: 'InTransport_and_Map_Symbols',
  806. astral: '\uD83D[\uDE80-\uDEFF]'
  807. }, {
  808. name: 'InUgaritic',
  809. astral: '\uD800[\uDF80-\uDF9F]'
  810. }, {
  811. name: 'InUnified_Canadian_Aboriginal_Syllabics',
  812. bmp: '\u1400-\u167F'
  813. }, {
  814. name: 'InUnified_Canadian_Aboriginal_Syllabics_Extended',
  815. bmp: '\u18B0-\u18FF'
  816. }, {
  817. name: 'InVai',
  818. bmp: '\uA500-\uA63F'
  819. }, {
  820. name: 'InVariation_Selectors',
  821. bmp: '\uFE00-\uFE0F'
  822. }, {
  823. name: 'InVariation_Selectors_Supplement',
  824. astral: '\uDB40[\uDD00-\uDDEF]'
  825. }, {
  826. name: 'InVedic_Extensions',
  827. bmp: '\u1CD0-\u1CFF'
  828. }, {
  829. name: 'InVertical_Forms',
  830. bmp: '\uFE10-\uFE1F'
  831. }, {
  832. name: 'InWarang_Citi',
  833. astral: '\uD806[\uDCA0-\uDCFF]'
  834. }, {
  835. name: 'InYi_Radicals',
  836. bmp: '\uA490-\uA4CF'
  837. }, {
  838. name: 'InYi_Syllables',
  839. bmp: '\uA000-\uA48F'
  840. }, {
  841. name: 'InYijing_Hexagram_Symbols',
  842. bmp: '\u4DC0-\u4DFF'
  843. }]);
  844. };
  845. module.exports = exports['default'];