guard-sass-lint 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4080) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -1
  3. data/Rakefile +1 -6
  4. data/guard-sass-lint.gemspec +2 -0
  5. data/lib/guard/sass/lint/version.rb +1 -1
  6. data/node_modules/.bin/sass-lint +1 -0
  7. data/node_modules/.yarn-integrity +1 -0
  8. data/node_modules/acorn-jsx/LICENSE +19 -0
  9. data/node_modules/acorn-jsx/README.md +64 -0
  10. data/node_modules/acorn-jsx/index.js +3 -0
  11. data/node_modules/acorn-jsx/inject.js +433 -0
  12. data/node_modules/acorn-jsx/node_modules/.bin/acorn +1 -0
  13. data/node_modules/acorn-jsx/node_modules/acorn/.editorconfig +7 -0
  14. data/node_modules/acorn-jsx/node_modules/acorn/.gitattributes +1 -0
  15. data/node_modules/acorn-jsx/node_modules/acorn/.npmignore +3 -0
  16. data/node_modules/acorn-jsx/node_modules/acorn/.tern-project +6 -0
  17. data/node_modules/acorn-jsx/node_modules/acorn/.travis.yml +7 -0
  18. data/node_modules/acorn-jsx/node_modules/acorn/AUTHORS +59 -0
  19. data/node_modules/acorn-jsx/node_modules/acorn/CHANGELOG.md +159 -0
  20. data/node_modules/acorn-jsx/node_modules/acorn/LICENSE +19 -0
  21. data/node_modules/acorn-jsx/node_modules/acorn/README.md +407 -0
  22. data/node_modules/acorn-jsx/node_modules/acorn/bin/acorn +65 -0
  23. data/node_modules/acorn-jsx/node_modules/acorn/bin/generate-identifier-regex.js +55 -0
  24. data/node_modules/acorn-jsx/node_modules/acorn/bin/update_authors.sh +6 -0
  25. data/node_modules/acorn-jsx/node_modules/acorn/dist/.keep +0 -0
  26. data/node_modules/acorn-jsx/node_modules/acorn/dist/acorn.es.js +3112 -0
  27. data/node_modules/acorn-jsx/node_modules/acorn/dist/acorn.js +3142 -0
  28. data/node_modules/acorn-jsx/node_modules/acorn/dist/acorn_loose.es.js +1261 -0
  29. data/node_modules/acorn-jsx/node_modules/acorn/dist/acorn_loose.js +1273 -0
  30. data/node_modules/acorn-jsx/node_modules/acorn/dist/walk.es.js +342 -0
  31. data/node_modules/acorn-jsx/node_modules/acorn/dist/walk.js +360 -0
  32. data/node_modules/acorn-jsx/node_modules/acorn/package.json +46 -0
  33. data/node_modules/acorn-jsx/node_modules/acorn/rollup/config.bin.js +15 -0
  34. data/node_modules/acorn-jsx/node_modules/acorn/rollup/config.loose.js +20 -0
  35. data/node_modules/acorn-jsx/node_modules/acorn/rollup/config.main.js +11 -0
  36. data/node_modules/acorn-jsx/node_modules/acorn/rollup/config.walk.js +11 -0
  37. data/node_modules/acorn-jsx/node_modules/acorn/src/bin/acorn.js +58 -0
  38. data/node_modules/acorn-jsx/node_modules/acorn/src/expression.js +701 -0
  39. data/node_modules/acorn-jsx/node_modules/acorn/src/identifier.js +82 -0
  40. data/node_modules/acorn-jsx/node_modules/acorn/src/index.js +67 -0
  41. data/node_modules/acorn-jsx/node_modules/acorn/src/location.js +26 -0
  42. data/node_modules/acorn-jsx/node_modules/acorn/src/locutil.js +42 -0
  43. data/node_modules/acorn-jsx/node_modules/acorn/src/loose/expression.js +514 -0
  44. data/node_modules/acorn-jsx/node_modules/acorn/src/loose/index.js +50 -0
  45. data/node_modules/acorn-jsx/node_modules/acorn/src/loose/parseutil.js +1 -0
  46. data/node_modules/acorn-jsx/node_modules/acorn/src/loose/state.js +160 -0
  47. data/node_modules/acorn-jsx/node_modules/acorn/src/loose/statement.js +425 -0
  48. data/node_modules/acorn-jsx/node_modules/acorn/src/loose/tokenize.js +108 -0
  49. data/node_modules/acorn-jsx/node_modules/acorn/src/lval.js +216 -0
  50. data/node_modules/acorn-jsx/node_modules/acorn/src/node.js +50 -0
  51. data/node_modules/acorn-jsx/node_modules/acorn/src/options.js +121 -0
  52. data/node_modules/acorn-jsx/node_modules/acorn/src/parseutil.js +109 -0
  53. data/node_modules/acorn-jsx/node_modules/acorn/src/state.js +104 -0
  54. data/node_modules/acorn-jsx/node_modules/acorn/src/statement.js +654 -0
  55. data/node_modules/acorn-jsx/node_modules/acorn/src/tokencontext.js +110 -0
  56. data/node_modules/acorn-jsx/node_modules/acorn/src/tokenize.js +696 -0
  57. data/node_modules/acorn-jsx/node_modules/acorn/src/tokentype.js +147 -0
  58. data/node_modules/acorn-jsx/node_modules/acorn/src/util.js +9 -0
  59. data/node_modules/acorn-jsx/node_modules/acorn/src/walk/index.js +342 -0
  60. data/node_modules/acorn-jsx/node_modules/acorn/src/whitespace.js +13 -0
  61. data/node_modules/acorn-jsx/package.json +28 -0
  62. data/node_modules/acorn-jsx/xhtml.js +255 -0
  63. data/node_modules/acorn/.npmignore +10 -0
  64. data/node_modules/acorn/AUTHORS +60 -0
  65. data/node_modules/acorn/CHANGELOG.md +222 -0
  66. data/node_modules/acorn/LICENSE +19 -0
  67. data/node_modules/acorn/README.md +408 -0
  68. data/node_modules/acorn/bin/acorn +67 -0
  69. data/node_modules/acorn/dist/.keep +0 -0
  70. data/node_modules/acorn/dist/acorn.es.js +3380 -0
  71. data/node_modules/acorn/dist/acorn.js +3411 -0
  72. data/node_modules/acorn/dist/acorn_loose.es.js +1360 -0
  73. data/node_modules/acorn/dist/acorn_loose.js +1370 -0
  74. data/node_modules/acorn/dist/walk.es.js +342 -0
  75. data/node_modules/acorn/dist/walk.js +360 -0
  76. data/node_modules/acorn/package.json +46 -0
  77. data/node_modules/acorn/src/bin/acorn.js +60 -0
  78. data/node_modules/acorn/src/expression.js +798 -0
  79. data/node_modules/acorn/src/identifier.js +81 -0
  80. data/node_modules/acorn/src/index.js +77 -0
  81. data/node_modules/acorn/src/location.js +26 -0
  82. data/node_modules/acorn/src/locutil.js +42 -0
  83. data/node_modules/acorn/src/loose/expression.js +562 -0
  84. data/node_modules/acorn/src/loose/index.js +48 -0
  85. data/node_modules/acorn/src/loose/parseutil.js +1 -0
  86. data/node_modules/acorn/src/loose/state.js +161 -0
  87. data/node_modules/acorn/src/loose/statement.js +446 -0
  88. data/node_modules/acorn/src/loose/tokenize.js +108 -0
  89. data/node_modules/acorn/src/lval.js +219 -0
  90. data/node_modules/acorn/src/node.js +50 -0
  91. data/node_modules/acorn/src/options.js +128 -0
  92. data/node_modules/acorn/src/parseutil.js +117 -0
  93. data/node_modules/acorn/src/state.js +110 -0
  94. data/node_modules/acorn/src/statement.js +745 -0
  95. data/node_modules/acorn/src/tokencontext.js +110 -0
  96. data/node_modules/acorn/src/tokenize.js +697 -0
  97. data/node_modules/acorn/src/tokentype.js +147 -0
  98. data/node_modules/acorn/src/util.js +9 -0
  99. data/node_modules/acorn/src/walk/index.js +342 -0
  100. data/node_modules/acorn/src/whitespace.js +13 -0
  101. data/node_modules/ajv-keywords/LICENSE +21 -0
  102. data/node_modules/ajv-keywords/README.md +443 -0
  103. data/node_modules/ajv-keywords/index.js +35 -0
  104. data/node_modules/ajv-keywords/keywords/_formatLimit.js +92 -0
  105. data/node_modules/ajv-keywords/keywords/deepProperties.js +55 -0
  106. data/node_modules/ajv-keywords/keywords/deepRequired.js +57 -0
  107. data/node_modules/ajv-keywords/keywords/dot/_formatLimit.jst +116 -0
  108. data/node_modules/ajv-keywords/keywords/dot/patternRequired.jst +28 -0
  109. data/node_modules/ajv-keywords/keywords/dot/switch.jst +73 -0
  110. data/node_modules/ajv-keywords/keywords/dotjs/README.md +3 -0
  111. data/node_modules/ajv-keywords/keywords/dotjs/_formatLimit.js +176 -0
  112. data/node_modules/ajv-keywords/keywords/dotjs/patternRequired.js +52 -0
  113. data/node_modules/ajv-keywords/keywords/dotjs/switch.js +129 -0
  114. data/node_modules/ajv-keywords/keywords/dynamicDefaults.js +68 -0
  115. data/node_modules/ajv-keywords/keywords/formatMaximum.js +3 -0
  116. data/node_modules/ajv-keywords/keywords/formatMinimum.js +3 -0
  117. data/node_modules/ajv-keywords/keywords/if.js +21 -0
  118. data/node_modules/ajv-keywords/keywords/index.js +18 -0
  119. data/node_modules/ajv-keywords/keywords/instanceof.js +54 -0
  120. data/node_modules/ajv-keywords/keywords/patternRequired.js +24 -0
  121. data/node_modules/ajv-keywords/keywords/prohibited.js +25 -0
  122. data/node_modules/ajv-keywords/keywords/propertyNames.js +51 -0
  123. data/node_modules/ajv-keywords/keywords/range.js +39 -0
  124. data/node_modules/ajv-keywords/keywords/regexp.js +36 -0
  125. data/node_modules/ajv-keywords/keywords/switch.js +39 -0
  126. data/node_modules/ajv-keywords/keywords/typeof.js +32 -0
  127. data/node_modules/ajv-keywords/package.json +51 -0
  128. data/node_modules/ajv/.tonic_example.js +20 -0
  129. data/node_modules/ajv/LICENSE +22 -0
  130. data/node_modules/ajv/README.md +1211 -0
  131. data/node_modules/ajv/dist/ajv.bundle.js +8041 -0
  132. data/node_modules/ajv/dist/ajv.min.js +6 -0
  133. data/node_modules/ajv/dist/ajv.min.js.map +1 -0
  134. data/node_modules/ajv/dist/nodent.min.js +8 -0
  135. data/node_modules/ajv/dist/regenerator.min.js +36 -0
  136. data/node_modules/ajv/lib/ajv.d.ts +282 -0
  137. data/node_modules/ajv/lib/ajv.js +420 -0
  138. data/node_modules/ajv/lib/async.js +218 -0
  139. data/node_modules/ajv/lib/cache.js +26 -0
  140. data/node_modules/ajv/lib/compile/_rules.js +28 -0
  141. data/node_modules/ajv/lib/compile/equal.js +45 -0
  142. data/node_modules/ajv/lib/compile/formats.js +164 -0
  143. data/node_modules/ajv/lib/compile/index.js +390 -0
  144. data/node_modules/ajv/lib/compile/resolve.js +267 -0
  145. data/node_modules/ajv/lib/compile/rules.js +40 -0
  146. data/node_modules/ajv/lib/compile/schema_obj.js +9 -0
  147. data/node_modules/ajv/lib/compile/ucs2length.js +20 -0
  148. data/node_modules/ajv/lib/compile/util.js +257 -0
  149. data/node_modules/ajv/lib/compile/validation_error.js +14 -0
  150. data/node_modules/ajv/lib/dot/_limit.jst +49 -0
  151. data/node_modules/ajv/lib/dot/_limitItems.jst +10 -0
  152. data/node_modules/ajv/lib/dot/_limitLength.jst +10 -0
  153. data/node_modules/ajv/lib/dot/_limitProperties.jst +10 -0
  154. data/node_modules/ajv/lib/dot/allOf.jst +34 -0
  155. data/node_modules/ajv/lib/dot/anyOf.jst +48 -0
  156. data/node_modules/ajv/lib/dot/coerce.def +61 -0
  157. data/node_modules/ajv/lib/dot/custom.jst +188 -0
  158. data/node_modules/ajv/lib/dot/defaults.def +32 -0
  159. data/node_modules/ajv/lib/dot/definitions.def +182 -0
  160. data/node_modules/ajv/lib/dot/dependencies.jst +69 -0
  161. data/node_modules/ajv/lib/dot/enum.jst +30 -0
  162. data/node_modules/ajv/lib/dot/errors.def +185 -0
  163. data/node_modules/ajv/lib/dot/format.jst +100 -0
  164. data/node_modules/ajv/lib/dot/items.jst +101 -0
  165. data/node_modules/ajv/lib/dot/missing.def +34 -0
  166. data/node_modules/ajv/lib/dot/multipleOf.jst +20 -0
  167. data/node_modules/ajv/lib/dot/not.jst +43 -0
  168. data/node_modules/ajv/lib/dot/oneOf.jst +44 -0
  169. data/node_modules/ajv/lib/dot/pattern.jst +14 -0
  170. data/node_modules/ajv/lib/dot/properties.jst +319 -0
  171. data/node_modules/ajv/lib/dot/ref.jst +86 -0
  172. data/node_modules/ajv/lib/dot/required.jst +96 -0
  173. data/node_modules/ajv/lib/dot/uniqueItems.jst +38 -0
  174. data/node_modules/ajv/lib/dot/v5/_formatLimit.jst +116 -0
  175. data/node_modules/ajv/lib/dot/v5/constant.jst +10 -0
  176. data/node_modules/ajv/lib/dot/v5/patternRequired.jst +28 -0
  177. data/node_modules/ajv/lib/dot/v5/switch.jst +73 -0
  178. data/node_modules/ajv/lib/dot/validate.jst +210 -0
  179. data/node_modules/ajv/lib/dotjs/README.md +3 -0
  180. data/node_modules/ajv/lib/dotjs/_formatLimit.js +176 -0
  181. data/node_modules/ajv/lib/dotjs/_limit.js +124 -0
  182. data/node_modules/ajv/lib/dotjs/_limitItems.js +76 -0
  183. data/node_modules/ajv/lib/dotjs/_limitLength.js +81 -0
  184. data/node_modules/ajv/lib/dotjs/_limitProperties.js +76 -0
  185. data/node_modules/ajv/lib/dotjs/allOf.js +43 -0
  186. data/node_modules/ajv/lib/dotjs/anyOf.js +66 -0
  187. data/node_modules/ajv/lib/dotjs/constant.js +53 -0
  188. data/node_modules/ajv/lib/dotjs/custom.js +221 -0
  189. data/node_modules/ajv/lib/dotjs/dependencies.js +148 -0
  190. data/node_modules/ajv/lib/dotjs/enum.js +66 -0
  191. data/node_modules/ajv/lib/dotjs/format.js +139 -0
  192. data/node_modules/ajv/lib/dotjs/items.js +145 -0
  193. data/node_modules/ajv/lib/dotjs/multipleOf.js +77 -0
  194. data/node_modules/ajv/lib/dotjs/not.js +84 -0
  195. data/node_modules/ajv/lib/dotjs/oneOf.js +77 -0
  196. data/node_modules/ajv/lib/dotjs/pattern.js +75 -0
  197. data/node_modules/ajv/lib/dotjs/patternRequired.js +52 -0
  198. data/node_modules/ajv/lib/dotjs/properties.js +446 -0
  199. data/node_modules/ajv/lib/dotjs/ref.js +120 -0
  200. data/node_modules/ajv/lib/dotjs/required.js +250 -0
  201. data/node_modules/ajv/lib/dotjs/switch.js +129 -0
  202. data/node_modules/ajv/lib/dotjs/uniqueItems.js +72 -0
  203. data/node_modules/ajv/lib/dotjs/validate.js +376 -0
  204. data/node_modules/ajv/lib/keyword.js +129 -0
  205. data/node_modules/ajv/lib/refs/json-schema-draft-04.json +150 -0
  206. data/node_modules/ajv/lib/refs/json-schema-v5.json +328 -0
  207. data/node_modules/ajv/lib/v5.js +52 -0
  208. data/node_modules/ajv/package.json +101 -0
  209. data/node_modules/ajv/scripts/.eslintrc.yml +3 -0
  210. data/node_modules/ajv/scripts/bundle.js +54 -0
  211. data/node_modules/ajv/scripts/compile-dots.js +59 -0
  212. data/node_modules/ajv/scripts/info +10 -0
  213. data/node_modules/ajv/scripts/prepare-tests +9 -0
  214. data/node_modules/ajv/scripts/travis-gh-pages +21 -0
  215. data/node_modules/ansi-escapes/index.js +106 -0
  216. data/node_modules/ansi-escapes/license +21 -0
  217. data/node_modules/ansi-escapes/package.json +50 -0
  218. data/node_modules/ansi-escapes/readme.md +176 -0
  219. data/node_modules/ansi-regex/index.js +4 -0
  220. data/node_modules/ansi-regex/license +21 -0
  221. data/node_modules/ansi-regex/package.json +64 -0
  222. data/node_modules/ansi-regex/readme.md +39 -0
  223. data/node_modules/ansi-styles/index.js +65 -0
  224. data/node_modules/ansi-styles/license +21 -0
  225. data/node_modules/ansi-styles/package.json +50 -0
  226. data/node_modules/ansi-styles/readme.md +86 -0
  227. data/node_modules/argparse/CHANGELOG.md +179 -0
  228. data/node_modules/argparse/LICENSE +21 -0
  229. data/node_modules/argparse/README.md +253 -0
  230. data/node_modules/argparse/index.js +3 -0
  231. data/node_modules/argparse/lib/action.js +146 -0
  232. data/node_modules/argparse/lib/action/append.js +53 -0
  233. data/node_modules/argparse/lib/action/append/constant.js +47 -0
  234. data/node_modules/argparse/lib/action/count.js +40 -0
  235. data/node_modules/argparse/lib/action/help.js +47 -0
  236. data/node_modules/argparse/lib/action/store.js +50 -0
  237. data/node_modules/argparse/lib/action/store/constant.js +43 -0
  238. data/node_modules/argparse/lib/action/store/false.js +27 -0
  239. data/node_modules/argparse/lib/action/store/true.js +26 -0
  240. data/node_modules/argparse/lib/action/subparsers.js +149 -0
  241. data/node_modules/argparse/lib/action/version.js +47 -0
  242. data/node_modules/argparse/lib/action_container.js +482 -0
  243. data/node_modules/argparse/lib/argparse.js +14 -0
  244. data/node_modules/argparse/lib/argument/error.js +50 -0
  245. data/node_modules/argparse/lib/argument/exclusive.js +54 -0
  246. data/node_modules/argparse/lib/argument/group.js +75 -0
  247. data/node_modules/argparse/lib/argument_parser.js +1161 -0
  248. data/node_modules/argparse/lib/const.js +21 -0
  249. data/node_modules/argparse/lib/help/added_formatters.js +87 -0
  250. data/node_modules/argparse/lib/help/formatter.js +795 -0
  251. data/node_modules/argparse/lib/namespace.js +76 -0
  252. data/node_modules/argparse/lib/utils.js +57 -0
  253. data/node_modules/argparse/package.json +34 -0
  254. data/node_modules/array-union/index.js +6 -0
  255. data/node_modules/array-union/license +21 -0
  256. data/node_modules/array-union/package.json +40 -0
  257. data/node_modules/array-union/readme.md +28 -0
  258. data/node_modules/array-uniq/index.js +62 -0
  259. data/node_modules/array-uniq/license +21 -0
  260. data/node_modules/array-uniq/package.json +37 -0
  261. data/node_modules/array-uniq/readme.md +30 -0
  262. data/node_modules/arrify/index.js +8 -0
  263. data/node_modules/arrify/license +21 -0
  264. data/node_modules/arrify/package.json +33 -0
  265. data/node_modules/arrify/readme.md +36 -0
  266. data/node_modules/balanced-match/.npmignore +5 -0
  267. data/node_modules/balanced-match/LICENSE.md +21 -0
  268. data/node_modules/balanced-match/README.md +91 -0
  269. data/node_modules/balanced-match/index.js +58 -0
  270. data/node_modules/balanced-match/package.json +47 -0
  271. data/node_modules/brace-expansion/README.md +122 -0
  272. data/node_modules/brace-expansion/index.js +201 -0
  273. data/node_modules/brace-expansion/package.json +45 -0
  274. data/node_modules/buffer-shims/index.js +108 -0
  275. data/node_modules/buffer-shims/license.md +19 -0
  276. data/node_modules/buffer-shims/package.json +18 -0
  277. data/node_modules/buffer-shims/readme.md +21 -0
  278. data/node_modules/caller-path/index.js +6 -0
  279. data/node_modules/caller-path/package.json +41 -0
  280. data/node_modules/caller-path/readme.md +36 -0
  281. data/node_modules/callsites/index.js +8 -0
  282. data/node_modules/callsites/package.json +36 -0
  283. data/node_modules/callsites/readme.md +47 -0
  284. data/node_modules/chalk/index.js +116 -0
  285. data/node_modules/chalk/license +21 -0
  286. data/node_modules/chalk/package.json +70 -0
  287. data/node_modules/chalk/readme.md +213 -0
  288. data/node_modules/circular-json/.npmignore +7 -0
  289. data/node_modules/circular-json/.travis.yml +12 -0
  290. data/node_modules/circular-json/LICENSE.txt +19 -0
  291. data/node_modules/circular-json/README.md +135 -0
  292. data/node_modules/circular-json/build/circular-json.js +2 -0
  293. data/node_modules/circular-json/build/circular-json.max.js +189 -0
  294. data/node_modules/circular-json/build/circular-json.node.js +185 -0
  295. data/node_modules/circular-json/package.json +24 -0
  296. data/node_modules/circular-json/template/license.after +2 -0
  297. data/node_modules/circular-json/template/license.before +1 -0
  298. data/node_modules/cli-cursor/index.js +26 -0
  299. data/node_modules/cli-cursor/license +21 -0
  300. data/node_modules/cli-cursor/package.json +43 -0
  301. data/node_modules/cli-cursor/readme.md +40 -0
  302. data/node_modules/cli-width/.npmignore +1 -0
  303. data/node_modules/cli-width/.travis.yml +11 -0
  304. data/node_modules/cli-width/LICENSE +13 -0
  305. data/node_modules/cli-width/README.md +72 -0
  306. data/node_modules/cli-width/coverage/coverage.json +1 -0
  307. data/node_modules/cli-width/coverage/lcov-report/base.css +182 -0
  308. data/node_modules/cli-width/coverage/lcov-report/cli-width/index.html +73 -0
  309. data/node_modules/cli-width/coverage/lcov-report/cli-width/index.js.html +129 -0
  310. data/node_modules/cli-width/coverage/lcov-report/index.html +73 -0
  311. data/node_modules/cli-width/coverage/lcov-report/prettify.css +1 -0
  312. data/node_modules/cli-width/coverage/lcov-report/prettify.js +1 -0
  313. data/node_modules/cli-width/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  314. data/node_modules/cli-width/coverage/lcov-report/sorter.js +156 -0
  315. data/node_modules/cli-width/coverage/lcov.info +32 -0
  316. data/node_modules/cli-width/index.js +49 -0
  317. data/node_modules/cli-width/package.json +29 -0
  318. data/node_modules/co/History.md +172 -0
  319. data/node_modules/co/LICENSE +22 -0
  320. data/node_modules/co/Readme.md +212 -0
  321. data/node_modules/co/index.js +237 -0
  322. data/node_modules/co/package.json +34 -0
  323. data/node_modules/code-point-at/index.js +32 -0
  324. data/node_modules/code-point-at/license +21 -0
  325. data/node_modules/code-point-at/package.json +38 -0
  326. data/node_modules/code-point-at/readme.md +32 -0
  327. data/node_modules/commander/History.md +261 -0
  328. data/node_modules/commander/LICENSE +22 -0
  329. data/node_modules/commander/Readme.md +351 -0
  330. data/node_modules/commander/index.js +1110 -0
  331. data/node_modules/commander/package.json +33 -0
  332. data/node_modules/concat-map/.travis.yml +4 -0
  333. data/node_modules/concat-map/LICENSE +18 -0
  334. data/node_modules/concat-map/README.markdown +62 -0
  335. data/node_modules/concat-map/example/map.js +6 -0
  336. data/node_modules/concat-map/index.js +13 -0
  337. data/node_modules/concat-map/package.json +43 -0
  338. data/node_modules/concat-map/test/map.js +39 -0
  339. data/node_modules/concat-stream/LICENSE +24 -0
  340. data/node_modules/concat-stream/index.js +143 -0
  341. data/node_modules/concat-stream/node_modules/inherits/LICENSE +16 -0
  342. data/node_modules/concat-stream/node_modules/inherits/README.md +42 -0
  343. data/node_modules/concat-stream/node_modules/inherits/inherits.js +7 -0
  344. data/node_modules/concat-stream/node_modules/inherits/inherits_browser.js +23 -0
  345. data/node_modules/concat-stream/node_modules/inherits/package.json +29 -0
  346. data/node_modules/concat-stream/package.json +54 -0
  347. data/node_modules/concat-stream/readme.md +102 -0
  348. data/node_modules/core-util-is/LICENSE +19 -0
  349. data/node_modules/core-util-is/README.md +3 -0
  350. data/node_modules/core-util-is/float.patch +604 -0
  351. data/node_modules/core-util-is/lib/util.js +107 -0
  352. data/node_modules/core-util-is/package.json +32 -0
  353. data/node_modules/core-util-is/test.js +68 -0
  354. data/node_modules/d/.lint +11 -0
  355. data/node_modules/d/.npmignore +4 -0
  356. data/node_modules/d/.travis.yml +15 -0
  357. data/node_modules/d/CHANGES +13 -0
  358. data/node_modules/d/LICENSE +19 -0
  359. data/node_modules/d/README.md +104 -0
  360. data/node_modules/d/auto-bind.js +32 -0
  361. data/node_modules/d/index.js +63 -0
  362. data/node_modules/d/lazy.js +117 -0
  363. data/node_modules/d/package.json +34 -0
  364. data/node_modules/d/test/auto-bind.js +12 -0
  365. data/node_modules/d/test/index.js +182 -0
  366. data/node_modules/d/test/lazy.js +82 -0
  367. data/node_modules/debug/.coveralls.yml +1 -0
  368. data/node_modules/debug/.eslintrc +11 -0
  369. data/node_modules/debug/.npmignore +8 -0
  370. data/node_modules/debug/.travis.yml +14 -0
  371. data/node_modules/debug/CHANGELOG.md +330 -0
  372. data/node_modules/debug/LICENSE +19 -0
  373. data/node_modules/debug/Makefile +50 -0
  374. data/node_modules/debug/README.md +312 -0
  375. data/node_modules/debug/bower.json +29 -0
  376. data/node_modules/debug/component.json +19 -0
  377. data/node_modules/debug/karma.conf.js +70 -0
  378. data/node_modules/debug/node.js +1 -0
  379. data/node_modules/debug/package.json +49 -0
  380. data/node_modules/debug/src/browser.js +185 -0
  381. data/node_modules/debug/src/debug.js +202 -0
  382. data/node_modules/debug/src/index.js +10 -0
  383. data/node_modules/debug/src/node.js +241 -0
  384. data/node_modules/deep-is/.npmignore +1 -0
  385. data/node_modules/deep-is/.travis.yml +6 -0
  386. data/node_modules/deep-is/LICENSE +22 -0
  387. data/node_modules/deep-is/README.markdown +70 -0
  388. data/node_modules/deep-is/example/cmp.js +11 -0
  389. data/node_modules/deep-is/index.js +102 -0
  390. data/node_modules/deep-is/package.json +61 -0
  391. data/node_modules/deep-is/test/NaN.js +16 -0
  392. data/node_modules/deep-is/test/cmp.js +23 -0
  393. data/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
  394. data/node_modules/del/index.js +73 -0
  395. data/node_modules/del/license +21 -0
  396. data/node_modules/del/node_modules/.bin/rimraf +1 -0
  397. data/node_modules/del/package.json +61 -0
  398. data/node_modules/del/readme.md +106 -0
  399. data/node_modules/doctrine/CHANGELOG.md +70 -0
  400. data/node_modules/doctrine/LICENSE.BSD +22 -0
  401. data/node_modules/doctrine/LICENSE.closure-compiler +202 -0
  402. data/node_modules/doctrine/LICENSE.esprima +19 -0
  403. data/node_modules/doctrine/README.md +174 -0
  404. data/node_modules/doctrine/lib/doctrine.js +897 -0
  405. data/node_modules/doctrine/lib/typed.js +1283 -0
  406. data/node_modules/doctrine/lib/utility.js +35 -0
  407. data/node_modules/doctrine/package.json +65 -0
  408. data/node_modules/es5-ext/.lint +39 -0
  409. data/node_modules/es5-ext/.lintignore +9 -0
  410. data/node_modules/es5-ext/.npmignore +4 -0
  411. data/node_modules/es5-ext/.travis.yml +16 -0
  412. data/node_modules/es5-ext/CHANGES +646 -0
  413. data/node_modules/es5-ext/LICENSE +21 -0
  414. data/node_modules/es5-ext/README.md +993 -0
  415. data/node_modules/es5-ext/array/#/@@iterator/implement.js +6 -0
  416. data/node_modules/es5-ext/array/#/@@iterator/index.js +4 -0
  417. data/node_modules/es5-ext/array/#/@@iterator/is-implemented.js +16 -0
  418. data/node_modules/es5-ext/array/#/@@iterator/shim.js +3 -0
  419. data/node_modules/es5-ext/array/#/_compare-by-length.js +9 -0
  420. data/node_modules/es5-ext/array/#/binary-search.js +28 -0
  421. data/node_modules/es5-ext/array/#/clear.js +12 -0
  422. data/node_modules/es5-ext/array/#/compact.js +9 -0
  423. data/node_modules/es5-ext/array/#/concat/implement.js +6 -0
  424. data/node_modules/es5-ext/array/#/concat/index.js +4 -0
  425. data/node_modules/es5-ext/array/#/concat/is-implemented.js +7 -0
  426. data/node_modules/es5-ext/array/#/concat/shim.js +44 -0
  427. data/node_modules/es5-ext/array/#/contains.js +7 -0
  428. data/node_modules/es5-ext/array/#/copy-within/implement.js +7 -0
  429. data/node_modules/es5-ext/array/#/copy-within/index.js +4 -0
  430. data/node_modules/es5-ext/array/#/copy-within/is-implemented.js +7 -0
  431. data/node_modules/es5-ext/array/#/copy-within/shim.js +39 -0
  432. data/node_modules/es5-ext/array/#/diff.js +13 -0
  433. data/node_modules/es5-ext/array/#/e-index-of.js +29 -0
  434. data/node_modules/es5-ext/array/#/e-last-index-of.js +29 -0
  435. data/node_modules/es5-ext/array/#/entries/implement.js +6 -0
  436. data/node_modules/es5-ext/array/#/entries/index.js +4 -0
  437. data/node_modules/es5-ext/array/#/entries/is-implemented.js +15 -0
  438. data/node_modules/es5-ext/array/#/entries/shim.js +4 -0
  439. data/node_modules/es5-ext/array/#/exclusion.js +27 -0
  440. data/node_modules/es5-ext/array/#/fill/implement.js +6 -0
  441. data/node_modules/es5-ext/array/#/fill/index.js +4 -0
  442. data/node_modules/es5-ext/array/#/fill/is-implemented.js +7 -0
  443. data/node_modules/es5-ext/array/#/fill/shim.js +21 -0
  444. data/node_modules/es5-ext/array/#/filter/implement.js +6 -0
  445. data/node_modules/es5-ext/array/#/filter/index.js +4 -0
  446. data/node_modules/es5-ext/array/#/filter/is-implemented.js +9 -0
  447. data/node_modules/es5-ext/array/#/filter/shim.js +22 -0
  448. data/node_modules/es5-ext/array/#/find-index/implement.js +7 -0
  449. data/node_modules/es5-ext/array/#/find-index/index.js +4 -0
  450. data/node_modules/es5-ext/array/#/find-index/is-implemented.js +9 -0
  451. data/node_modules/es5-ext/array/#/find-index/shim.js +20 -0
  452. data/node_modules/es5-ext/array/#/find/implement.js +6 -0
  453. data/node_modules/es5-ext/array/#/find/index.js +4 -0
  454. data/node_modules/es5-ext/array/#/find/is-implemented.js +9 -0
  455. data/node_modules/es5-ext/array/#/find/shim.js +8 -0
  456. data/node_modules/es5-ext/array/#/first-index.js +16 -0
  457. data/node_modules/es5-ext/array/#/first.js +9 -0
  458. data/node_modules/es5-ext/array/#/flatten.js +39 -0
  459. data/node_modules/es5-ext/array/#/for-each-right.js +20 -0
  460. data/node_modules/es5-ext/array/#/group.js +23 -0
  461. data/node_modules/es5-ext/array/#/index.js +40 -0
  462. data/node_modules/es5-ext/array/#/indexes-of.js +12 -0
  463. data/node_modules/es5-ext/array/#/intersection.js +19 -0
  464. data/node_modules/es5-ext/array/#/is-copy.js +21 -0
  465. data/node_modules/es5-ext/array/#/is-uniq.js +12 -0
  466. data/node_modules/es5-ext/array/#/keys/implement.js +6 -0
  467. data/node_modules/es5-ext/array/#/keys/index.js +4 -0
  468. data/node_modules/es5-ext/array/#/keys/is-implemented.js +14 -0
  469. data/node_modules/es5-ext/array/#/keys/shim.js +4 -0
  470. data/node_modules/es5-ext/array/#/last-index.js +16 -0
  471. data/node_modules/es5-ext/array/#/last.js +9 -0
  472. data/node_modules/es5-ext/array/#/map/implement.js +6 -0
  473. data/node_modules/es5-ext/array/#/map/index.js +4 -0
  474. data/node_modules/es5-ext/array/#/map/is-implemented.js +8 -0
  475. data/node_modules/es5-ext/array/#/map/shim.js +21 -0
  476. data/node_modules/es5-ext/array/#/remove.js +12 -0
  477. data/node_modules/es5-ext/array/#/separate.js +10 -0
  478. data/node_modules/es5-ext/array/#/slice/implement.js +6 -0
  479. data/node_modules/es5-ext/array/#/slice/index.js +4 -0
  480. data/node_modules/es5-ext/array/#/slice/is-implemented.js +7 -0
  481. data/node_modules/es5-ext/array/#/slice/shim.js +35 -0
  482. data/node_modules/es5-ext/array/#/some-right.js +23 -0
  483. data/node_modules/es5-ext/array/#/splice/implement.js +6 -0
  484. data/node_modules/es5-ext/array/#/splice/index.js +4 -0
  485. data/node_modules/es5-ext/array/#/splice/is-implemented.js +7 -0
  486. data/node_modules/es5-ext/array/#/splice/shim.js +14 -0
  487. data/node_modules/es5-ext/array/#/uniq.js +13 -0
  488. data/node_modules/es5-ext/array/#/values/implement.js +6 -0
  489. data/node_modules/es5-ext/array/#/values/index.js +3 -0
  490. data/node_modules/es5-ext/array/#/values/is-implemented.js +14 -0
  491. data/node_modules/es5-ext/array/#/values/shim.js +4 -0
  492. data/node_modules/es5-ext/array/_is-extensible.js +13 -0
  493. data/node_modules/es5-ext/array/_sub-array-dummy-safe.js +23 -0
  494. data/node_modules/es5-ext/array/_sub-array-dummy.js +16 -0
  495. data/node_modules/es5-ext/array/from/implement.js +6 -0
  496. data/node_modules/es5-ext/array/from/index.js +5 -0
  497. data/node_modules/es5-ext/array/from/is-implemented.js +9 -0
  498. data/node_modules/es5-ext/array/from/shim.js +106 -0
  499. data/node_modules/es5-ext/array/generate.js +20 -0
  500. data/node_modules/es5-ext/array/index.js +11 -0
  501. data/node_modules/es5-ext/array/is-plain-array.js +11 -0
  502. data/node_modules/es5-ext/array/of/implement.js +6 -0
  503. data/node_modules/es5-ext/array/of/index.js +5 -0
  504. data/node_modules/es5-ext/array/of/is-implemented.js +8 -0
  505. data/node_modules/es5-ext/array/of/shim.js +19 -0
  506. data/node_modules/es5-ext/array/to-array.js +9 -0
  507. data/node_modules/es5-ext/array/valid-array.js +8 -0
  508. data/node_modules/es5-ext/boolean/index.js +5 -0
  509. data/node_modules/es5-ext/boolean/is-boolean.js +10 -0
  510. data/node_modules/es5-ext/date/#/copy.js +5 -0
  511. data/node_modules/es5-ext/date/#/days-in-month.js +17 -0
  512. data/node_modules/es5-ext/date/#/floor-day.js +8 -0
  513. data/node_modules/es5-ext/date/#/floor-month.js +8 -0
  514. data/node_modules/es5-ext/date/#/floor-year.js +8 -0
  515. data/node_modules/es5-ext/date/#/format.js +21 -0
  516. data/node_modules/es5-ext/date/#/index.js +10 -0
  517. data/node_modules/es5-ext/date/index.js +7 -0
  518. data/node_modules/es5-ext/date/is-date.js +9 -0
  519. data/node_modules/es5-ext/date/valid-date.js +8 -0
  520. data/node_modules/es5-ext/error/#/index.js +5 -0
  521. data/node_modules/es5-ext/error/#/throw.js +5 -0
  522. data/node_modules/es5-ext/error/custom.js +19 -0
  523. data/node_modules/es5-ext/error/index.js +8 -0
  524. data/node_modules/es5-ext/error/is-error.js +9 -0
  525. data/node_modules/es5-ext/error/valid-error.js +8 -0
  526. data/node_modules/es5-ext/function/#/compose.js +20 -0
  527. data/node_modules/es5-ext/function/#/copy.js +15 -0
  528. data/node_modules/es5-ext/function/#/curry.js +24 -0
  529. data/node_modules/es5-ext/function/#/index.js +12 -0
  530. data/node_modules/es5-ext/function/#/lock.js +12 -0
  531. data/node_modules/es5-ext/function/#/not.js +14 -0
  532. data/node_modules/es5-ext/function/#/partial.js +16 -0
  533. data/node_modules/es5-ext/function/#/spread.js +10 -0
  534. data/node_modules/es5-ext/function/#/to-string-tokens.js +11 -0
  535. data/node_modules/es5-ext/function/_define-length.js +44 -0
  536. data/node_modules/es5-ext/function/constant.js +5 -0
  537. data/node_modules/es5-ext/function/identity.js +3 -0
  538. data/node_modules/es5-ext/function/index.js +15 -0
  539. data/node_modules/es5-ext/function/invoke.js +15 -0
  540. data/node_modules/es5-ext/function/is-arguments.js +7 -0
  541. data/node_modules/es5-ext/function/is-function.js +9 -0
  542. data/node_modules/es5-ext/function/noop.js +3 -0
  543. data/node_modules/es5-ext/function/pluck.js +7 -0
  544. data/node_modules/es5-ext/function/valid-function.js +8 -0
  545. data/node_modules/es5-ext/global.js +3 -0
  546. data/node_modules/es5-ext/index.js +18 -0
  547. data/node_modules/es5-ext/iterable/for-each.js +12 -0
  548. data/node_modules/es5-ext/iterable/index.js +8 -0
  549. data/node_modules/es5-ext/iterable/is.js +10 -0
  550. data/node_modules/es5-ext/iterable/validate-object.js +9 -0
  551. data/node_modules/es5-ext/iterable/validate.js +8 -0
  552. data/node_modules/es5-ext/json/index.js +5 -0
  553. data/node_modules/es5-ext/json/safe-stringify.js +26 -0
  554. data/node_modules/es5-ext/math/_pack-ieee754.js +82 -0
  555. data/node_modules/es5-ext/math/_unpack-ieee754.js +33 -0
  556. data/node_modules/es5-ext/math/acosh/implement.js +6 -0
  557. data/node_modules/es5-ext/math/acosh/index.js +5 -0
  558. data/node_modules/es5-ext/math/acosh/is-implemented.js +7 -0
  559. data/node_modules/es5-ext/math/acosh/shim.js +12 -0
  560. data/node_modules/es5-ext/math/asinh/implement.js +6 -0
  561. data/node_modules/es5-ext/math/asinh/index.js +5 -0
  562. data/node_modules/es5-ext/math/asinh/is-implemented.js +7 -0
  563. data/node_modules/es5-ext/math/asinh/shim.js +15 -0
  564. data/node_modules/es5-ext/math/atanh/implement.js +6 -0
  565. data/node_modules/es5-ext/math/atanh/index.js +5 -0
  566. data/node_modules/es5-ext/math/atanh/is-implemented.js +7 -0
  567. data/node_modules/es5-ext/math/atanh/shim.js +14 -0
  568. data/node_modules/es5-ext/math/cbrt/implement.js +6 -0
  569. data/node_modules/es5-ext/math/cbrt/index.js +5 -0
  570. data/node_modules/es5-ext/math/cbrt/is-implemented.js +7 -0
  571. data/node_modules/es5-ext/math/cbrt/shim.js +12 -0
  572. data/node_modules/es5-ext/math/clz32/implement.js +6 -0
  573. data/node_modules/es5-ext/math/clz32/index.js +5 -0
  574. data/node_modules/es5-ext/math/clz32/is-implemented.js +7 -0
  575. data/node_modules/es5-ext/math/clz32/shim.js +6 -0
  576. data/node_modules/es5-ext/math/cosh/implement.js +6 -0
  577. data/node_modules/es5-ext/math/cosh/index.js +5 -0
  578. data/node_modules/es5-ext/math/cosh/is-implemented.js +7 -0
  579. data/node_modules/es5-ext/math/cosh/shim.js +11 -0
  580. data/node_modules/es5-ext/math/expm1/implement.js +6 -0
  581. data/node_modules/es5-ext/math/expm1/index.js +5 -0
  582. data/node_modules/es5-ext/math/expm1/is-implemented.js +7 -0
  583. data/node_modules/es5-ext/math/expm1/shim.js +16 -0
  584. data/node_modules/es5-ext/math/fround/implement.js +6 -0
  585. data/node_modules/es5-ext/math/fround/index.js +5 -0
  586. data/node_modules/es5-ext/math/fround/is-implemented.js +7 -0
  587. data/node_modules/es5-ext/math/fround/shim.js +33 -0
  588. data/node_modules/es5-ext/math/hypot/implement.js +6 -0
  589. data/node_modules/es5-ext/math/hypot/index.js +5 -0
  590. data/node_modules/es5-ext/math/hypot/is-implemented.js +7 -0
  591. data/node_modules/es5-ext/math/hypot/shim.js +34 -0
  592. data/node_modules/es5-ext/math/imul/implement.js +6 -0
  593. data/node_modules/es5-ext/math/imul/index.js +5 -0
  594. data/node_modules/es5-ext/math/imul/is-implemented.js +7 -0
  595. data/node_modules/es5-ext/math/imul/shim.js +13 -0
  596. data/node_modules/es5-ext/math/index.js +21 -0
  597. data/node_modules/es5-ext/math/log10/implement.js +6 -0
  598. data/node_modules/es5-ext/math/log10/index.js +5 -0
  599. data/node_modules/es5-ext/math/log10/is-implemented.js +7 -0
  600. data/node_modules/es5-ext/math/log10/shim.js +14 -0
  601. data/node_modules/es5-ext/math/log1p/implement.js +6 -0
  602. data/node_modules/es5-ext/math/log1p/index.js +5 -0
  603. data/node_modules/es5-ext/math/log1p/is-implemented.js +7 -0
  604. data/node_modules/es5-ext/math/log1p/shim.js +17 -0
  605. data/node_modules/es5-ext/math/log2/implement.js +6 -0
  606. data/node_modules/es5-ext/math/log2/index.js +5 -0
  607. data/node_modules/es5-ext/math/log2/is-implemented.js +7 -0
  608. data/node_modules/es5-ext/math/log2/shim.js +14 -0
  609. data/node_modules/es5-ext/math/sign/implement.js +6 -0
  610. data/node_modules/es5-ext/math/sign/index.js +5 -0
  611. data/node_modules/es5-ext/math/sign/is-implemented.js +7 -0
  612. data/node_modules/es5-ext/math/sign/shim.js +7 -0
  613. data/node_modules/es5-ext/math/sinh/implement.js +6 -0
  614. data/node_modules/es5-ext/math/sinh/index.js +5 -0
  615. data/node_modules/es5-ext/math/sinh/is-implemented.js +7 -0
  616. data/node_modules/es5-ext/math/sinh/shim.js +17 -0
  617. data/node_modules/es5-ext/math/tanh/implement.js +6 -0
  618. data/node_modules/es5-ext/math/tanh/index.js +5 -0
  619. data/node_modules/es5-ext/math/tanh/is-implemented.js +7 -0
  620. data/node_modules/es5-ext/math/tanh/shim.js +17 -0
  621. data/node_modules/es5-ext/math/trunc/implement.js +6 -0
  622. data/node_modules/es5-ext/math/trunc/index.js +5 -0
  623. data/node_modules/es5-ext/math/trunc/is-implemented.js +7 -0
  624. data/node_modules/es5-ext/math/trunc/shim.js +13 -0
  625. data/node_modules/es5-ext/number/#/index.js +5 -0
  626. data/node_modules/es5-ext/number/#/pad.js +15 -0
  627. data/node_modules/es5-ext/number/epsilon/implement.js +6 -0
  628. data/node_modules/es5-ext/number/epsilon/index.js +3 -0
  629. data/node_modules/es5-ext/number/epsilon/is-implemented.js +5 -0
  630. data/node_modules/es5-ext/number/index.js +17 -0
  631. data/node_modules/es5-ext/number/is-finite/implement.js +6 -0
  632. data/node_modules/es5-ext/number/is-finite/index.js +5 -0
  633. data/node_modules/es5-ext/number/is-finite/is-implemented.js +7 -0
  634. data/node_modules/es5-ext/number/is-finite/shim.js +5 -0
  635. data/node_modules/es5-ext/number/is-integer/implement.js +6 -0
  636. data/node_modules/es5-ext/number/is-integer/index.js +5 -0
  637. data/node_modules/es5-ext/number/is-integer/is-implemented.js +7 -0
  638. data/node_modules/es5-ext/number/is-integer/shim.js +8 -0
  639. data/node_modules/es5-ext/number/is-nan/implement.js +6 -0
  640. data/node_modules/es5-ext/number/is-nan/index.js +5 -0
  641. data/node_modules/es5-ext/number/is-nan/is-implemented.js +7 -0
  642. data/node_modules/es5-ext/number/is-nan/shim.js +3 -0
  643. data/node_modules/es5-ext/number/is-natural.js +5 -0
  644. data/node_modules/es5-ext/number/is-number.js +11 -0
  645. data/node_modules/es5-ext/number/is-safe-integer/implement.js +6 -0
  646. data/node_modules/es5-ext/number/is-safe-integer/index.js +5 -0
  647. data/node_modules/es5-ext/number/is-safe-integer/is-implemented.js +8 -0
  648. data/node_modules/es5-ext/number/is-safe-integer/shim.js +11 -0
  649. data/node_modules/es5-ext/number/max-safe-integer/implement.js +6 -0
  650. data/node_modules/es5-ext/number/max-safe-integer/index.js +3 -0
  651. data/node_modules/es5-ext/number/max-safe-integer/is-implemented.js +5 -0
  652. data/node_modules/es5-ext/number/min-safe-integer/implement.js +6 -0
  653. data/node_modules/es5-ext/number/min-safe-integer/index.js +3 -0
  654. data/node_modules/es5-ext/number/min-safe-integer/is-implemented.js +5 -0
  655. data/node_modules/es5-ext/number/to-integer.js +12 -0
  656. data/node_modules/es5-ext/number/to-pos-integer.js +7 -0
  657. data/node_modules/es5-ext/number/to-uint32.js +3 -0
  658. data/node_modules/es5-ext/object/_iterate.js +29 -0
  659. data/node_modules/es5-ext/object/assign/implement.js +6 -0
  660. data/node_modules/es5-ext/object/assign/index.js +5 -0
  661. data/node_modules/es5-ext/object/assign/is-implemented.js +9 -0
  662. data/node_modules/es5-ext/object/assign/shim.js +22 -0
  663. data/node_modules/es5-ext/object/clear.js +16 -0
  664. data/node_modules/es5-ext/object/compact.js +7 -0
  665. data/node_modules/es5-ext/object/compare.js +42 -0
  666. data/node_modules/es5-ext/object/copy-deep.js +38 -0
  667. data/node_modules/es5-ext/object/copy.js +10 -0
  668. data/node_modules/es5-ext/object/count.js +5 -0
  669. data/node_modules/es5-ext/object/create.js +36 -0
  670. data/node_modules/es5-ext/object/ensure-natural-number-value.js +8 -0
  671. data/node_modules/es5-ext/object/ensure-natural-number.js +9 -0
  672. data/node_modules/es5-ext/object/eq.js +5 -0
  673. data/node_modules/es5-ext/object/every.js +3 -0
  674. data/node_modules/es5-ext/object/filter.js +15 -0
  675. data/node_modules/es5-ext/object/find-key.js +3 -0
  676. data/node_modules/es5-ext/object/find.js +8 -0
  677. data/node_modules/es5-ext/object/first-key.js +14 -0
  678. data/node_modules/es5-ext/object/flatten.js +17 -0
  679. data/node_modules/es5-ext/object/for-each.js +3 -0
  680. data/node_modules/es5-ext/object/get-property-names.js +18 -0
  681. data/node_modules/es5-ext/object/index.js +54 -0
  682. data/node_modules/es5-ext/object/is-array-like.js +14 -0
  683. data/node_modules/es5-ext/object/is-callable.js +5 -0
  684. data/node_modules/es5-ext/object/is-copy-deep.js +58 -0
  685. data/node_modules/es5-ext/object/is-copy.js +24 -0
  686. data/node_modules/es5-ext/object/is-empty.js +14 -0
  687. data/node_modules/es5-ext/object/is-number-value.js +3 -0
  688. data/node_modules/es5-ext/object/is-object.js +7 -0
  689. data/node_modules/es5-ext/object/is-plain-object.js +20 -0
  690. data/node_modules/es5-ext/object/is-value.js +5 -0
  691. data/node_modules/es5-ext/object/is.js +10 -0
  692. data/node_modules/es5-ext/object/key-of.js +15 -0
  693. data/node_modules/es5-ext/object/keys/implement.js +6 -0
  694. data/node_modules/es5-ext/object/keys/index.js +5 -0
  695. data/node_modules/es5-ext/object/keys/is-implemented.js +8 -0
  696. data/node_modules/es5-ext/object/keys/shim.js +7 -0
  697. data/node_modules/es5-ext/object/map-keys.js +15 -0
  698. data/node_modules/es5-ext/object/map.js +15 -0
  699. data/node_modules/es5-ext/object/mixin-prototypes.js +34 -0
  700. data/node_modules/es5-ext/object/mixin.js +27 -0
  701. data/node_modules/es5-ext/object/normalize-options.js +17 -0
  702. data/node_modules/es5-ext/object/primitive-set.js +9 -0
  703. data/node_modules/es5-ext/object/safe-traverse.js +15 -0
  704. data/node_modules/es5-ext/object/serialize.js +36 -0
  705. data/node_modules/es5-ext/object/set-prototype-of/implement.js +8 -0
  706. data/node_modules/es5-ext/object/set-prototype-of/index.js +5 -0
  707. data/node_modules/es5-ext/object/set-prototype-of/is-implemented.js +11 -0
  708. data/node_modules/es5-ext/object/set-prototype-of/shim.js +73 -0
  709. data/node_modules/es5-ext/object/some.js +3 -0
  710. data/node_modules/es5-ext/object/to-array.js +18 -0
  711. data/node_modules/es5-ext/object/unserialize.js +7 -0
  712. data/node_modules/es5-ext/object/valid-callable.js +6 -0
  713. data/node_modules/es5-ext/object/valid-object.js +8 -0
  714. data/node_modules/es5-ext/object/valid-value.js +6 -0
  715. data/node_modules/es5-ext/object/validate-array-like-object.js +9 -0
  716. data/node_modules/es5-ext/object/validate-array-like.js +8 -0
  717. data/node_modules/es5-ext/object/validate-stringifiable-value.js +6 -0
  718. data/node_modules/es5-ext/object/validate-stringifiable.js +9 -0
  719. data/node_modules/es5-ext/package.json +43 -0
  720. data/node_modules/es5-ext/reg-exp/#/index.js +10 -0
  721. data/node_modules/es5-ext/reg-exp/#/is-sticky.js +9 -0
  722. data/node_modules/es5-ext/reg-exp/#/is-unicode.js +9 -0
  723. data/node_modules/es5-ext/reg-exp/#/match/implement.js +6 -0
  724. data/node_modules/es5-ext/reg-exp/#/match/index.js +5 -0
  725. data/node_modules/es5-ext/reg-exp/#/match/is-implemented.js +8 -0
  726. data/node_modules/es5-ext/reg-exp/#/match/shim.js +8 -0
  727. data/node_modules/es5-ext/reg-exp/#/replace/implement.js +6 -0
  728. data/node_modules/es5-ext/reg-exp/#/replace/index.js +5 -0
  729. data/node_modules/es5-ext/reg-exp/#/replace/is-implemented.js +8 -0
  730. data/node_modules/es5-ext/reg-exp/#/replace/shim.js +8 -0
  731. data/node_modules/es5-ext/reg-exp/#/search/implement.js +6 -0
  732. data/node_modules/es5-ext/reg-exp/#/search/index.js +5 -0
  733. data/node_modules/es5-ext/reg-exp/#/search/is-implemented.js +8 -0
  734. data/node_modules/es5-ext/reg-exp/#/search/shim.js +8 -0
  735. data/node_modules/es5-ext/reg-exp/#/split/implement.js +6 -0
  736. data/node_modules/es5-ext/reg-exp/#/split/index.js +5 -0
  737. data/node_modules/es5-ext/reg-exp/#/split/is-implemented.js +8 -0
  738. data/node_modules/es5-ext/reg-exp/#/split/shim.js +8 -0
  739. data/node_modules/es5-ext/reg-exp/#/sticky/implement.js +8 -0
  740. data/node_modules/es5-ext/reg-exp/#/sticky/is-implemented.js +10 -0
  741. data/node_modules/es5-ext/reg-exp/#/unicode/implement.js +8 -0
  742. data/node_modules/es5-ext/reg-exp/#/unicode/is-implemented.js +10 -0
  743. data/node_modules/es5-ext/reg-exp/escape.js +9 -0
  744. data/node_modules/es5-ext/reg-exp/index.js +8 -0
  745. data/node_modules/es5-ext/reg-exp/is-reg-exp.js +9 -0
  746. data/node_modules/es5-ext/reg-exp/valid-reg-exp.js +8 -0
  747. data/node_modules/es5-ext/string/#/@@iterator/implement.js +6 -0
  748. data/node_modules/es5-ext/string/#/@@iterator/index.js +4 -0
  749. data/node_modules/es5-ext/string/#/@@iterator/is-implemented.js +16 -0
  750. data/node_modules/es5-ext/string/#/@@iterator/shim.js +6 -0
  751. data/node_modules/es5-ext/string/#/at.js +33 -0
  752. data/node_modules/es5-ext/string/#/camel-to-hyphen.js +10 -0
  753. data/node_modules/es5-ext/string/#/capitalize.js +8 -0
  754. data/node_modules/es5-ext/string/#/case-insensitive-compare.js +7 -0
  755. data/node_modules/es5-ext/string/#/code-point-at/implement.js +7 -0
  756. data/node_modules/es5-ext/string/#/code-point-at/index.js +5 -0
  757. data/node_modules/es5-ext/string/#/code-point-at/is-implemented.js +8 -0
  758. data/node_modules/es5-ext/string/#/code-point-at/shim.js +26 -0
  759. data/node_modules/es5-ext/string/#/contains/implement.js +7 -0
  760. data/node_modules/es5-ext/string/#/contains/index.js +5 -0
  761. data/node_modules/es5-ext/string/#/contains/is-implemented.js +8 -0
  762. data/node_modules/es5-ext/string/#/contains/shim.js +7 -0
  763. data/node_modules/es5-ext/string/#/ends-with/implement.js +7 -0
  764. data/node_modules/es5-ext/string/#/ends-with/index.js +5 -0
  765. data/node_modules/es5-ext/string/#/ends-with/is-implemented.js +8 -0
  766. data/node_modules/es5-ext/string/#/ends-with/shim.js +16 -0
  767. data/node_modules/es5-ext/string/#/hyphen-to-camel.js +8 -0
  768. data/node_modules/es5-ext/string/#/indent.js +12 -0
  769. data/node_modules/es5-ext/string/#/index.js +22 -0
  770. data/node_modules/es5-ext/string/#/last.js +8 -0
  771. data/node_modules/es5-ext/string/#/normalize/_data.js +69 -0
  772. data/node_modules/es5-ext/string/#/normalize/implement.js +7 -0
  773. data/node_modules/es5-ext/string/#/normalize/index.js +5 -0
  774. data/node_modules/es5-ext/string/#/normalize/is-implemented.js +8 -0
  775. data/node_modules/es5-ext/string/#/normalize/shim.js +289 -0
  776. data/node_modules/es5-ext/string/#/pad.js +18 -0
  777. data/node_modules/es5-ext/string/#/plain-replace-all.js +16 -0
  778. data/node_modules/es5-ext/string/#/plain-replace.js +10 -0
  779. data/node_modules/es5-ext/string/#/repeat/implement.js +7 -0
  780. data/node_modules/es5-ext/string/#/repeat/index.js +5 -0
  781. data/node_modules/es5-ext/string/#/repeat/is-implemented.js +8 -0
  782. data/node_modules/es5-ext/string/#/repeat/shim.js +22 -0
  783. data/node_modules/es5-ext/string/#/starts-with/implement.js +7 -0
  784. data/node_modules/es5-ext/string/#/starts-with/index.js +5 -0
  785. data/node_modules/es5-ext/string/#/starts-with/is-implemented.js +9 -0
  786. data/node_modules/es5-ext/string/#/starts-with/shim.js +12 -0
  787. data/node_modules/es5-ext/string/#/uncapitalize.js +8 -0
  788. data/node_modules/es5-ext/string/format-method.js +24 -0
  789. data/node_modules/es5-ext/string/from-code-point/implement.js +6 -0
  790. data/node_modules/es5-ext/string/from-code-point/index.js +5 -0
  791. data/node_modules/es5-ext/string/from-code-point/is-implemented.js +7 -0
  792. data/node_modules/es5-ext/string/from-code-point/shim.js +30 -0
  793. data/node_modules/es5-ext/string/index.js +10 -0
  794. data/node_modules/es5-ext/string/is-string.js +10 -0
  795. data/node_modules/es5-ext/string/random-uniq.js +11 -0
  796. data/node_modules/es5-ext/string/raw/implement.js +6 -0
  797. data/node_modules/es5-ext/string/raw/index.js +5 -0
  798. data/node_modules/es5-ext/string/raw/is-implemented.js +9 -0
  799. data/node_modules/es5-ext/string/raw/shim.js +15 -0
  800. data/node_modules/es5-ext/test/__tad.js +3 -0
  801. data/node_modules/es5-ext/test/array/#/@@iterator/implement.js +5 -0
  802. data/node_modules/es5-ext/test/array/#/@@iterator/index.js +3 -0
  803. data/node_modules/es5-ext/test/array/#/@@iterator/is-implemented.js +3 -0
  804. data/node_modules/es5-ext/test/array/#/@@iterator/shim.js +9 -0
  805. data/node_modules/es5-ext/test/array/#/_compare-by-length.js +7 -0
  806. data/node_modules/es5-ext/test/array/#/binary-search.js +15 -0
  807. data/node_modules/es5-ext/test/array/#/clear.js +7 -0
  808. data/node_modules/es5-ext/test/array/#/compact.js +17 -0
  809. data/node_modules/es5-ext/test/array/#/concat/implement.js +5 -0
  810. data/node_modules/es5-ext/test/array/#/concat/index.js +3 -0
  811. data/node_modules/es5-ext/test/array/#/concat/is-implemented.js +3 -0
  812. data/node_modules/es5-ext/test/array/#/concat/shim.js +26 -0
  813. data/node_modules/es5-ext/test/array/#/contains.js +21 -0
  814. data/node_modules/es5-ext/test/array/#/copy-within/implement.js +5 -0
  815. data/node_modules/es5-ext/test/array/#/copy-within/index.js +3 -0
  816. data/node_modules/es5-ext/test/array/#/copy-within/is-implemented.js +3 -0
  817. data/node_modules/es5-ext/test/array/#/copy-within/shim.js +29 -0
  818. data/node_modules/es5-ext/test/array/#/diff.js +17 -0
  819. data/node_modules/es5-ext/test/array/#/e-index-of.js +13 -0
  820. data/node_modules/es5-ext/test/array/#/e-last-index-of.js +12 -0
  821. data/node_modules/es5-ext/test/array/#/entries/implement.js +5 -0
  822. data/node_modules/es5-ext/test/array/#/entries/index.js +3 -0
  823. data/node_modules/es5-ext/test/array/#/entries/is-implemented.js +3 -0
  824. data/node_modules/es5-ext/test/array/#/entries/shim.js +9 -0
  825. data/node_modules/es5-ext/test/array/#/exclusion.js +15 -0
  826. data/node_modules/es5-ext/test/array/#/fill/implement.js +5 -0
  827. data/node_modules/es5-ext/test/array/#/fill/index.js +3 -0
  828. data/node_modules/es5-ext/test/array/#/fill/is-implemented.js +3 -0
  829. data/node_modules/es5-ext/test/array/#/fill/shim.js +18 -0
  830. data/node_modules/es5-ext/test/array/#/filter/implement.js +5 -0
  831. data/node_modules/es5-ext/test/array/#/filter/index.js +3 -0
  832. data/node_modules/es5-ext/test/array/#/filter/is-implemented.js +3 -0
  833. data/node_modules/es5-ext/test/array/#/filter/shim.js +17 -0
  834. data/node_modules/es5-ext/test/array/#/find-index/implement.js +5 -0
  835. data/node_modules/es5-ext/test/array/#/find-index/index.js +3 -0
  836. data/node_modules/es5-ext/test/array/#/find-index/is-implemented.js +3 -0
  837. data/node_modules/es5-ext/test/array/#/find-index/shim.js +17 -0
  838. data/node_modules/es5-ext/test/array/#/find/implement.js +5 -0
  839. data/node_modules/es5-ext/test/array/#/find/index.js +3 -0
  840. data/node_modules/es5-ext/test/array/#/find/is-implemented.js +3 -0
  841. data/node_modules/es5-ext/test/array/#/find/shim.js +17 -0
  842. data/node_modules/es5-ext/test/array/#/first-index.js +17 -0
  843. data/node_modules/es5-ext/test/array/#/first.js +13 -0
  844. data/node_modules/es5-ext/test/array/#/flatten.js +14 -0
  845. data/node_modules/es5-ext/test/array/#/for-each-right.js +36 -0
  846. data/node_modules/es5-ext/test/array/#/group.js +24 -0
  847. data/node_modules/es5-ext/test/array/#/indexes-of.js +14 -0
  848. data/node_modules/es5-ext/test/array/#/intersection.js +24 -0
  849. data/node_modules/es5-ext/test/array/#/is-copy.js +13 -0
  850. data/node_modules/es5-ext/test/array/#/is-uniq.js +11 -0
  851. data/node_modules/es5-ext/test/array/#/keys/implement.js +5 -0
  852. data/node_modules/es5-ext/test/array/#/keys/index.js +3 -0
  853. data/node_modules/es5-ext/test/array/#/keys/is-implemented.js +3 -0
  854. data/node_modules/es5-ext/test/array/#/keys/shim.js +9 -0
  855. data/node_modules/es5-ext/test/array/#/last-index.js +17 -0
  856. data/node_modules/es5-ext/test/array/#/last.js +15 -0
  857. data/node_modules/es5-ext/test/array/#/map/implement.js +5 -0
  858. data/node_modules/es5-ext/test/array/#/map/index.js +3 -0
  859. data/node_modules/es5-ext/test/array/#/map/is-implemented.js +3 -0
  860. data/node_modules/es5-ext/test/array/#/map/shim.js +19 -0
  861. data/node_modules/es5-ext/test/array/#/remove.js +14 -0
  862. data/node_modules/es5-ext/test/array/#/separate.js +15 -0
  863. data/node_modules/es5-ext/test/array/#/slice/implement.js +5 -0
  864. data/node_modules/es5-ext/test/array/#/slice/index.js +3 -0
  865. data/node_modules/es5-ext/test/array/#/slice/is-implemented.js +3 -0
  866. data/node_modules/es5-ext/test/array/#/slice/shim.js +17 -0
  867. data/node_modules/es5-ext/test/array/#/some-right.js +43 -0
  868. data/node_modules/es5-ext/test/array/#/splice/implement.js +5 -0
  869. data/node_modules/es5-ext/test/array/#/splice/index.js +3 -0
  870. data/node_modules/es5-ext/test/array/#/splice/is-implemented.js +3 -0
  871. data/node_modules/es5-ext/test/array/#/splice/shim.js +19 -0
  872. data/node_modules/es5-ext/test/array/#/uniq.js +14 -0
  873. data/node_modules/es5-ext/test/array/#/values/implement.js +5 -0
  874. data/node_modules/es5-ext/test/array/#/values/index.js +3 -0
  875. data/node_modules/es5-ext/test/array/#/values/is-implemented.js +3 -0
  876. data/node_modules/es5-ext/test/array/#/values/shim.js +9 -0
  877. data/node_modules/es5-ext/test/array/__scopes.js +11 -0
  878. data/node_modules/es5-ext/test/array/_is-extensible.js +5 -0
  879. data/node_modules/es5-ext/test/array/_sub-array-dummy-safe.js +7 -0
  880. data/node_modules/es5-ext/test/array/_sub-array-dummy.js +7 -0
  881. data/node_modules/es5-ext/test/array/from/implement.js +5 -0
  882. data/node_modules/es5-ext/test/array/from/index.js +3 -0
  883. data/node_modules/es5-ext/test/array/from/is-implemented.js +3 -0
  884. data/node_modules/es5-ext/test/array/from/shim.js +60 -0
  885. data/node_modules/es5-ext/test/array/generate.js +10 -0
  886. data/node_modules/es5-ext/test/array/is-plain-array.js +18 -0
  887. data/node_modules/es5-ext/test/array/of/implement.js +5 -0
  888. data/node_modules/es5-ext/test/array/of/index.js +3 -0
  889. data/node_modules/es5-ext/test/array/of/is-implemented.js +3 -0
  890. data/node_modules/es5-ext/test/array/of/shim.js +68 -0
  891. data/node_modules/es5-ext/test/array/to-array.js +13 -0
  892. data/node_modules/es5-ext/test/array/valid-array.js +14 -0
  893. data/node_modules/es5-ext/test/boolean/is-boolean.js +12 -0
  894. data/node_modules/es5-ext/test/date/#/copy.js +10 -0
  895. data/node_modules/es5-ext/test/date/#/days-in-month.js +17 -0
  896. data/node_modules/es5-ext/test/date/#/floor-day.js +6 -0
  897. data/node_modules/es5-ext/test/date/#/floor-month.js +6 -0
  898. data/node_modules/es5-ext/test/date/#/floor-year.js +6 -0
  899. data/node_modules/es5-ext/test/date/#/format.js +6 -0
  900. data/node_modules/es5-ext/test/date/is-date.js +10 -0
  901. data/node_modules/es5-ext/test/date/valid-date.js +12 -0
  902. data/node_modules/es5-ext/test/error/#/throw.js +10 -0
  903. data/node_modules/es5-ext/test/error/custom.js +12 -0
  904. data/node_modules/es5-ext/test/error/is-error.js +16 -0
  905. data/node_modules/es5-ext/test/error/valid-error.js +9 -0
  906. data/node_modules/es5-ext/test/function/#/compose.js +9 -0
  907. data/node_modules/es5-ext/test/function/#/copy.js +19 -0
  908. data/node_modules/es5-ext/test/function/#/curry.js +18 -0
  909. data/node_modules/es5-ext/test/function/#/lock.js +7 -0
  910. data/node_modules/es5-ext/test/function/#/not.js +11 -0
  911. data/node_modules/es5-ext/test/function/#/partial.js +9 -0
  912. data/node_modules/es5-ext/test/function/#/spread.js +8 -0
  913. data/node_modules/es5-ext/test/function/#/to-string-tokens.js +12 -0
  914. data/node_modules/es5-ext/test/function/_define-length.js +12 -0
  915. data/node_modules/es5-ext/test/function/constant.js +7 -0
  916. data/node_modules/es5-ext/test/function/identity.js +7 -0
  917. data/node_modules/es5-ext/test/function/invoke.js +9 -0
  918. data/node_modules/es5-ext/test/function/is-arguments.js +11 -0
  919. data/node_modules/es5-ext/test/function/is-function.js +8 -0
  920. data/node_modules/es5-ext/test/function/noop.js +5 -0
  921. data/node_modules/es5-ext/test/function/pluck.js +7 -0
  922. data/node_modules/es5-ext/test/function/valid-function.js +17 -0
  923. data/node_modules/es5-ext/test/global.js +5 -0
  924. data/node_modules/es5-ext/test/iterable/for-each.js +40 -0
  925. data/node_modules/es5-ext/test/iterable/is.js +20 -0
  926. data/node_modules/es5-ext/test/iterable/validate-object.js +20 -0
  927. data/node_modules/es5-ext/test/iterable/validate.js +20 -0
  928. data/node_modules/es5-ext/test/json/safe-stringify.js +15 -0
  929. data/node_modules/es5-ext/test/math/_pack-ieee754.js +5 -0
  930. data/node_modules/es5-ext/test/math/_unpack-ieee754.js +5 -0
  931. data/node_modules/es5-ext/test/math/acosh/implement.js +5 -0
  932. data/node_modules/es5-ext/test/math/acosh/index.js +3 -0
  933. data/node_modules/es5-ext/test/math/acosh/is-implemented.js +3 -0
  934. data/node_modules/es5-ext/test/math/acosh/shim.js +11 -0
  935. data/node_modules/es5-ext/test/math/asinh/implement.js +5 -0
  936. data/node_modules/es5-ext/test/math/asinh/index.js +3 -0
  937. data/node_modules/es5-ext/test/math/asinh/is-implemented.js +3 -0
  938. data/node_modules/es5-ext/test/math/asinh/shim.js +10 -0
  939. data/node_modules/es5-ext/test/math/atanh/implement.js +5 -0
  940. data/node_modules/es5-ext/test/math/atanh/index.js +3 -0
  941. data/node_modules/es5-ext/test/math/atanh/is-implemented.js +3 -0
  942. data/node_modules/es5-ext/test/math/atanh/shim.js +11 -0
  943. data/node_modules/es5-ext/test/math/cbrt/implement.js +5 -0
  944. data/node_modules/es5-ext/test/math/cbrt/index.js +3 -0
  945. data/node_modules/es5-ext/test/math/cbrt/is-implemented.js +3 -0
  946. data/node_modules/es5-ext/test/math/cbrt/shim.js +11 -0
  947. data/node_modules/es5-ext/test/math/clz32/implement.js +5 -0
  948. data/node_modules/es5-ext/test/math/clz32/index.js +3 -0
  949. data/node_modules/es5-ext/test/math/clz32/is-implemented.js +3 -0
  950. data/node_modules/es5-ext/test/math/clz32/shim.js +12 -0
  951. data/node_modules/es5-ext/test/math/cosh/implement.js +5 -0
  952. data/node_modules/es5-ext/test/math/cosh/index.js +3 -0
  953. data/node_modules/es5-ext/test/math/cosh/is-implemented.js +3 -0
  954. data/node_modules/es5-ext/test/math/cosh/shim.js +13 -0
  955. data/node_modules/es5-ext/test/math/expm1/implement.js +5 -0
  956. data/node_modules/es5-ext/test/math/expm1/index.js +3 -0
  957. data/node_modules/es5-ext/test/math/expm1/is-implemented.js +3 -0
  958. data/node_modules/es5-ext/test/math/expm1/shim.js +9 -0
  959. data/node_modules/es5-ext/test/math/fround/implement.js +5 -0
  960. data/node_modules/es5-ext/test/math/fround/index.js +3 -0
  961. data/node_modules/es5-ext/test/math/fround/is-implemented.js +3 -0
  962. data/node_modules/es5-ext/test/math/fround/shim.js +9 -0
  963. data/node_modules/es5-ext/test/math/hypot/implement.js +5 -0
  964. data/node_modules/es5-ext/test/math/hypot/index.js +3 -0
  965. data/node_modules/es5-ext/test/math/hypot/is-implemented.js +3 -0
  966. data/node_modules/es5-ext/test/math/hypot/shim.js +11 -0
  967. data/node_modules/es5-ext/test/math/imul/implement.js +5 -0
  968. data/node_modules/es5-ext/test/math/imul/index.js +3 -0
  969. data/node_modules/es5-ext/test/math/imul/is-implemented.js +3 -0
  970. data/node_modules/es5-ext/test/math/imul/shim.js +9 -0
  971. data/node_modules/es5-ext/test/math/log10/implement.js +5 -0
  972. data/node_modules/es5-ext/test/math/log10/index.js +3 -0
  973. data/node_modules/es5-ext/test/math/log10/is-implemented.js +3 -0
  974. data/node_modules/es5-ext/test/math/log10/shim.js +10 -0
  975. data/node_modules/es5-ext/test/math/log1p/implement.js +5 -0
  976. data/node_modules/es5-ext/test/math/log1p/index.js +3 -0
  977. data/node_modules/es5-ext/test/math/log1p/is-implemented.js +3 -0
  978. data/node_modules/es5-ext/test/math/log1p/shim.js +10 -0
  979. data/node_modules/es5-ext/test/math/log2/implement.js +5 -0
  980. data/node_modules/es5-ext/test/math/log2/index.js +3 -0
  981. data/node_modules/es5-ext/test/math/log2/is-implemented.js +3 -0
  982. data/node_modules/es5-ext/test/math/log2/shim.js +10 -0
  983. data/node_modules/es5-ext/test/math/sign/implement.js +5 -0
  984. data/node_modules/es5-ext/test/math/sign/index.js +3 -0
  985. data/node_modules/es5-ext/test/math/sign/is-implemented.js +3 -0
  986. data/node_modules/es5-ext/test/math/sign/shim.js +11 -0
  987. data/node_modules/es5-ext/test/math/sinh/implement.js +5 -0
  988. data/node_modules/es5-ext/test/math/sinh/index.js +3 -0
  989. data/node_modules/es5-ext/test/math/sinh/is-implemented.js +3 -0
  990. data/node_modules/es5-ext/test/math/sinh/shim.js +13 -0
  991. data/node_modules/es5-ext/test/math/tanh/implement.js +5 -0
  992. data/node_modules/es5-ext/test/math/tanh/index.js +3 -0
  993. data/node_modules/es5-ext/test/math/tanh/is-implemented.js +3 -0
  994. data/node_modules/es5-ext/test/math/tanh/shim.js +11 -0
  995. data/node_modules/es5-ext/test/math/trunc/implement.js +5 -0
  996. data/node_modules/es5-ext/test/math/trunc/index.js +3 -0
  997. data/node_modules/es5-ext/test/math/trunc/is-implemented.js +3 -0
  998. data/node_modules/es5-ext/test/math/trunc/shim.js +16 -0
  999. data/node_modules/es5-ext/test/number/#/pad.js +7 -0
  1000. data/node_modules/es5-ext/test/number/epsilon/implement.js +5 -0
  1001. data/node_modules/es5-ext/test/number/epsilon/index.js +5 -0
  1002. data/node_modules/es5-ext/test/number/epsilon/is-implemented.js +3 -0
  1003. data/node_modules/es5-ext/test/number/is-finite/implement.js +5 -0
  1004. data/node_modules/es5-ext/test/number/is-finite/index.js +3 -0
  1005. data/node_modules/es5-ext/test/number/is-finite/is-implemented.js +3 -0
  1006. data/node_modules/es5-ext/test/number/is-finite/shim.js +8 -0
  1007. data/node_modules/es5-ext/test/number/is-integer/implement.js +5 -0
  1008. data/node_modules/es5-ext/test/number/is-integer/index.js +3 -0
  1009. data/node_modules/es5-ext/test/number/is-integer/is-implemented.js +3 -0
  1010. data/node_modules/es5-ext/test/number/is-integer/shim.js +9 -0
  1011. data/node_modules/es5-ext/test/number/is-nan/implement.js +5 -0
  1012. data/node_modules/es5-ext/test/number/is-nan/index.js +3 -0
  1013. data/node_modules/es5-ext/test/number/is-nan/is-implemented.js +3 -0
  1014. data/node_modules/es5-ext/test/number/is-nan/shim.js +7 -0
  1015. data/node_modules/es5-ext/test/number/is-natural.js +10 -0
  1016. data/node_modules/es5-ext/test/number/is-number.js +13 -0
  1017. data/node_modules/es5-ext/test/number/is-safe-integer/implement.js +5 -0
  1018. data/node_modules/es5-ext/test/number/is-safe-integer/index.js +3 -0
  1019. data/node_modules/es5-ext/test/number/is-safe-integer/is-implemented.js +3 -0
  1020. data/node_modules/es5-ext/test/number/is-safe-integer/shim.js +11 -0
  1021. data/node_modules/es5-ext/test/number/max-safe-integer/implement.js +5 -0
  1022. data/node_modules/es5-ext/test/number/max-safe-integer/index.js +5 -0
  1023. data/node_modules/es5-ext/test/number/max-safe-integer/is-implemented.js +3 -0
  1024. data/node_modules/es5-ext/test/number/min-safe-integer/implement.js +5 -0
  1025. data/node_modules/es5-ext/test/number/min-safe-integer/index.js +5 -0
  1026. data/node_modules/es5-ext/test/number/min-safe-integer/is-implemented.js +3 -0
  1027. data/node_modules/es5-ext/test/number/to-integer.js +10 -0
  1028. data/node_modules/es5-ext/test/number/to-pos-integer.js +10 -0
  1029. data/node_modules/es5-ext/test/number/to-uint32.js +8 -0
  1030. data/node_modules/es5-ext/test/object/_iterate.js +30 -0
  1031. data/node_modules/es5-ext/test/object/assign/implement.js +5 -0
  1032. data/node_modules/es5-ext/test/object/assign/index.js +3 -0
  1033. data/node_modules/es5-ext/test/object/assign/is-implemented.js +3 -0
  1034. data/node_modules/es5-ext/test/object/assign/shim.js +11 -0
  1035. data/node_modules/es5-ext/test/object/clear.js +13 -0
  1036. data/node_modules/es5-ext/test/object/compact.js +14 -0
  1037. data/node_modules/es5-ext/test/object/compare.js +13 -0
  1038. data/node_modules/es5-ext/test/object/copy-deep.js +28 -0
  1039. data/node_modules/es5-ext/test/object/copy.js +19 -0
  1040. data/node_modules/es5-ext/test/object/count.js +11 -0
  1041. data/node_modules/es5-ext/test/object/create.js +22 -0
  1042. data/node_modules/es5-ext/test/object/ensure-natural-number-value.js +12 -0
  1043. data/node_modules/es5-ext/test/object/ensure-natural-number.js +12 -0
  1044. data/node_modules/es5-ext/test/object/eq.js +12 -0
  1045. data/node_modules/es5-ext/test/object/every.js +21 -0
  1046. data/node_modules/es5-ext/test/object/filter.js +6 -0
  1047. data/node_modules/es5-ext/test/object/find-key.js +23 -0
  1048. data/node_modules/es5-ext/test/object/find.js +23 -0
  1049. data/node_modules/es5-ext/test/object/first-key.js +13 -0
  1050. data/node_modules/es5-ext/test/object/flatten.js +6 -0
  1051. data/node_modules/es5-ext/test/object/for-each.js +10 -0
  1052. data/node_modules/es5-ext/test/object/get-property-names.js +18 -0
  1053. data/node_modules/es5-ext/test/object/is-array-like.js +14 -0
  1054. data/node_modules/es5-ext/test/object/is-callable.js +8 -0
  1055. data/node_modules/es5-ext/test/object/is-copy-deep.js +46 -0
  1056. data/node_modules/es5-ext/test/object/is-copy.js +18 -0
  1057. data/node_modules/es5-ext/test/object/is-empty.js +6 -0
  1058. data/node_modules/es5-ext/test/object/is-number-value.js +15 -0
  1059. data/node_modules/es5-ext/test/object/is-object.js +13 -0
  1060. data/node_modules/es5-ext/test/object/is-plain-object.js +18 -0
  1061. data/node_modules/es5-ext/test/object/is-value.js +14 -0
  1062. data/node_modules/es5-ext/test/object/is.js +12 -0
  1063. data/node_modules/es5-ext/test/object/key-of.js +12 -0
  1064. data/node_modules/es5-ext/test/object/keys/implement.js +5 -0
  1065. data/node_modules/es5-ext/test/object/keys/index.js +3 -0
  1066. data/node_modules/es5-ext/test/object/keys/is-implemented.js +3 -0
  1067. data/node_modules/es5-ext/test/object/keys/shim.js +8 -0
  1068. data/node_modules/es5-ext/test/object/map-keys.js +7 -0
  1069. data/node_modules/es5-ext/test/object/map.js +9 -0
  1070. data/node_modules/es5-ext/test/object/mixin-prototypes.js +67 -0
  1071. data/node_modules/es5-ext/test/object/mixin.js +69 -0
  1072. data/node_modules/es5-ext/test/object/normalize-options.js +32 -0
  1073. data/node_modules/es5-ext/test/object/primitive-set.js +15 -0
  1074. data/node_modules/es5-ext/test/object/safe-traverse.js +15 -0
  1075. data/node_modules/es5-ext/test/object/serialize.js +25 -0
  1076. data/node_modules/es5-ext/test/object/set-prototype-of/implement.js +6 -0
  1077. data/node_modules/es5-ext/test/object/set-prototype-of/index.js +23 -0
  1078. data/node_modules/es5-ext/test/object/set-prototype-of/is-implemented.js +3 -0
  1079. data/node_modules/es5-ext/test/object/set-prototype-of/shim.js +23 -0
  1080. data/node_modules/es5-ext/test/object/some.js +23 -0
  1081. data/node_modules/es5-ext/test/object/to-array.js +15 -0
  1082. data/node_modules/es5-ext/test/object/unserialize.js +24 -0
  1083. data/node_modules/es5-ext/test/object/valid-callable.js +9 -0
  1084. data/node_modules/es5-ext/test/object/valid-object.js +15 -0
  1085. data/node_modules/es5-ext/test/object/valid-value.js +19 -0
  1086. data/node_modules/es5-ext/test/object/validate-array-like-object.js +15 -0
  1087. data/node_modules/es5-ext/test/object/validate-array-like.js +15 -0
  1088. data/node_modules/es5-ext/test/object/validate-stringifiable-value.js +16 -0
  1089. data/node_modules/es5-ext/test/object/validate-stringifiable.js +16 -0
  1090. data/node_modules/es5-ext/test/reg-exp/#/index.js +12 -0
  1091. data/node_modules/es5-ext/test/reg-exp/#/is-sticky.js +10 -0
  1092. data/node_modules/es5-ext/test/reg-exp/#/is-unicode.js +10 -0
  1093. data/node_modules/es5-ext/test/reg-exp/#/match/implement.js +5 -0
  1094. data/node_modules/es5-ext/test/reg-exp/#/match/index.js +3 -0
  1095. data/node_modules/es5-ext/test/reg-exp/#/match/is-implemented.js +3 -0
  1096. data/node_modules/es5-ext/test/reg-exp/#/match/shim.js +8 -0
  1097. data/node_modules/es5-ext/test/reg-exp/#/replace/implement.js +5 -0
  1098. data/node_modules/es5-ext/test/reg-exp/#/replace/index.js +3 -0
  1099. data/node_modules/es5-ext/test/reg-exp/#/replace/is-implemented.js +3 -0
  1100. data/node_modules/es5-ext/test/reg-exp/#/replace/shim.js +5 -0
  1101. data/node_modules/es5-ext/test/reg-exp/#/search/implement.js +5 -0
  1102. data/node_modules/es5-ext/test/reg-exp/#/search/index.js +3 -0
  1103. data/node_modules/es5-ext/test/reg-exp/#/search/is-implemented.js +3 -0
  1104. data/node_modules/es5-ext/test/reg-exp/#/search/shim.js +5 -0
  1105. data/node_modules/es5-ext/test/reg-exp/#/split/implement.js +5 -0
  1106. data/node_modules/es5-ext/test/reg-exp/#/split/index.js +3 -0
  1107. data/node_modules/es5-ext/test/reg-exp/#/split/is-implemented.js +3 -0
  1108. data/node_modules/es5-ext/test/reg-exp/#/split/shim.js +5 -0
  1109. data/node_modules/es5-ext/test/reg-exp/#/sticky/implement.js +5 -0
  1110. data/node_modules/es5-ext/test/reg-exp/#/sticky/is-implemented.js +3 -0
  1111. data/node_modules/es5-ext/test/reg-exp/#/unicode/implement.js +5 -0
  1112. data/node_modules/es5-ext/test/reg-exp/#/unicode/is-implemented.js +3 -0
  1113. data/node_modules/es5-ext/test/reg-exp/escape.js +6 -0
  1114. data/node_modules/es5-ext/test/reg-exp/is-reg-exp.js +12 -0
  1115. data/node_modules/es5-ext/test/reg-exp/valid-reg-exp.js +17 -0
  1116. data/node_modules/es5-ext/test/string/#/@@iterator/implement.js +5 -0
  1117. data/node_modules/es5-ext/test/string/#/@@iterator/index.js +3 -0
  1118. data/node_modules/es5-ext/test/string/#/@@iterator/is-implemented.js +3 -0
  1119. data/node_modules/es5-ext/test/string/#/@@iterator/shim.js +9 -0
  1120. data/node_modules/es5-ext/test/string/#/at.js +97 -0
  1121. data/node_modules/es5-ext/test/string/#/camel-to-hyphen.js +7 -0
  1122. data/node_modules/es5-ext/test/string/#/capitalize.js +9 -0
  1123. data/node_modules/es5-ext/test/string/#/case-insensitive-compare.js +7 -0
  1124. data/node_modules/es5-ext/test/string/#/code-point-at/implement.js +6 -0
  1125. data/node_modules/es5-ext/test/string/#/code-point-at/index.js +3 -0
  1126. data/node_modules/es5-ext/test/string/#/code-point-at/is-implemented.js +3 -0
  1127. data/node_modules/es5-ext/test/string/#/code-point-at/shim.js +81 -0
  1128. data/node_modules/es5-ext/test/string/#/contains/implement.js +5 -0
  1129. data/node_modules/es5-ext/test/string/#/contains/index.js +3 -0
  1130. data/node_modules/es5-ext/test/string/#/contains/is-implemented.js +3 -0
  1131. data/node_modules/es5-ext/test/string/#/contains/shim.js +14 -0
  1132. data/node_modules/es5-ext/test/string/#/ends-with/implement.js +5 -0
  1133. data/node_modules/es5-ext/test/string/#/ends-with/index.js +3 -0
  1134. data/node_modules/es5-ext/test/string/#/ends-with/is-implemented.js +3 -0
  1135. data/node_modules/es5-ext/test/string/#/ends-with/shim.js +16 -0
  1136. data/node_modules/es5-ext/test/string/#/hyphen-to-camel.js +7 -0
  1137. data/node_modules/es5-ext/test/string/#/indent.js +9 -0
  1138. data/node_modules/es5-ext/test/string/#/last.js +6 -0
  1139. data/node_modules/es5-ext/test/string/#/normalize/_data.js +3 -0
  1140. data/node_modules/es5-ext/test/string/#/normalize/implement.js +5 -0
  1141. data/node_modules/es5-ext/test/string/#/normalize/index.js +3 -0
  1142. data/node_modules/es5-ext/test/string/#/normalize/is-implemented.js +3 -0
  1143. data/node_modules/es5-ext/test/string/#/normalize/shim.js +13 -0
  1144. data/node_modules/es5-ext/test/string/#/pad.js +24 -0
  1145. data/node_modules/es5-ext/test/string/#/plain-replace-all.js +11 -0
  1146. data/node_modules/es5-ext/test/string/#/plain-replace.js +7 -0
  1147. data/node_modules/es5-ext/test/string/#/repeat/implement.js +5 -0
  1148. data/node_modules/es5-ext/test/string/#/repeat/index.js +3 -0
  1149. data/node_modules/es5-ext/test/string/#/repeat/is-implemented.js +3 -0
  1150. data/node_modules/es5-ext/test/string/#/repeat/shim.js +8 -0
  1151. data/node_modules/es5-ext/test/string/#/starts-with/implement.js +5 -0
  1152. data/node_modules/es5-ext/test/string/#/starts-with/index.js +3 -0
  1153. data/node_modules/es5-ext/test/string/#/starts-with/is-implemented.js +3 -0
  1154. data/node_modules/es5-ext/test/string/#/starts-with/shim.js +14 -0
  1155. data/node_modules/es5-ext/test/string/#/uncapitalize.js +10 -0
  1156. data/node_modules/es5-ext/test/string/format-method.js +7 -0
  1157. data/node_modules/es5-ext/test/string/from-code-point/implement.js +5 -0
  1158. data/node_modules/es5-ext/test/string/from-code-point/index.js +3 -0
  1159. data/node_modules/es5-ext/test/string/from-code-point/is-implemented.js +3 -0
  1160. data/node_modules/es5-ext/test/string/from-code-point/shim.js +47 -0
  1161. data/node_modules/es5-ext/test/string/is-string.js +11 -0
  1162. data/node_modules/es5-ext/test/string/random-uniq.js +14 -0
  1163. data/node_modules/es5-ext/test/string/raw/implement.js +5 -0
  1164. data/node_modules/es5-ext/test/string/raw/index.js +3 -0
  1165. data/node_modules/es5-ext/test/string/raw/is-implemented.js +3 -0
  1166. data/node_modules/es5-ext/test/string/raw/shim.js +15 -0
  1167. data/node_modules/es6-iterator/#/chain.js +40 -0
  1168. data/node_modules/es6-iterator/.lint +11 -0
  1169. data/node_modules/es6-iterator/.npmignore +4 -0
  1170. data/node_modules/es6-iterator/.travis.yml +13 -0
  1171. data/node_modules/es6-iterator/CHANGES +38 -0
  1172. data/node_modules/es6-iterator/LICENSE +21 -0
  1173. data/node_modules/es6-iterator/README.md +148 -0
  1174. data/node_modules/es6-iterator/array.js +30 -0
  1175. data/node_modules/es6-iterator/for-of.js +46 -0
  1176. data/node_modules/es6-iterator/get.js +15 -0
  1177. data/node_modules/es6-iterator/index.js +90 -0
  1178. data/node_modules/es6-iterator/is-iterable.js +15 -0
  1179. data/node_modules/es6-iterator/package.json +35 -0
  1180. data/node_modules/es6-iterator/string.js +37 -0
  1181. data/node_modules/es6-iterator/test/#/chain.js +23 -0
  1182. data/node_modules/es6-iterator/test/array.js +67 -0
  1183. data/node_modules/es6-iterator/test/for-of.js +40 -0
  1184. data/node_modules/es6-iterator/test/get.js +17 -0
  1185. data/node_modules/es6-iterator/test/index.js +99 -0
  1186. data/node_modules/es6-iterator/test/is-iterable.js +19 -0
  1187. data/node_modules/es6-iterator/test/string.js +23 -0
  1188. data/node_modules/es6-iterator/test/valid-iterable.js +18 -0
  1189. data/node_modules/es6-iterator/valid-iterable.js +8 -0
  1190. data/node_modules/es6-map/.lint +13 -0
  1191. data/node_modules/es6-map/.npmignore +4 -0
  1192. data/node_modules/es6-map/.travis.yml +13 -0
  1193. data/node_modules/es6-map/CHANGES +33 -0
  1194. data/node_modules/es6-map/LICENSE +19 -0
  1195. data/node_modules/es6-map/README.md +79 -0
  1196. data/node_modules/es6-map/implement.js +7 -0
  1197. data/node_modules/es6-map/index.js +3 -0
  1198. data/node_modules/es6-map/is-implemented.js +32 -0
  1199. data/node_modules/es6-map/is-map.js +12 -0
  1200. data/node_modules/es6-map/is-native-implemented.js +9 -0
  1201. data/node_modules/es6-map/lib/iterator-kinds.js +4 -0
  1202. data/node_modules/es6-map/lib/iterator.js +38 -0
  1203. data/node_modules/es6-map/lib/primitive-iterator.js +57 -0
  1204. data/node_modules/es6-map/package.json +41 -0
  1205. data/node_modules/es6-map/polyfill.js +104 -0
  1206. data/node_modules/es6-map/primitive/index.js +117 -0
  1207. data/node_modules/es6-map/test/implement.js +3 -0
  1208. data/node_modules/es6-map/test/index.js +5 -0
  1209. data/node_modules/es6-map/test/is-implemented.js +14 -0
  1210. data/node_modules/es6-map/test/is-map.js +16 -0
  1211. data/node_modules/es6-map/test/is-native-implemented.js +3 -0
  1212. data/node_modules/es6-map/test/lib/iterator-kinds.js +5 -0
  1213. data/node_modules/es6-map/test/lib/iterator.js +13 -0
  1214. data/node_modules/es6-map/test/lib/primitive-iterator.js +130 -0
  1215. data/node_modules/es6-map/test/polyfill.js +60 -0
  1216. data/node_modules/es6-map/test/primitive/index.js +59 -0
  1217. data/node_modules/es6-map/test/valid-map.js +19 -0
  1218. data/node_modules/es6-map/valid-map.js +8 -0
  1219. data/node_modules/es6-set/.lint +13 -0
  1220. data/node_modules/es6-set/.npmignore +4 -0
  1221. data/node_modules/es6-set/.travis.yml +13 -0
  1222. data/node_modules/es6-set/CHANGES +34 -0
  1223. data/node_modules/es6-set/LICENSE +19 -0
  1224. data/node_modules/es6-set/README.md +74 -0
  1225. data/node_modules/es6-set/ext/copy.js +5 -0
  1226. data/node_modules/es6-set/ext/every.js +18 -0
  1227. data/node_modules/es6-set/ext/filter.js +18 -0
  1228. data/node_modules/es6-set/ext/get-first.js +5 -0
  1229. data/node_modules/es6-set/ext/get-last.js +11 -0
  1230. data/node_modules/es6-set/ext/some.js +18 -0
  1231. data/node_modules/es6-set/implement.js +7 -0
  1232. data/node_modules/es6-set/index.js +3 -0
  1233. data/node_modules/es6-set/is-implemented.js +24 -0
  1234. data/node_modules/es6-set/is-native-implemented.js +9 -0
  1235. data/node_modules/es6-set/is-set.js +12 -0
  1236. data/node_modules/es6-set/lib/iterator.js +30 -0
  1237. data/node_modules/es6-set/lib/primitive-iterator.js +53 -0
  1238. data/node_modules/es6-set/package.json +36 -0
  1239. data/node_modules/es6-set/polyfill.js +80 -0
  1240. data/node_modules/es6-set/primitive/index.js +87 -0
  1241. data/node_modules/es6-set/test/ext/copy.js +12 -0
  1242. data/node_modules/es6-set/test/ext/every.js +9 -0
  1243. data/node_modules/es6-set/test/ext/filter.js +12 -0
  1244. data/node_modules/es6-set/test/ext/get-first.js +12 -0
  1245. data/node_modules/es6-set/test/ext/get-last.js +12 -0
  1246. data/node_modules/es6-set/test/ext/some.js +10 -0
  1247. data/node_modules/es6-set/test/implement.js +3 -0
  1248. data/node_modules/es6-set/test/index.js +3 -0
  1249. data/node_modules/es6-set/test/is-implemented.js +14 -0
  1250. data/node_modules/es6-set/test/is-native-implemented.js +3 -0
  1251. data/node_modules/es6-set/test/is-set.js +16 -0
  1252. data/node_modules/es6-set/test/lib/iterator.js +13 -0
  1253. data/node_modules/es6-set/test/lib/primitive-iterator.js +113 -0
  1254. data/node_modules/es6-set/test/polyfill.js +50 -0
  1255. data/node_modules/es6-set/test/primitive/index.js +50 -0
  1256. data/node_modules/es6-set/test/valid-set.js +19 -0
  1257. data/node_modules/es6-set/valid-set.js +8 -0
  1258. data/node_modules/es6-symbol/.lint +15 -0
  1259. data/node_modules/es6-symbol/.npmignore +4 -0
  1260. data/node_modules/es6-symbol/.travis.yml +11 -0
  1261. data/node_modules/es6-symbol/CHANGES +57 -0
  1262. data/node_modules/es6-symbol/LICENSE +19 -0
  1263. data/node_modules/es6-symbol/README.md +71 -0
  1264. data/node_modules/es6-symbol/implement.js +7 -0
  1265. data/node_modules/es6-symbol/index.js +3 -0
  1266. data/node_modules/es6-symbol/is-implemented.js +17 -0
  1267. data/node_modules/es6-symbol/is-native-implemented.js +5 -0
  1268. data/node_modules/es6-symbol/is-symbol.js +9 -0
  1269. data/node_modules/es6-symbol/package.json +35 -0
  1270. data/node_modules/es6-symbol/polyfill.js +118 -0
  1271. data/node_modules/es6-symbol/test/implement.js +3 -0
  1272. data/node_modules/es6-symbol/test/index.js +12 -0
  1273. data/node_modules/es6-symbol/test/is-implemented.js +14 -0
  1274. data/node_modules/es6-symbol/test/is-native-implemented.js +3 -0
  1275. data/node_modules/es6-symbol/test/is-symbol.js +16 -0
  1276. data/node_modules/es6-symbol/test/polyfill.js +29 -0
  1277. data/node_modules/es6-symbol/test/validate-symbol.js +19 -0
  1278. data/node_modules/es6-symbol/validate-symbol.js +8 -0
  1279. data/node_modules/es6-weak-map/.lint +13 -0
  1280. data/node_modules/es6-weak-map/.npmignore +4 -0
  1281. data/node_modules/es6-weak-map/.travis.yml +13 -0
  1282. data/node_modules/es6-weak-map/CHANGES +45 -0
  1283. data/node_modules/es6-weak-map/LICENSE +19 -0
  1284. data/node_modules/es6-weak-map/README.md +63 -0
  1285. data/node_modules/es6-weak-map/implement.js +7 -0
  1286. data/node_modules/es6-weak-map/index.js +3 -0
  1287. data/node_modules/es6-weak-map/is-implemented.js +20 -0
  1288. data/node_modules/es6-weak-map/is-native-implemented.js +8 -0
  1289. data/node_modules/es6-weak-map/is-weak-map.js +13 -0
  1290. data/node_modules/es6-weak-map/package.json +38 -0
  1291. data/node_modules/es6-weak-map/polyfill.js +66 -0
  1292. data/node_modules/es6-weak-map/test/implement.js +3 -0
  1293. data/node_modules/es6-weak-map/test/index.js +6 -0
  1294. data/node_modules/es6-weak-map/test/is-implemented.js +14 -0
  1295. data/node_modules/es6-weak-map/test/is-native-implemented.js +3 -0
  1296. data/node_modules/es6-weak-map/test/is-weak-map.js +16 -0
  1297. data/node_modules/es6-weak-map/test/polyfill.js +23 -0
  1298. data/node_modules/es6-weak-map/test/valid-weak-map.js +19 -0
  1299. data/node_modules/es6-weak-map/valid-weak-map.js +8 -0
  1300. data/node_modules/escape-string-regexp/index.js +11 -0
  1301. data/node_modules/escape-string-regexp/license +21 -0
  1302. data/node_modules/escape-string-regexp/package.json +41 -0
  1303. data/node_modules/escape-string-regexp/readme.md +27 -0
  1304. data/node_modules/escope/.babelrc +3 -0
  1305. data/node_modules/escope/.jshintrc +20 -0
  1306. data/node_modules/escope/CONTRIBUTING.md +5 -0
  1307. data/node_modules/escope/LICENSE.BSD +19 -0
  1308. data/node_modules/escope/README.md +79 -0
  1309. data/node_modules/escope/bower.json +13 -0
  1310. data/node_modules/escope/gulpfile.js +153 -0
  1311. data/node_modules/escope/lib/definition.js +106 -0
  1312. data/node_modules/escope/lib/index.js +177 -0
  1313. data/node_modules/escope/lib/pattern-visitor.js +176 -0
  1314. data/node_modules/escope/lib/reference.js +193 -0
  1315. data/node_modules/escope/lib/referencer.js +639 -0
  1316. data/node_modules/escope/lib/scope-manager.js +297 -0
  1317. data/node_modules/escope/lib/scope.js +764 -0
  1318. data/node_modules/escope/lib/variable.js +94 -0
  1319. data/node_modules/escope/package.json +57 -0
  1320. data/node_modules/escope/powered-test/arguments.js +34 -0
  1321. data/node_modules/escope/powered-test/catch-scope.js +39 -0
  1322. data/node_modules/escope/powered-test/es6-arrow-function-expression.js +57 -0
  1323. data/node_modules/escope/powered-test/es6-block-scope.js +136 -0
  1324. data/node_modules/escope/powered-test/es6-catch.js +39 -0
  1325. data/node_modules/escope/powered-test/es6-class.js +155 -0
  1326. data/node_modules/escope/powered-test/es6-destructuring-assignments.js +504 -0
  1327. data/node_modules/escope/powered-test/es6-export.js +202 -0
  1328. data/node_modules/escope/powered-test/es6-import.js +103 -0
  1329. data/node_modules/escope/powered-test/es6-iteration-scope.js +167 -0
  1330. data/node_modules/escope/powered-test/es6-object.js +57 -0
  1331. data/node_modules/escope/powered-test/es6-rest-args.js +35 -0
  1332. data/node_modules/escope/powered-test/es6-switch.js +43 -0
  1333. data/node_modules/escope/powered-test/es6-template-literal.js +45 -0
  1334. data/node_modules/escope/powered-test/function-expression-name.js +42 -0
  1335. data/node_modules/escope/powered-test/global-increment.js +28 -0
  1336. data/node_modules/escope/powered-test/implicit-global-reference.js +113 -0
  1337. data/node_modules/escope/powered-test/label-children.js +34 -0
  1338. data/node_modules/escope/powered-test/label.js +47 -0
  1339. data/node_modules/escope/powered-test/nodejs-scope.js +65 -0
  1340. data/node_modules/escope/powered-test/object-expression.js +56 -0
  1341. data/node_modules/escope/powered-test/optimistic.js +40 -0
  1342. data/node_modules/escope/powered-test/with-scope.js +40 -0
  1343. data/node_modules/escope/src/definition.js +78 -0
  1344. data/node_modules/escope/src/index.js +146 -0
  1345. data/node_modules/escope/src/pattern-visitor.js +134 -0
  1346. data/node_modules/escope/src/reference.js +154 -0
  1347. data/node_modules/escope/src/referencer.js +584 -0
  1348. data/node_modules/escope/src/scope-manager.js +245 -0
  1349. data/node_modules/escope/src/scope.js +647 -0
  1350. data/node_modules/escope/src/variable.js +81 -0
  1351. data/node_modules/escope/third_party/espree.js +56 -0
  1352. data/node_modules/eslint/CHANGELOG.md +3157 -0
  1353. data/node_modules/eslint/LICENSE +20 -0
  1354. data/node_modules/eslint/README.md +186 -0
  1355. data/node_modules/eslint/bin/eslint.js +92 -0
  1356. data/node_modules/eslint/conf/blank-script.json +21 -0
  1357. data/node_modules/eslint/conf/cli-options.js +29 -0
  1358. data/node_modules/eslint/conf/environments.js +107 -0
  1359. data/node_modules/eslint/conf/eslint-all.js +29 -0
  1360. data/node_modules/eslint/conf/eslint.json +225 -0
  1361. data/node_modules/eslint/conf/json-schema-schema.json +150 -0
  1362. data/node_modules/eslint/conf/replacements.json +22 -0
  1363. data/node_modules/eslint/lib/api.js +13 -0
  1364. data/node_modules/eslint/lib/ast-utils.js +555 -0
  1365. data/node_modules/eslint/lib/cli-engine.js +803 -0
  1366. data/node_modules/eslint/lib/cli.js +210 -0
  1367. data/node_modules/eslint/lib/code-path-analysis/code-path-analyzer.js +656 -0
  1368. data/node_modules/eslint/lib/code-path-analysis/code-path-segment.js +241 -0
  1369. data/node_modules/eslint/lib/code-path-analysis/code-path-state.js +1428 -0
  1370. data/node_modules/eslint/lib/code-path-analysis/code-path.js +234 -0
  1371. data/node_modules/eslint/lib/code-path-analysis/debug-helpers.js +199 -0
  1372. data/node_modules/eslint/lib/code-path-analysis/fork-context.js +262 -0
  1373. data/node_modules/eslint/lib/code-path-analysis/id-generator.js +43 -0
  1374. data/node_modules/eslint/lib/config.js +304 -0
  1375. data/node_modules/eslint/lib/config/autoconfig.js +372 -0
  1376. data/node_modules/eslint/lib/config/config-file.js +579 -0
  1377. data/node_modules/eslint/lib/config/config-initializer.js +494 -0
  1378. data/node_modules/eslint/lib/config/config-ops.js +278 -0
  1379. data/node_modules/eslint/lib/config/config-rule.js +323 -0
  1380. data/node_modules/eslint/lib/config/config-validator.js +178 -0
  1381. data/node_modules/eslint/lib/config/environments.js +85 -0
  1382. data/node_modules/eslint/lib/config/plugins.js +146 -0
  1383. data/node_modules/eslint/lib/eslint.js +1191 -0
  1384. data/node_modules/eslint/lib/file-finder.js +144 -0
  1385. data/node_modules/eslint/lib/formatters/checkstyle.js +82 -0
  1386. data/node_modules/eslint/lib/formatters/compact.js +60 -0
  1387. data/node_modules/eslint/lib/formatters/html-template-message.html +8 -0
  1388. data/node_modules/eslint/lib/formatters/html-template-page.html +113 -0
  1389. data/node_modules/eslint/lib/formatters/html-template-result.html +6 -0
  1390. data/node_modules/eslint/lib/formatters/html.js +131 -0
  1391. data/node_modules/eslint/lib/formatters/jslint-xml.js +40 -0
  1392. data/node_modules/eslint/lib/formatters/json.js +13 -0
  1393. data/node_modules/eslint/lib/formatters/junit.js +70 -0
  1394. data/node_modules/eslint/lib/formatters/stylish.js +90 -0
  1395. data/node_modules/eslint/lib/formatters/table.js +158 -0
  1396. data/node_modules/eslint/lib/formatters/tap.js +90 -0
  1397. data/node_modules/eslint/lib/formatters/unix.js +59 -0
  1398. data/node_modules/eslint/lib/formatters/visualstudio.js +63 -0
  1399. data/node_modules/eslint/lib/ignored-paths.js +225 -0
  1400. data/node_modules/eslint/lib/load-rules.js +41 -0
  1401. data/node_modules/eslint/lib/logging.js +28 -0
  1402. data/node_modules/eslint/lib/options.js +223 -0
  1403. data/node_modules/eslint/lib/rule-context.js +160 -0
  1404. data/node_modules/eslint/lib/rules.js +107 -0
  1405. data/node_modules/eslint/lib/rules/accessor-pairs.js +156 -0
  1406. data/node_modules/eslint/lib/rules/array-bracket-spacing.js +215 -0
  1407. data/node_modules/eslint/lib/rules/array-callback-return.js +249 -0
  1408. data/node_modules/eslint/lib/rules/arrow-body-style.js +109 -0
  1409. data/node_modules/eslint/lib/rules/arrow-parens.js +63 -0
  1410. data/node_modules/eslint/lib/rules/arrow-spacing.js +146 -0
  1411. data/node_modules/eslint/lib/rules/block-scoped-var.js +118 -0
  1412. data/node_modules/eslint/lib/rules/block-spacing.js +131 -0
  1413. data/node_modules/eslint/lib/rules/brace-style.js +244 -0
  1414. data/node_modules/eslint/lib/rules/callback-return.js +175 -0
  1415. data/node_modules/eslint/lib/rules/camelcase.js +134 -0
  1416. data/node_modules/eslint/lib/rules/comma-dangle.js +223 -0
  1417. data/node_modules/eslint/lib/rules/comma-spacing.js +194 -0
  1418. data/node_modules/eslint/lib/rules/comma-style.js +200 -0
  1419. data/node_modules/eslint/lib/rules/complexity.js +162 -0
  1420. data/node_modules/eslint/lib/rules/computed-property-spacing.js +164 -0
  1421. data/node_modules/eslint/lib/rules/consistent-return.js +161 -0
  1422. data/node_modules/eslint/lib/rules/consistent-this.js +148 -0
  1423. data/node_modules/eslint/lib/rules/constructor-super.js +385 -0
  1424. data/node_modules/eslint/lib/rules/curly.js +304 -0
  1425. data/node_modules/eslint/lib/rules/default-case.js +94 -0
  1426. data/node_modules/eslint/lib/rules/dot-location.js +72 -0
  1427. data/node_modules/eslint/lib/rules/dot-notation.js +70 -0
  1428. data/node_modules/eslint/lib/rules/eol-last.js +62 -0
  1429. data/node_modules/eslint/lib/rules/eqeqeq.js +110 -0
  1430. data/node_modules/eslint/lib/rules/func-names.js +64 -0
  1431. data/node_modules/eslint/lib/rules/func-style.js +93 -0
  1432. data/node_modules/eslint/lib/rules/generator-star-spacing.js +142 -0
  1433. data/node_modules/eslint/lib/rules/global-require.js +79 -0
  1434. data/node_modules/eslint/lib/rules/guard-for-in.js +42 -0
  1435. data/node_modules/eslint/lib/rules/handle-callback-err.js +91 -0
  1436. data/node_modules/eslint/lib/rules/id-blacklist.js +117 -0
  1437. data/node_modules/eslint/lib/rules/id-length.js +114 -0
  1438. data/node_modules/eslint/lib/rules/id-match.js +140 -0
  1439. data/node_modules/eslint/lib/rules/indent.js +769 -0
  1440. data/node_modules/eslint/lib/rules/init-declarations.js +125 -0
  1441. data/node_modules/eslint/lib/rules/jsx-quotes.js +86 -0
  1442. data/node_modules/eslint/lib/rules/key-spacing.js +492 -0
  1443. data/node_modules/eslint/lib/rules/keyword-spacing.js +544 -0
  1444. data/node_modules/eslint/lib/rules/linebreak-style.js +91 -0
  1445. data/node_modules/eslint/lib/rules/lines-around-comment.js +367 -0
  1446. data/node_modules/eslint/lib/rules/max-depth.js +149 -0
  1447. data/node_modules/eslint/lib/rules/max-len.js +261 -0
  1448. data/node_modules/eslint/lib/rules/max-lines.js +148 -0
  1449. data/node_modules/eslint/lib/rules/max-nested-callbacks.js +112 -0
  1450. data/node_modules/eslint/lib/rules/max-params.js +83 -0
  1451. data/node_modules/eslint/lib/rules/max-statements-per-line.js +174 -0
  1452. data/node_modules/eslint/lib/rules/max-statements.js +159 -0
  1453. data/node_modules/eslint/lib/rules/new-cap.js +259 -0
  1454. data/node_modules/eslint/lib/rules/new-parens.js +41 -0
  1455. data/node_modules/eslint/lib/rules/newline-after-var.js +177 -0
  1456. data/node_modules/eslint/lib/rules/newline-before-return.js +151 -0
  1457. data/node_modules/eslint/lib/rules/newline-per-chained-call.js +81 -0
  1458. data/node_modules/eslint/lib/rules/no-alert.js +144 -0
  1459. data/node_modules/eslint/lib/rules/no-array-constructor.js +47 -0
  1460. data/node_modules/eslint/lib/rules/no-bitwise.js +109 -0
  1461. data/node_modules/eslint/lib/rules/no-caller.js +39 -0
  1462. data/node_modules/eslint/lib/rules/no-case-declarations.js +57 -0
  1463. data/node_modules/eslint/lib/rules/no-catch-shadow.js +68 -0
  1464. data/node_modules/eslint/lib/rules/no-class-assign.js +57 -0
  1465. data/node_modules/eslint/lib/rules/no-cond-assign.js +146 -0
  1466. data/node_modules/eslint/lib/rules/no-confusing-arrow.js +66 -0
  1467. data/node_modules/eslint/lib/rules/no-console.js +65 -0
  1468. data/node_modules/eslint/lib/rules/no-const-assign.js +50 -0
  1469. data/node_modules/eslint/lib/rules/no-constant-condition.js +143 -0
  1470. data/node_modules/eslint/lib/rules/no-continue.js +32 -0
  1471. data/node_modules/eslint/lib/rules/no-control-regex.js +95 -0
  1472. data/node_modules/eslint/lib/rules/no-debugger.js +32 -0
  1473. data/node_modules/eslint/lib/rules/no-delete-var.js +35 -0
  1474. data/node_modules/eslint/lib/rules/no-div-regex.js +38 -0
  1475. data/node_modules/eslint/lib/rules/no-dupe-args.js +73 -0
  1476. data/node_modules/eslint/lib/rules/no-dupe-class-members.js +109 -0
  1477. data/node_modules/eslint/lib/rules/no-dupe-keys.js +56 -0
  1478. data/node_modules/eslint/lib/rules/no-duplicate-case.js +43 -0
  1479. data/node_modules/eslint/lib/rules/no-duplicate-imports.js +134 -0
  1480. data/node_modules/eslint/lib/rules/no-else-return.js +158 -0
  1481. data/node_modules/eslint/lib/rules/no-empty-character-class.js +57 -0
  1482. data/node_modules/eslint/lib/rules/no-empty-function.js +160 -0
  1483. data/node_modules/eslint/lib/rules/no-empty-pattern.js +36 -0
  1484. data/node_modules/eslint/lib/rules/no-empty.js +74 -0
  1485. data/node_modules/eslint/lib/rules/no-eq-null.js +39 -0
  1486. data/node_modules/eslint/lib/rules/no-eval.js +308 -0
  1487. data/node_modules/eslint/lib/rules/no-ex-assign.js +47 -0
  1488. data/node_modules/eslint/lib/rules/no-extend-native.js +111 -0
  1489. data/node_modules/eslint/lib/rules/no-extra-bind.js +156 -0
  1490. data/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +90 -0
  1491. data/node_modules/eslint/lib/rules/no-extra-label.js +140 -0
  1492. data/node_modules/eslint/lib/rules/no-extra-parens.js +580 -0
  1493. data/node_modules/eslint/lib/rules/no-extra-semi.js +105 -0
  1494. data/node_modules/eslint/lib/rules/no-fallthrough.js +135 -0
  1495. data/node_modules/eslint/lib/rules/no-floating-decimal.js +40 -0
  1496. data/node_modules/eslint/lib/rules/no-func-assign.js +66 -0
  1497. data/node_modules/eslint/lib/rules/no-implicit-coercion.js +258 -0
  1498. data/node_modules/eslint/lib/rules/no-implicit-globals.js +55 -0
  1499. data/node_modules/eslint/lib/rules/no-implied-eval.js +160 -0
  1500. data/node_modules/eslint/lib/rules/no-inline-comments.js +64 -0
  1501. data/node_modules/eslint/lib/rules/no-inner-declarations.js +89 -0
  1502. data/node_modules/eslint/lib/rules/no-invalid-regexp.js +96 -0
  1503. data/node_modules/eslint/lib/rules/no-invalid-this.js +122 -0
  1504. data/node_modules/eslint/lib/rules/no-irregular-whitespace.js +250 -0
  1505. data/node_modules/eslint/lib/rules/no-iterator.js +38 -0
  1506. data/node_modules/eslint/lib/rules/no-label-var.js +67 -0
  1507. data/node_modules/eslint/lib/rules/no-labels.js +143 -0
  1508. data/node_modules/eslint/lib/rules/no-lone-blocks.js +112 -0
  1509. data/node_modules/eslint/lib/rules/no-lonely-if.js +40 -0
  1510. data/node_modules/eslint/lib/rules/no-loop-func.js +198 -0
  1511. data/node_modules/eslint/lib/rules/no-magic-numbers.js +144 -0
  1512. data/node_modules/eslint/lib/rules/no-mixed-operators.js +212 -0
  1513. data/node_modules/eslint/lib/rules/no-mixed-requires.js +222 -0
  1514. data/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +144 -0
  1515. data/node_modules/eslint/lib/rules/no-multi-spaces.js +150 -0
  1516. data/node_modules/eslint/lib/rules/no-multi-str.js +51 -0
  1517. data/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +204 -0
  1518. data/node_modules/eslint/lib/rules/no-native-reassign.js +83 -0
  1519. data/node_modules/eslint/lib/rules/no-negated-condition.js +82 -0
  1520. data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +35 -0
  1521. data/node_modules/eslint/lib/rules/no-nested-ternary.js +34 -0
  1522. data/node_modules/eslint/lib/rules/no-new-func.js +47 -0
  1523. data/node_modules/eslint/lib/rules/no-new-object.js +35 -0
  1524. data/node_modules/eslint/lib/rules/no-new-require.js +35 -0
  1525. data/node_modules/eslint/lib/rules/no-new-symbol.js +43 -0
  1526. data/node_modules/eslint/lib/rules/no-new-wrappers.js +37 -0
  1527. data/node_modules/eslint/lib/rules/no-new.js +37 -0
  1528. data/node_modules/eslint/lib/rules/no-obj-calls.js +39 -0
  1529. data/node_modules/eslint/lib/rules/no-octal-escape.js +49 -0
  1530. data/node_modules/eslint/lib/rules/no-octal.js +35 -0
  1531. data/node_modules/eslint/lib/rules/no-param-reassign.js +147 -0
  1532. data/node_modules/eslint/lib/rules/no-path-concat.js +49 -0
  1533. data/node_modules/eslint/lib/rules/no-plusplus.js +55 -0
  1534. data/node_modules/eslint/lib/rules/no-process-env.js +39 -0
  1535. data/node_modules/eslint/lib/rules/no-process-exit.js +43 -0
  1536. data/node_modules/eslint/lib/rules/no-proto.js +38 -0
  1537. data/node_modules/eslint/lib/rules/no-prototype-builtins.js +52 -0
  1538. data/node_modules/eslint/lib/rules/no-redeclare.js +106 -0
  1539. data/node_modules/eslint/lib/rules/no-regex-spaces.js +46 -0
  1540. data/node_modules/eslint/lib/rules/no-restricted-globals.js +80 -0
  1541. data/node_modules/eslint/lib/rules/no-restricted-imports.js +51 -0
  1542. data/node_modules/eslint/lib/rules/no-restricted-modules.js +91 -0
  1543. data/node_modules/eslint/lib/rules/no-restricted-syntax.js +53 -0
  1544. data/node_modules/eslint/lib/rules/no-return-assign.js +78 -0
  1545. data/node_modules/eslint/lib/rules/no-script-url.js +44 -0
  1546. data/node_modules/eslint/lib/rules/no-self-assign.js +133 -0
  1547. data/node_modules/eslint/lib/rules/no-self-compare.js +40 -0
  1548. data/node_modules/eslint/lib/rules/no-sequences.js +109 -0
  1549. data/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +63 -0
  1550. data/node_modules/eslint/lib/rules/no-shadow.js +188 -0
  1551. data/node_modules/eslint/lib/rules/no-spaced-func.js +71 -0
  1552. data/node_modules/eslint/lib/rules/no-sparse-arrays.js +43 -0
  1553. data/node_modules/eslint/lib/rules/no-sync.js +40 -0
  1554. data/node_modules/eslint/lib/rules/no-ternary.js +34 -0
  1555. data/node_modules/eslint/lib/rules/no-this-before-super.js +299 -0
  1556. data/node_modules/eslint/lib/rules/no-throw-literal.js +79 -0
  1557. data/node_modules/eslint/lib/rules/no-trailing-spaces.js +135 -0
  1558. data/node_modules/eslint/lib/rules/no-undef-init.js +38 -0
  1559. data/node_modules/eslint/lib/rules/no-undef.js +71 -0
  1560. data/node_modules/eslint/lib/rules/no-undefined.js +38 -0
  1561. data/node_modules/eslint/lib/rules/no-underscore-dangle.js +154 -0
  1562. data/node_modules/eslint/lib/rules/no-unexpected-multiline.js +81 -0
  1563. data/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +367 -0
  1564. data/node_modules/eslint/lib/rules/no-unneeded-ternary.js +70 -0
  1565. data/node_modules/eslint/lib/rules/no-unreachable.js +102 -0
  1566. data/node_modules/eslint/lib/rules/no-unsafe-finally.js +99 -0
  1567. data/node_modules/eslint/lib/rules/no-unused-expressions.js +117 -0
  1568. data/node_modules/eslint/lib/rules/no-unused-labels.js +90 -0
  1569. data/node_modules/eslint/lib/rules/no-unused-vars.js +342 -0
  1570. data/node_modules/eslint/lib/rules/no-use-before-define.js +246 -0
  1571. data/node_modules/eslint/lib/rules/no-useless-call.js +107 -0
  1572. data/node_modules/eslint/lib/rules/no-useless-computed-key.js +39 -0
  1573. data/node_modules/eslint/lib/rules/no-useless-concat.js +104 -0
  1574. data/node_modules/eslint/lib/rules/no-useless-constructor.js +182 -0
  1575. data/node_modules/eslint/lib/rules/no-useless-escape.js +130 -0
  1576. data/node_modules/eslint/lib/rules/no-useless-rename.js +150 -0
  1577. data/node_modules/eslint/lib/rules/no-var.js +35 -0
  1578. data/node_modules/eslint/lib/rules/no-void.js +37 -0
  1579. data/node_modules/eslint/lib/rules/no-warning-comments.js +130 -0
  1580. data/node_modules/eslint/lib/rules/no-whitespace-before-property.js +97 -0
  1581. data/node_modules/eslint/lib/rules/no-with.js +32 -0
  1582. data/node_modules/eslint/lib/rules/object-curly-newline.js +209 -0
  1583. data/node_modules/eslint/lib/rules/object-curly-spacing.js +286 -0
  1584. data/node_modules/eslint/lib/rules/object-property-newline.js +73 -0
  1585. data/node_modules/eslint/lib/rules/object-shorthand.js +247 -0
  1586. data/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +83 -0
  1587. data/node_modules/eslint/lib/rules/one-var.js +332 -0
  1588. data/node_modules/eslint/lib/rules/operator-assignment.js +133 -0
  1589. data/node_modules/eslint/lib/rules/operator-linebreak.js +159 -0
  1590. data/node_modules/eslint/lib/rules/padded-blocks.js +245 -0
  1591. data/node_modules/eslint/lib/rules/prefer-arrow-callback.js +254 -0
  1592. data/node_modules/eslint/lib/rules/prefer-const.js +307 -0
  1593. data/node_modules/eslint/lib/rules/prefer-reflect.js +111 -0
  1594. data/node_modules/eslint/lib/rules/prefer-rest-params.js +83 -0
  1595. data/node_modules/eslint/lib/rules/prefer-spread.js +103 -0
  1596. data/node_modules/eslint/lib/rules/prefer-template.js +106 -0
  1597. data/node_modules/eslint/lib/rules/quote-props.js +231 -0
  1598. data/node_modules/eslint/lib/rules/quotes.js +260 -0
  1599. data/node_modules/eslint/lib/rules/radix.js +171 -0
  1600. data/node_modules/eslint/lib/rules/require-jsdoc.js +106 -0
  1601. data/node_modules/eslint/lib/rules/require-yield.js +73 -0
  1602. data/node_modules/eslint/lib/rules/rest-spread-spacing.js +107 -0
  1603. data/node_modules/eslint/lib/rules/semi-spacing.js +222 -0
  1604. data/node_modules/eslint/lib/rules/semi.js +226 -0
  1605. data/node_modules/eslint/lib/rules/sort-imports.js +175 -0
  1606. data/node_modules/eslint/lib/rules/sort-vars.js +63 -0
  1607. data/node_modules/eslint/lib/rules/space-before-blocks.js +151 -0
  1608. data/node_modules/eslint/lib/rules/space-before-function-paren.js +142 -0
  1609. data/node_modules/eslint/lib/rules/space-in-parens.js +281 -0
  1610. data/node_modules/eslint/lib/rules/space-infix-ops.js +162 -0
  1611. data/node_modules/eslint/lib/rules/space-unary-ops.js +280 -0
  1612. data/node_modules/eslint/lib/rules/spaced-comment.js +314 -0
  1613. data/node_modules/eslint/lib/rules/strict.js +221 -0
  1614. data/node_modules/eslint/lib/rules/template-curly-spacing.js +115 -0
  1615. data/node_modules/eslint/lib/rules/unicode-bom.js +66 -0
  1616. data/node_modules/eslint/lib/rules/use-isnan.js +34 -0
  1617. data/node_modules/eslint/lib/rules/valid-jsdoc.js +396 -0
  1618. data/node_modules/eslint/lib/rules/valid-typeof.js +52 -0
  1619. data/node_modules/eslint/lib/rules/vars-on-top.js +149 -0
  1620. data/node_modules/eslint/lib/rules/wrap-iife.js +66 -0
  1621. data/node_modules/eslint/lib/rules/wrap-regex.js +49 -0
  1622. data/node_modules/eslint/lib/rules/yield-star-spacing.js +113 -0
  1623. data/node_modules/eslint/lib/rules/yoda.js +257 -0
  1624. data/node_modules/eslint/lib/testers/event-generator-tester.js +62 -0
  1625. data/node_modules/eslint/lib/testers/rule-tester.js +466 -0
  1626. data/node_modules/eslint/lib/timing.js +144 -0
  1627. data/node_modules/eslint/lib/token-store.js +203 -0
  1628. data/node_modules/eslint/lib/util/comment-event-generator.js +115 -0
  1629. data/node_modules/eslint/lib/util/glob-util.js +180 -0
  1630. data/node_modules/eslint/lib/util/hash.js +35 -0
  1631. data/node_modules/eslint/lib/util/keywords.js +67 -0
  1632. data/node_modules/eslint/lib/util/module-resolver.js +88 -0
  1633. data/node_modules/eslint/lib/util/node-event-generator.js +53 -0
  1634. data/node_modules/eslint/lib/util/npm-util.js +135 -0
  1635. data/node_modules/eslint/lib/util/path-util.js +75 -0
  1636. data/node_modules/eslint/lib/util/rule-fixer.js +145 -0
  1637. data/node_modules/eslint/lib/util/source-code-fixer.js +137 -0
  1638. data/node_modules/eslint/lib/util/source-code-util.js +112 -0
  1639. data/node_modules/eslint/lib/util/source-code.js +304 -0
  1640. data/node_modules/eslint/lib/util/traverser.js +56 -0
  1641. data/node_modules/eslint/messages/plugin-missing.txt +9 -0
  1642. data/node_modules/eslint/node_modules/.bin/js-yaml +1 -0
  1643. data/node_modules/eslint/node_modules/.bin/mkdirp +1 -0
  1644. data/node_modules/eslint/node_modules/.bin/shjs +1 -0
  1645. data/node_modules/eslint/node_modules/.bin/strip-json-comments +1 -0
  1646. data/node_modules/eslint/package.json +118 -0
  1647. data/node_modules/espree/CHANGELOG.md +358 -0
  1648. data/node_modules/espree/LICENSE +22 -0
  1649. data/node_modules/espree/README.md +147 -0
  1650. data/node_modules/espree/espree.js +822 -0
  1651. data/node_modules/espree/lib/ast-node-types.js +97 -0
  1652. data/node_modules/espree/lib/comment-attachment.js +175 -0
  1653. data/node_modules/espree/lib/features.js +32 -0
  1654. data/node_modules/espree/lib/token-translator.js +256 -0
  1655. data/node_modules/espree/lib/visitor-keys.js +127 -0
  1656. data/node_modules/espree/node_modules/.bin/acorn +1 -0
  1657. data/node_modules/espree/package.json +60 -0
  1658. data/node_modules/esprima/ChangeLog +209 -0
  1659. data/node_modules/esprima/LICENSE.BSD +21 -0
  1660. data/node_modules/esprima/README.md +44 -0
  1661. data/node_modules/esprima/bin/esparse.js +139 -0
  1662. data/node_modules/esprima/bin/esvalidate.js +236 -0
  1663. data/node_modules/esprima/dist/esprima.js +6401 -0
  1664. data/node_modules/esprima/package.json +109 -0
  1665. data/node_modules/esrecurse/esrecurse.js +135 -0
  1666. data/node_modules/esrecurse/gulpfile.coffee +79 -0
  1667. data/node_modules/esrecurse/node_modules/estraverse/.jshintrc +16 -0
  1668. data/node_modules/esrecurse/node_modules/estraverse/LICENSE.BSD +19 -0
  1669. data/node_modules/esrecurse/node_modules/estraverse/README.md +124 -0
  1670. data/node_modules/esrecurse/node_modules/estraverse/estraverse.js +843 -0
  1671. data/node_modules/esrecurse/node_modules/estraverse/gulpfile.js +70 -0
  1672. data/node_modules/esrecurse/node_modules/estraverse/package.json +39 -0
  1673. data/node_modules/esrecurse/package.json +45 -0
  1674. data/node_modules/estraverse/.babelrc +3 -0
  1675. data/node_modules/estraverse/.jshintrc +16 -0
  1676. data/node_modules/estraverse/LICENSE.BSD +19 -0
  1677. data/node_modules/estraverse/estraverse.js +849 -0
  1678. data/node_modules/estraverse/gulpfile.js +70 -0
  1679. data/node_modules/estraverse/package.json +40 -0
  1680. data/node_modules/esutils/LICENSE.BSD +19 -0
  1681. data/node_modules/esutils/README.md +169 -0
  1682. data/node_modules/esutils/lib/ast.js +144 -0
  1683. data/node_modules/esutils/lib/code.js +135 -0
  1684. data/node_modules/esutils/lib/keyword.js +165 -0
  1685. data/node_modules/esutils/lib/utils.js +33 -0
  1686. data/node_modules/esutils/package.json +49 -0
  1687. data/node_modules/event-emitter/.lint +15 -0
  1688. data/node_modules/event-emitter/.npmignore +3 -0
  1689. data/node_modules/event-emitter/.testignore +1 -0
  1690. data/node_modules/event-emitter/.travis.yml +16 -0
  1691. data/node_modules/event-emitter/CHANGES +73 -0
  1692. data/node_modules/event-emitter/LICENSE +19 -0
  1693. data/node_modules/event-emitter/README.md +98 -0
  1694. data/node_modules/event-emitter/all-off.js +19 -0
  1695. data/node_modules/event-emitter/benchmark/many-on.js +83 -0
  1696. data/node_modules/event-emitter/benchmark/single-on.js +73 -0
  1697. data/node_modules/event-emitter/emit-error.js +13 -0
  1698. data/node_modules/event-emitter/has-listeners.js +16 -0
  1699. data/node_modules/event-emitter/index.js +132 -0
  1700. data/node_modules/event-emitter/package.json +34 -0
  1701. data/node_modules/event-emitter/pipe.js +42 -0
  1702. data/node_modules/event-emitter/test/all-off.js +48 -0
  1703. data/node_modules/event-emitter/test/emit-error.js +14 -0
  1704. data/node_modules/event-emitter/test/has-listeners.js +42 -0
  1705. data/node_modules/event-emitter/test/index.js +107 -0
  1706. data/node_modules/event-emitter/test/pipe.js +53 -0
  1707. data/node_modules/event-emitter/test/unify.js +123 -0
  1708. data/node_modules/event-emitter/unify.js +50 -0
  1709. data/node_modules/exit-hook/index.js +30 -0
  1710. data/node_modules/exit-hook/package.json +39 -0
  1711. data/node_modules/exit-hook/readme.md +40 -0
  1712. data/node_modules/fast-levenshtein/LICENSE.md +25 -0
  1713. data/node_modules/fast-levenshtein/README.md +104 -0
  1714. data/node_modules/fast-levenshtein/levenshtein.js +136 -0
  1715. data/node_modules/fast-levenshtein/package.json +39 -0
  1716. data/node_modules/figures/index.js +147 -0
  1717. data/node_modules/figures/license +21 -0
  1718. data/node_modules/figures/package.json +45 -0
  1719. data/node_modules/figures/readme.md +115 -0
  1720. data/node_modules/file-entry-cache/LICENSE +22 -0
  1721. data/node_modules/file-entry-cache/README.md +107 -0
  1722. data/node_modules/file-entry-cache/cache.js +192 -0
  1723. data/node_modules/file-entry-cache/changelog.md +69 -0
  1724. data/node_modules/file-entry-cache/package.json +84 -0
  1725. data/node_modules/flat-cache/LICENSE +22 -0
  1726. data/node_modules/flat-cache/README.md +71 -0
  1727. data/node_modules/flat-cache/cache.js +188 -0
  1728. data/node_modules/flat-cache/changelog.md +136 -0
  1729. data/node_modules/flat-cache/package.json +87 -0
  1730. data/node_modules/flat-cache/utils.js +39 -0
  1731. data/node_modules/front-matter/.npmignore +2 -0
  1732. data/node_modules/front-matter/.travis.yml +32 -0
  1733. data/node_modules/front-matter/.zuul.yml +18 -0
  1734. data/node_modules/front-matter/LICENSE +9 -0
  1735. data/node_modules/front-matter/Makefile +70 -0
  1736. data/node_modules/front-matter/README.md +140 -0
  1737. data/node_modules/front-matter/examples/bom.md +3 -0
  1738. data/node_modules/front-matter/examples/complex-yaml.md +22 -0
  1739. data/node_modules/front-matter/examples/dashes-seperator.md +14 -0
  1740. data/node_modules/front-matter/examples/dots-ending.md +6 -0
  1741. data/node_modules/front-matter/examples/missing-body.md +8 -0
  1742. data/node_modules/front-matter/examples/no-front-matter.md +11 -0
  1743. data/node_modules/front-matter/examples/wrapped-text.md +21 -0
  1744. data/node_modules/front-matter/examples/yaml-seperator.md +6 -0
  1745. data/node_modules/front-matter/index.js +50 -0
  1746. data/node_modules/front-matter/node_modules/.bin/js-yaml +1 -0
  1747. data/node_modules/front-matter/notes.md +53 -0
  1748. data/node_modules/front-matter/package.json +42 -0
  1749. data/node_modules/front-matter/test/index.js +227 -0
  1750. data/node_modules/fs-extra/.npmignore +8 -0
  1751. data/node_modules/fs-extra/CHANGELOG.md +656 -0
  1752. data/node_modules/fs-extra/LICENSE +15 -0
  1753. data/node_modules/fs-extra/README.md +603 -0
  1754. data/node_modules/fs-extra/lib/copy-sync/copy-file-sync.js +42 -0
  1755. data/node_modules/fs-extra/lib/copy-sync/copy-sync.js +56 -0
  1756. data/node_modules/fs-extra/lib/copy-sync/index.js +3 -0
  1757. data/node_modules/fs-extra/lib/copy/copy.js +50 -0
  1758. data/node_modules/fs-extra/lib/copy/index.js +3 -0
  1759. data/node_modules/fs-extra/lib/copy/ncp.js +232 -0
  1760. data/node_modules/fs-extra/lib/empty/index.js +47 -0
  1761. data/node_modules/fs-extra/lib/ensure/file.js +43 -0
  1762. data/node_modules/fs-extra/lib/ensure/index.js +21 -0
  1763. data/node_modules/fs-extra/lib/ensure/link.js +58 -0
  1764. data/node_modules/fs-extra/lib/ensure/symlink-paths.js +96 -0
  1765. data/node_modules/fs-extra/lib/ensure/symlink-type.js +27 -0
  1766. data/node_modules/fs-extra/lib/ensure/symlink.js +62 -0
  1767. data/node_modules/fs-extra/lib/index.js +38 -0
  1768. data/node_modules/fs-extra/lib/json/index.js +9 -0
  1769. data/node_modules/fs-extra/lib/json/jsonfile.js +14 -0
  1770. data/node_modules/fs-extra/lib/json/output-json-sync.js +16 -0
  1771. data/node_modules/fs-extra/lib/json/output-json.js +24 -0
  1772. data/node_modules/fs-extra/lib/mkdirs/index.js +9 -0
  1773. data/node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js +57 -0
  1774. data/node_modules/fs-extra/lib/mkdirs/mkdirs.js +61 -0
  1775. data/node_modules/fs-extra/lib/mkdirs/win32.js +24 -0
  1776. data/node_modules/fs-extra/lib/move/index.js +161 -0
  1777. data/node_modules/fs-extra/lib/output/index.js +35 -0
  1778. data/node_modules/fs-extra/lib/remove/index.js +15 -0
  1779. data/node_modules/fs-extra/lib/remove/rimraf.js +301 -0
  1780. data/node_modules/fs-extra/lib/util/assign.js +14 -0
  1781. data/node_modules/fs-extra/lib/util/utimes.js +70 -0
  1782. data/node_modules/fs-extra/lib/walk-sync/index.js +20 -0
  1783. data/node_modules/fs-extra/lib/walk/index.js +5 -0
  1784. data/node_modules/fs-extra/package.json +61 -0
  1785. data/node_modules/fs.realpath/LICENSE +43 -0
  1786. data/node_modules/fs.realpath/README.md +33 -0
  1787. data/node_modules/fs.realpath/index.js +66 -0
  1788. data/node_modules/fs.realpath/old.js +303 -0
  1789. data/node_modules/fs.realpath/package.json +26 -0
  1790. data/node_modules/generate-function/.npmignore +1 -0
  1791. data/node_modules/generate-function/.travis.yml +3 -0
  1792. data/node_modules/generate-function/README.md +72 -0
  1793. data/node_modules/generate-function/example.js +27 -0
  1794. data/node_modules/generate-function/index.js +61 -0
  1795. data/node_modules/generate-function/package.json +29 -0
  1796. data/node_modules/generate-function/test.js +33 -0
  1797. data/node_modules/generate-object-property/.npmignore +1 -0
  1798. data/node_modules/generate-object-property/.travis.yml +3 -0
  1799. data/node_modules/generate-object-property/LICENSE +21 -0
  1800. data/node_modules/generate-object-property/README.md +19 -0
  1801. data/node_modules/generate-object-property/index.js +12 -0
  1802. data/node_modules/generate-object-property/package.json +25 -0
  1803. data/node_modules/generate-object-property/test.js +12 -0
  1804. data/node_modules/glob/LICENSE +15 -0
  1805. data/node_modules/glob/README.md +368 -0
  1806. data/node_modules/glob/changelog.md +67 -0
  1807. data/node_modules/glob/common.js +240 -0
  1808. data/node_modules/glob/glob.js +792 -0
  1809. data/node_modules/glob/package.json +43 -0
  1810. data/node_modules/glob/sync.js +486 -0
  1811. data/node_modules/globals/globals.json +1291 -0
  1812. data/node_modules/globals/index.js +1 -0
  1813. data/node_modules/globals/license +21 -0
  1814. data/node_modules/globals/package.json +35 -0
  1815. data/node_modules/globals/readme.md +41 -0
  1816. data/node_modules/globby/index.js +65 -0
  1817. data/node_modules/globby/license +21 -0
  1818. data/node_modules/globby/package.json +70 -0
  1819. data/node_modules/globby/readme.md +82 -0
  1820. data/node_modules/globule/LICENSE +22 -0
  1821. data/node_modules/globule/README.md +129 -0
  1822. data/node_modules/globule/lib/globule.js +192 -0
  1823. data/node_modules/globule/package.json +50 -0
  1824. data/node_modules/gonzales-pe/.editorconfig +6 -0
  1825. data/node_modules/gonzales-pe/.eslintrc.yaml +63 -0
  1826. data/node_modules/gonzales-pe/.gitmessage.txt +23 -0
  1827. data/node_modules/gonzales-pe/.jscs.json +64 -0
  1828. data/node_modules/gonzales-pe/.jshintrc +10 -0
  1829. data/node_modules/gonzales-pe/.npmignore +6 -0
  1830. data/node_modules/gonzales-pe/.travis.yml +14 -0
  1831. data/node_modules/gonzales-pe/CHANGELOG.md +381 -0
  1832. data/node_modules/gonzales-pe/MIT-LICENSE.txt +19 -0
  1833. data/node_modules/gonzales-pe/README.md +802 -0
  1834. data/node_modules/gonzales-pe/appveyor.yml +21 -0
  1835. data/node_modules/gonzales-pe/bin/gonzales.js +116 -0
  1836. data/node_modules/gonzales-pe/lib/gonzales.js +11873 -0
  1837. data/node_modules/gonzales-pe/package.json +49 -0
  1838. data/node_modules/gonzales-pe/tags +19 -0
  1839. data/node_modules/gonzales-pe/webpack.config.js +24 -0
  1840. data/node_modules/graceful-fs/LICENSE +15 -0
  1841. data/node_modules/graceful-fs/README.md +133 -0
  1842. data/node_modules/graceful-fs/fs.js +21 -0
  1843. data/node_modules/graceful-fs/graceful-fs.js +262 -0
  1844. data/node_modules/graceful-fs/legacy-streams.js +118 -0
  1845. data/node_modules/graceful-fs/package.json +47 -0
  1846. data/node_modules/graceful-fs/polyfills.js +330 -0
  1847. data/node_modules/graceful-readlink/.npmignore +3 -0
  1848. data/node_modules/graceful-readlink/.travis.yml +5 -0
  1849. data/node_modules/graceful-readlink/LICENSE +22 -0
  1850. data/node_modules/graceful-readlink/README.md +17 -0
  1851. data/node_modules/graceful-readlink/index.js +12 -0
  1852. data/node_modules/graceful-readlink/package.json +18 -0
  1853. data/node_modules/has-ansi/index.js +4 -0
  1854. data/node_modules/has-ansi/license +21 -0
  1855. data/node_modules/has-ansi/package.json +55 -0
  1856. data/node_modules/has-ansi/readme.md +36 -0
  1857. data/node_modules/ignore/LICENSE-MIT +21 -0
  1858. data/node_modules/ignore/README.md +232 -0
  1859. data/node_modules/ignore/ignore.js +424 -0
  1860. data/node_modules/ignore/package.json +45 -0
  1861. data/node_modules/imurmurhash/README.md +122 -0
  1862. data/node_modules/imurmurhash/imurmurhash.js +138 -0
  1863. data/node_modules/imurmurhash/imurmurhash.min.js +12 -0
  1864. data/node_modules/imurmurhash/package.json +40 -0
  1865. data/node_modules/inflight/LICENSE +15 -0
  1866. data/node_modules/inflight/README.md +37 -0
  1867. data/node_modules/inflight/inflight.js +54 -0
  1868. data/node_modules/inflight/package.json +29 -0
  1869. data/node_modules/inherits/LICENSE +16 -0
  1870. data/node_modules/inherits/README.md +42 -0
  1871. data/node_modules/inherits/inherits.js +1 -0
  1872. data/node_modules/inherits/inherits_browser.js +23 -0
  1873. data/node_modules/inherits/package.json +22 -0
  1874. data/node_modules/inherits/test.js +25 -0
  1875. data/node_modules/inquirer/README.md +301 -0
  1876. data/node_modules/inquirer/lib/inquirer.js +79 -0
  1877. data/node_modules/inquirer/lib/objects/choice.js +36 -0
  1878. data/node_modules/inquirer/lib/objects/choices.js +113 -0
  1879. data/node_modules/inquirer/lib/objects/separator.js +35 -0
  1880. data/node_modules/inquirer/lib/prompts/base.js +175 -0
  1881. data/node_modules/inquirer/lib/prompts/checkbox.js +213 -0
  1882. data/node_modules/inquirer/lib/prompts/confirm.js +110 -0
  1883. data/node_modules/inquirer/lib/prompts/expand.js +255 -0
  1884. data/node_modules/inquirer/lib/prompts/input.js +111 -0
  1885. data/node_modules/inquirer/lib/prompts/list.js +172 -0
  1886. data/node_modules/inquirer/lib/prompts/password.js +118 -0
  1887. data/node_modules/inquirer/lib/prompts/rawlist.js +183 -0
  1888. data/node_modules/inquirer/lib/ui/baseUI.js +56 -0
  1889. data/node_modules/inquirer/lib/ui/bottom-bar.js +98 -0
  1890. data/node_modules/inquirer/lib/ui/prompt.js +126 -0
  1891. data/node_modules/inquirer/lib/utils/events.js +37 -0
  1892. data/node_modules/inquirer/lib/utils/paginator.js +38 -0
  1893. data/node_modules/inquirer/lib/utils/readline.js +51 -0
  1894. data/node_modules/inquirer/lib/utils/screen-manager.js +129 -0
  1895. data/node_modules/inquirer/lib/utils/utils.js +47 -0
  1896. data/node_modules/inquirer/package.json +49 -0
  1897. data/node_modules/is-fullwidth-code-point/index.js +46 -0
  1898. data/node_modules/is-fullwidth-code-point/license +21 -0
  1899. data/node_modules/is-fullwidth-code-point/package.json +45 -0
  1900. data/node_modules/is-fullwidth-code-point/readme.md +39 -0
  1901. data/node_modules/is-my-json-valid/.npmignore +2 -0
  1902. data/node_modules/is-my-json-valid/.travis.yml +3 -0
  1903. data/node_modules/is-my-json-valid/LICENSE +21 -0
  1904. data/node_modules/is-my-json-valid/README.md +200 -0
  1905. data/node_modules/is-my-json-valid/example.js +18 -0
  1906. data/node_modules/is-my-json-valid/formats.js +14 -0
  1907. data/node_modules/is-my-json-valid/index.js +590 -0
  1908. data/node_modules/is-my-json-valid/package.json +34 -0
  1909. data/node_modules/is-my-json-valid/require.js +12 -0
  1910. data/node_modules/is-my-json-valid/test/fixtures/cosmic.js +84 -0
  1911. data/node_modules/is-my-json-valid/test/json-schema-draft4/additionalItems.json +82 -0
  1912. data/node_modules/is-my-json-valid/test/json-schema-draft4/additionalProperties.json +88 -0
  1913. data/node_modules/is-my-json-valid/test/json-schema-draft4/allOf.json +112 -0
  1914. data/node_modules/is-my-json-valid/test/json-schema-draft4/anyOf.json +68 -0
  1915. data/node_modules/is-my-json-valid/test/json-schema-draft4/bignum.json +107 -0
  1916. data/node_modules/is-my-json-valid/test/json-schema-draft4/default.json +49 -0
  1917. data/node_modules/is-my-json-valid/test/json-schema-draft4/definitions.json +32 -0
  1918. data/node_modules/is-my-json-valid/test/json-schema-draft4/dependencies.json +113 -0
  1919. data/node_modules/is-my-json-valid/test/json-schema-draft4/enum.json +72 -0
  1920. data/node_modules/is-my-json-valid/test/json-schema-draft4/format.json +143 -0
  1921. data/node_modules/is-my-json-valid/test/json-schema-draft4/items.json +46 -0
  1922. data/node_modules/is-my-json-valid/test/json-schema-draft4/maxItems.json +28 -0
  1923. data/node_modules/is-my-json-valid/test/json-schema-draft4/maxLength.json +28 -0
  1924. data/node_modules/is-my-json-valid/test/json-schema-draft4/maxProperties.json +28 -0
  1925. data/node_modules/is-my-json-valid/test/json-schema-draft4/maximum.json +42 -0
  1926. data/node_modules/is-my-json-valid/test/json-schema-draft4/minItems.json +28 -0
  1927. data/node_modules/is-my-json-valid/test/json-schema-draft4/minLength.json +28 -0
  1928. data/node_modules/is-my-json-valid/test/json-schema-draft4/minProperties.json +28 -0
  1929. data/node_modules/is-my-json-valid/test/json-schema-draft4/minimum.json +42 -0
  1930. data/node_modules/is-my-json-valid/test/json-schema-draft4/multipleOf.json +96 -0
  1931. data/node_modules/is-my-json-valid/test/json-schema-draft4/not.json +96 -0
  1932. data/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndFormat.json +18 -0
  1933. data/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndObject.json +18 -0
  1934. data/node_modules/is-my-json-valid/test/json-schema-draft4/oneOf.json +68 -0
  1935. data/node_modules/is-my-json-valid/test/json-schema-draft4/pattern.json +23 -0
  1936. data/node_modules/is-my-json-valid/test/json-schema-draft4/patternProperties.json +110 -0
  1937. data/node_modules/is-my-json-valid/test/json-schema-draft4/properties.json +92 -0
  1938. data/node_modules/is-my-json-valid/test/json-schema-draft4/ref.json +128 -0
  1939. data/node_modules/is-my-json-valid/test/json-schema-draft4/refRemote.json +74 -0
  1940. data/node_modules/is-my-json-valid/test/json-schema-draft4/required.json +39 -0
  1941. data/node_modules/is-my-json-valid/test/json-schema-draft4/type.json +330 -0
  1942. data/node_modules/is-my-json-valid/test/json-schema-draft4/uniqueItems.json +79 -0
  1943. data/node_modules/is-my-json-valid/test/json-schema.js +23 -0
  1944. data/node_modules/is-my-json-valid/test/misc.js +471 -0
  1945. data/node_modules/is-path-cwd/index.js +6 -0
  1946. data/node_modules/is-path-cwd/package.json +33 -0
  1947. data/node_modules/is-path-cwd/readme.md +28 -0
  1948. data/node_modules/is-path-in-cwd/index.js +6 -0
  1949. data/node_modules/is-path-in-cwd/package.json +38 -0
  1950. data/node_modules/is-path-in-cwd/readme.md +28 -0
  1951. data/node_modules/is-path-inside/index.js +14 -0
  1952. data/node_modules/is-path-inside/package.json +36 -0
  1953. data/node_modules/is-path-inside/readme.md +31 -0
  1954. data/node_modules/is-property/.npmignore +17 -0
  1955. data/node_modules/is-property/LICENSE +22 -0
  1956. data/node_modules/is-property/README.md +28 -0
  1957. data/node_modules/is-property/is-property.js +5 -0
  1958. data/node_modules/is-property/package.json +36 -0
  1959. data/node_modules/is-resolvable/LICENSE +20 -0
  1960. data/node_modules/is-resolvable/README.md +68 -0
  1961. data/node_modules/is-resolvable/index.js +26 -0
  1962. data/node_modules/is-resolvable/package.json +38 -0
  1963. data/node_modules/isarray/.npmignore +1 -0
  1964. data/node_modules/isarray/.travis.yml +4 -0
  1965. data/node_modules/isarray/Makefile +6 -0
  1966. data/node_modules/isarray/README.md +60 -0
  1967. data/node_modules/isarray/component.json +19 -0
  1968. data/node_modules/isarray/index.js +5 -0
  1969. data/node_modules/isarray/package.json +45 -0
  1970. data/node_modules/isarray/test.js +20 -0
  1971. data/node_modules/js-yaml/CHANGELOG.md +431 -0
  1972. data/node_modules/js-yaml/LICENSE +21 -0
  1973. data/node_modules/js-yaml/README.md +312 -0
  1974. data/node_modules/js-yaml/bin/js-yaml.js +132 -0
  1975. data/node_modules/js-yaml/dist/js-yaml.js +3868 -0
  1976. data/node_modules/js-yaml/dist/js-yaml.min.js +3 -0
  1977. data/node_modules/js-yaml/index.js +7 -0
  1978. data/node_modules/js-yaml/lib/js-yaml.js +39 -0
  1979. data/node_modules/js-yaml/lib/js-yaml/common.js +59 -0
  1980. data/node_modules/js-yaml/lib/js-yaml/dumper.js +801 -0
  1981. data/node_modules/js-yaml/lib/js-yaml/exception.js +43 -0
  1982. data/node_modules/js-yaml/lib/js-yaml/loader.js +1591 -0
  1983. data/node_modules/js-yaml/lib/js-yaml/mark.js +76 -0
  1984. data/node_modules/js-yaml/lib/js-yaml/schema.js +108 -0
  1985. data/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
  1986. data/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
  1987. data/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
  1988. data/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
  1989. data/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
  1990. data/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
  1991. data/node_modules/js-yaml/lib/js-yaml/type/binary.js +138 -0
  1992. data/node_modules/js-yaml/lib/js-yaml/type/bool.js +35 -0
  1993. data/node_modules/js-yaml/lib/js-yaml/type/float.js +111 -0
  1994. data/node_modules/js-yaml/lib/js-yaml/type/int.js +168 -0
  1995. data/node_modules/js-yaml/lib/js-yaml/type/js/function.js +84 -0
  1996. data/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +60 -0
  1997. data/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +28 -0
  1998. data/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
  1999. data/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
  2000. data/node_modules/js-yaml/lib/js-yaml/type/null.js +34 -0
  2001. data/node_modules/js-yaml/lib/js-yaml/type/omap.js +44 -0
  2002. data/node_modules/js-yaml/lib/js-yaml/type/pairs.js +53 -0
  2003. data/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
  2004. data/node_modules/js-yaml/lib/js-yaml/type/set.js +29 -0
  2005. data/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
  2006. data/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +88 -0
  2007. data/node_modules/js-yaml/node_modules/.bin/esparse +1 -0
  2008. data/node_modules/js-yaml/node_modules/.bin/esvalidate +1 -0
  2009. data/node_modules/js-yaml/package.json +46 -0
  2010. data/node_modules/json-stable-stringify/.npmignore +1 -0
  2011. data/node_modules/json-stable-stringify/.travis.yml +4 -0
  2012. data/node_modules/json-stable-stringify/LICENSE +18 -0
  2013. data/node_modules/json-stable-stringify/example/key_cmp.js +7 -0
  2014. data/node_modules/json-stable-stringify/example/nested.js +3 -0
  2015. data/node_modules/json-stable-stringify/example/str.js +3 -0
  2016. data/node_modules/json-stable-stringify/example/value_cmp.js +7 -0
  2017. data/node_modules/json-stable-stringify/index.js +84 -0
  2018. data/node_modules/json-stable-stringify/package.json +44 -0
  2019. data/node_modules/json-stable-stringify/readme.markdown +130 -0
  2020. data/node_modules/json-stable-stringify/test/cmp.js +11 -0
  2021. data/node_modules/json-stable-stringify/test/nested.js +35 -0
  2022. data/node_modules/json-stable-stringify/test/replacer.js +74 -0
  2023. data/node_modules/json-stable-stringify/test/space.js +59 -0
  2024. data/node_modules/json-stable-stringify/test/str.js +32 -0
  2025. data/node_modules/json-stable-stringify/test/to-json.js +20 -0
  2026. data/node_modules/jsonfile/.npmignore +2 -0
  2027. data/node_modules/jsonfile/CHANGELOG.md +126 -0
  2028. data/node_modules/jsonfile/LICENSE +15 -0
  2029. data/node_modules/jsonfile/README.md +162 -0
  2030. data/node_modules/jsonfile/appveyor.yml +28 -0
  2031. data/node_modules/jsonfile/index.js +133 -0
  2032. data/node_modules/jsonfile/package.json +35 -0
  2033. data/node_modules/jsonify/README.markdown +34 -0
  2034. data/node_modules/jsonify/index.js +2 -0
  2035. data/node_modules/jsonify/lib/parse.js +273 -0
  2036. data/node_modules/jsonify/lib/stringify.js +154 -0
  2037. data/node_modules/jsonify/package.json +30 -0
  2038. data/node_modules/jsonify/test/parse.js +16 -0
  2039. data/node_modules/jsonify/test/stringify.js +15 -0
  2040. data/node_modules/jsonpointer/LICENSE.md +21 -0
  2041. data/node_modules/jsonpointer/README.md +39 -0
  2042. data/node_modules/jsonpointer/jsonpointer.js +93 -0
  2043. data/node_modules/jsonpointer/package.json +37 -0
  2044. data/node_modules/klaw/.npmignore +3 -0
  2045. data/node_modules/klaw/CHANGELOG.md +42 -0
  2046. data/node_modules/klaw/LICENSE +15 -0
  2047. data/node_modules/klaw/README.md +270 -0
  2048. data/node_modules/klaw/package.json +40 -0
  2049. data/node_modules/klaw/src/assign.js +16 -0
  2050. data/node_modules/klaw/src/index.js +57 -0
  2051. data/node_modules/levn/LICENSE +22 -0
  2052. data/node_modules/levn/README.md +196 -0
  2053. data/node_modules/levn/lib/cast.js +298 -0
  2054. data/node_modules/levn/lib/coerce.js +285 -0
  2055. data/node_modules/levn/lib/index.js +22 -0
  2056. data/node_modules/levn/lib/parse-string.js +113 -0
  2057. data/node_modules/levn/lib/parse.js +102 -0
  2058. data/node_modules/levn/package.json +47 -0
  2059. data/node_modules/lodash.capitalize/LICENSE +47 -0
  2060. data/node_modules/lodash.capitalize/README.md +18 -0
  2061. data/node_modules/lodash.capitalize/index.js +322 -0
  2062. data/node_modules/lodash.capitalize/package.json +17 -0
  2063. data/node_modules/lodash.kebabcase/LICENSE +47 -0
  2064. data/node_modules/lodash.kebabcase/README.md +18 -0
  2065. data/node_modules/lodash.kebabcase/index.js +435 -0
  2066. data/node_modules/lodash.kebabcase/package.json +17 -0
  2067. data/node_modules/lodash/LICENSE +47 -0
  2068. data/node_modules/lodash/README.md +39 -0
  2069. data/node_modules/lodash/_DataView.js +7 -0
  2070. data/node_modules/lodash/_Hash.js +32 -0
  2071. data/node_modules/lodash/_LazyWrapper.js +28 -0
  2072. data/node_modules/lodash/_ListCache.js +32 -0
  2073. data/node_modules/lodash/_LodashWrapper.js +22 -0
  2074. data/node_modules/lodash/_Map.js +7 -0
  2075. data/node_modules/lodash/_MapCache.js +32 -0
  2076. data/node_modules/lodash/_Promise.js +7 -0
  2077. data/node_modules/lodash/_Set.js +7 -0
  2078. data/node_modules/lodash/_SetCache.js +27 -0
  2079. data/node_modules/lodash/_Stack.js +27 -0
  2080. data/node_modules/lodash/_Symbol.js +6 -0
  2081. data/node_modules/lodash/_Uint8Array.js +6 -0
  2082. data/node_modules/lodash/_WeakMap.js +7 -0
  2083. data/node_modules/lodash/_addMapEntry.js +15 -0
  2084. data/node_modules/lodash/_addSetEntry.js +15 -0
  2085. data/node_modules/lodash/_apply.js +21 -0
  2086. data/node_modules/lodash/_arrayAggregator.js +22 -0
  2087. data/node_modules/lodash/_arrayEach.js +22 -0
  2088. data/node_modules/lodash/_arrayEachRight.js +21 -0
  2089. data/node_modules/lodash/_arrayEvery.js +23 -0
  2090. data/node_modules/lodash/_arrayFilter.js +25 -0
  2091. data/node_modules/lodash/_arrayIncludes.js +17 -0
  2092. data/node_modules/lodash/_arrayIncludesWith.js +22 -0
  2093. data/node_modules/lodash/_arrayLikeKeys.js +49 -0
  2094. data/node_modules/lodash/_arrayMap.js +21 -0
  2095. data/node_modules/lodash/_arrayPush.js +20 -0
  2096. data/node_modules/lodash/_arrayReduce.js +26 -0
  2097. data/node_modules/lodash/_arrayReduceRight.js +24 -0
  2098. data/node_modules/lodash/_arraySample.js +15 -0
  2099. data/node_modules/lodash/_arraySampleSize.js +17 -0
  2100. data/node_modules/lodash/_arrayShuffle.js +15 -0
  2101. data/node_modules/lodash/_arraySome.js +23 -0
  2102. data/node_modules/lodash/_asciiSize.js +12 -0
  2103. data/node_modules/lodash/_asciiToArray.js +12 -0
  2104. data/node_modules/lodash/_asciiWords.js +15 -0
  2105. data/node_modules/lodash/_assignInDefaults.js +27 -0
  2106. data/node_modules/lodash/_assignMergeValue.js +20 -0
  2107. data/node_modules/lodash/_assignValue.js +28 -0
  2108. data/node_modules/lodash/_assocIndexOf.js +21 -0
  2109. data/node_modules/lodash/_baseAggregator.js +21 -0
  2110. data/node_modules/lodash/_baseAssign.js +17 -0
  2111. data/node_modules/lodash/_baseAssignValue.js +25 -0
  2112. data/node_modules/lodash/_baseAt.js +23 -0
  2113. data/node_modules/lodash/_baseClamp.js +22 -0
  2114. data/node_modules/lodash/_baseClone.js +133 -0
  2115. data/node_modules/lodash/_baseConforms.js +18 -0
  2116. data/node_modules/lodash/_baseConformsTo.js +27 -0
  2117. data/node_modules/lodash/_baseCreate.js +30 -0
  2118. data/node_modules/lodash/_baseDelay.js +21 -0
  2119. data/node_modules/lodash/_baseDifference.js +67 -0
  2120. data/node_modules/lodash/_baseEach.js +14 -0
  2121. data/node_modules/lodash/_baseEachRight.js +14 -0
  2122. data/node_modules/lodash/_baseEvery.js +21 -0
  2123. data/node_modules/lodash/_baseExtremum.js +32 -0
  2124. data/node_modules/lodash/_baseFill.js +32 -0
  2125. data/node_modules/lodash/_baseFilter.js +21 -0
  2126. data/node_modules/lodash/_baseFindIndex.js +24 -0
  2127. data/node_modules/lodash/_baseFindKey.js +23 -0
  2128. data/node_modules/lodash/_baseFlatten.js +38 -0
  2129. data/node_modules/lodash/_baseFor.js +16 -0
  2130. data/node_modules/lodash/_baseForOwn.js +16 -0
  2131. data/node_modules/lodash/_baseForOwnRight.js +16 -0
  2132. data/node_modules/lodash/_baseForRight.js +15 -0
  2133. data/node_modules/lodash/_baseFunctions.js +19 -0
  2134. data/node_modules/lodash/_baseGet.js +25 -0
  2135. data/node_modules/lodash/_baseGetAllKeys.js +20 -0
  2136. data/node_modules/lodash/_baseGetTag.js +29 -0
  2137. data/node_modules/lodash/_baseGt.js +14 -0
  2138. data/node_modules/lodash/_baseHas.js +19 -0
  2139. data/node_modules/lodash/_baseHasIn.js +13 -0
  2140. data/node_modules/lodash/_baseInRange.js +18 -0
  2141. data/node_modules/lodash/_baseIndexOf.js +20 -0
  2142. data/node_modules/lodash/_baseIndexOfWith.js +23 -0
  2143. data/node_modules/lodash/_baseIntersection.js +74 -0
  2144. data/node_modules/lodash/_baseInverter.js +21 -0
  2145. data/node_modules/lodash/_baseInvoke.js +28 -0
  2146. data/node_modules/lodash/_baseIsArguments.js +18 -0
  2147. data/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
  2148. data/node_modules/lodash/_baseIsDate.js +18 -0
  2149. data/node_modules/lodash/_baseIsEqual.js +30 -0
  2150. data/node_modules/lodash/_baseIsEqualDeep.js +89 -0
  2151. data/node_modules/lodash/_baseIsMap.js +18 -0
  2152. data/node_modules/lodash/_baseIsMatch.js +62 -0
  2153. data/node_modules/lodash/_baseIsNaN.js +12 -0
  2154. data/node_modules/lodash/_baseIsNative.js +47 -0
  2155. data/node_modules/lodash/_baseIsRegExp.js +18 -0
  2156. data/node_modules/lodash/_baseIsSet.js +18 -0
  2157. data/node_modules/lodash/_baseIsTypedArray.js +60 -0
  2158. data/node_modules/lodash/_baseIteratee.js +31 -0
  2159. data/node_modules/lodash/_baseKeys.js +30 -0
  2160. data/node_modules/lodash/_baseKeysIn.js +33 -0
  2161. data/node_modules/lodash/_baseLodash.js +10 -0
  2162. data/node_modules/lodash/_baseLt.js +14 -0
  2163. data/node_modules/lodash/_baseMap.js +22 -0
  2164. data/node_modules/lodash/_baseMatches.js +22 -0
  2165. data/node_modules/lodash/_baseMatchesProperty.js +33 -0
  2166. data/node_modules/lodash/_baseMean.js +20 -0
  2167. data/node_modules/lodash/_baseMerge.js +41 -0
  2168. data/node_modules/lodash/_baseMergeDeep.js +93 -0
  2169. data/node_modules/lodash/_baseNth.js +20 -0
  2170. data/node_modules/lodash/_baseOrderBy.js +34 -0
  2171. data/node_modules/lodash/_basePick.js +19 -0
  2172. data/node_modules/lodash/_basePickBy.js +28 -0
  2173. data/node_modules/lodash/_baseProperty.js +14 -0
  2174. data/node_modules/lodash/_basePropertyDeep.js +16 -0
  2175. data/node_modules/lodash/_basePropertyOf.js +14 -0
  2176. data/node_modules/lodash/_basePullAll.js +51 -0
  2177. data/node_modules/lodash/_basePullAt.js +50 -0
  2178. data/node_modules/lodash/_baseRandom.js +18 -0
  2179. data/node_modules/lodash/_baseRange.js +28 -0
  2180. data/node_modules/lodash/_baseReduce.js +23 -0
  2181. data/node_modules/lodash/_baseRepeat.js +35 -0
  2182. data/node_modules/lodash/_baseRest.js +17 -0
  2183. data/node_modules/lodash/_baseSample.js +15 -0
  2184. data/node_modules/lodash/_baseSampleSize.js +18 -0
  2185. data/node_modules/lodash/_baseSet.js +48 -0
  2186. data/node_modules/lodash/_baseSetData.js +17 -0
  2187. data/node_modules/lodash/_baseSetToString.js +22 -0
  2188. data/node_modules/lodash/_baseShuffle.js +15 -0
  2189. data/node_modules/lodash/_baseSlice.js +31 -0
  2190. data/node_modules/lodash/_baseSome.js +22 -0
  2191. data/node_modules/lodash/_baseSortBy.js +21 -0
  2192. data/node_modules/lodash/_baseSortedIndex.js +42 -0
  2193. data/node_modules/lodash/_baseSortedIndexBy.js +64 -0
  2194. data/node_modules/lodash/_baseSortedUniq.js +30 -0
  2195. data/node_modules/lodash/_baseSum.js +24 -0
  2196. data/node_modules/lodash/_baseTimes.js +20 -0
  2197. data/node_modules/lodash/_baseToNumber.js +24 -0
  2198. data/node_modules/lodash/_baseToPairs.js +18 -0
  2199. data/node_modules/lodash/_baseToString.js +37 -0
  2200. data/node_modules/lodash/_baseUnary.js +14 -0
  2201. data/node_modules/lodash/_baseUniq.js +72 -0
  2202. data/node_modules/lodash/_baseUnset.js +29 -0
  2203. data/node_modules/lodash/_baseUpdate.js +18 -0
  2204. data/node_modules/lodash/_baseValues.js +19 -0
  2205. data/node_modules/lodash/_baseWhile.js +26 -0
  2206. data/node_modules/lodash/_baseWrapperValue.js +25 -0
  2207. data/node_modules/lodash/_baseXor.js +36 -0
  2208. data/node_modules/lodash/_baseZipObject.js +23 -0
  2209. data/node_modules/lodash/_cacheHas.js +13 -0
  2210. data/node_modules/lodash/_castArrayLikeObject.js +14 -0
  2211. data/node_modules/lodash/_castFunction.js +14 -0
  2212. data/node_modules/lodash/_castPath.js +15 -0
  2213. data/node_modules/lodash/_castRest.js +14 -0
  2214. data/node_modules/lodash/_castSlice.js +18 -0
  2215. data/node_modules/lodash/_charsEndIndex.js +19 -0
  2216. data/node_modules/lodash/_charsStartIndex.js +20 -0
  2217. data/node_modules/lodash/_cloneArrayBuffer.js +16 -0
  2218. data/node_modules/lodash/_cloneBuffer.js +35 -0
  2219. data/node_modules/lodash/_cloneDataView.js +16 -0
  2220. data/node_modules/lodash/_cloneMap.js +19 -0
  2221. data/node_modules/lodash/_cloneRegExp.js +17 -0
  2222. data/node_modules/lodash/_cloneSet.js +19 -0
  2223. data/node_modules/lodash/_cloneSymbol.js +18 -0
  2224. data/node_modules/lodash/_cloneTypedArray.js +16 -0
  2225. data/node_modules/lodash/_compareAscending.js +41 -0
  2226. data/node_modules/lodash/_compareMultiple.js +44 -0
  2227. data/node_modules/lodash/_composeArgs.js +39 -0
  2228. data/node_modules/lodash/_composeArgsRight.js +41 -0
  2229. data/node_modules/lodash/_copyArray.js +20 -0
  2230. data/node_modules/lodash/_copyObject.js +40 -0
  2231. data/node_modules/lodash/_copySymbols.js +16 -0
  2232. data/node_modules/lodash/_coreJsData.js +6 -0
  2233. data/node_modules/lodash/_countHolders.js +21 -0
  2234. data/node_modules/lodash/_createAggregator.js +23 -0
  2235. data/node_modules/lodash/_createAssigner.js +37 -0
  2236. data/node_modules/lodash/_createBaseEach.js +32 -0
  2237. data/node_modules/lodash/_createBaseFor.js +25 -0
  2238. data/node_modules/lodash/_createBind.js +28 -0
  2239. data/node_modules/lodash/_createCaseFirst.js +33 -0
  2240. data/node_modules/lodash/_createCompounder.js +24 -0
  2241. data/node_modules/lodash/_createCtor.js +37 -0
  2242. data/node_modules/lodash/_createCurry.js +46 -0
  2243. data/node_modules/lodash/_createFind.js +25 -0
  2244. data/node_modules/lodash/_createFlow.js +82 -0
  2245. data/node_modules/lodash/_createHybrid.js +92 -0
  2246. data/node_modules/lodash/_createInverter.js +17 -0
  2247. data/node_modules/lodash/_createMathOperation.js +38 -0
  2248. data/node_modules/lodash/_createOver.js +27 -0
  2249. data/node_modules/lodash/_createPadding.js +33 -0
  2250. data/node_modules/lodash/_createPartial.js +43 -0
  2251. data/node_modules/lodash/_createRange.js +30 -0
  2252. data/node_modules/lodash/_createRecurry.js +56 -0
  2253. data/node_modules/lodash/_createRelationalOperation.js +20 -0
  2254. data/node_modules/lodash/_createRound.js +33 -0
  2255. data/node_modules/lodash/_createSet.js +19 -0
  2256. data/node_modules/lodash/_createToPairs.js +30 -0
  2257. data/node_modules/lodash/_createWrap.js +107 -0
  2258. data/node_modules/lodash/_deburrLetter.js +71 -0
  2259. data/node_modules/lodash/_defineProperty.js +11 -0
  2260. data/node_modules/lodash/_equalArrays.js +84 -0
  2261. data/node_modules/lodash/_equalByTag.js +113 -0
  2262. data/node_modules/lodash/_equalObjects.js +90 -0
  2263. data/node_modules/lodash/_escapeHtmlChar.js +21 -0
  2264. data/node_modules/lodash/_escapeStringChar.js +22 -0
  2265. data/node_modules/lodash/_flatRest.js +16 -0
  2266. data/node_modules/lodash/_freeGlobal.js +4 -0
  2267. data/node_modules/lodash/_getAllKeys.js +16 -0
  2268. data/node_modules/lodash/_getAllKeysIn.js +17 -0
  2269. data/node_modules/lodash/_getData.js +15 -0
  2270. data/node_modules/lodash/_getFuncName.js +31 -0
  2271. data/node_modules/lodash/_getHolder.js +13 -0
  2272. data/node_modules/lodash/_getMapData.js +18 -0
  2273. data/node_modules/lodash/_getMatchData.js +24 -0
  2274. data/node_modules/lodash/_getNative.js +17 -0
  2275. data/node_modules/lodash/_getPrototype.js +6 -0
  2276. data/node_modules/lodash/_getRawTag.js +46 -0
  2277. data/node_modules/lodash/_getSymbols.js +16 -0
  2278. data/node_modules/lodash/_getSymbolsIn.js +26 -0
  2279. data/node_modules/lodash/_getTag.js +58 -0
  2280. data/node_modules/lodash/_getValue.js +13 -0
  2281. data/node_modules/lodash/_getView.js +33 -0
  2282. data/node_modules/lodash/_getWrapDetails.js +17 -0
  2283. data/node_modules/lodash/_hasPath.js +40 -0
  2284. data/node_modules/lodash/_hasUnicode.js +24 -0
  2285. data/node_modules/lodash/_hasUnicodeWord.js +15 -0
  2286. data/node_modules/lodash/_hashClear.js +15 -0
  2287. data/node_modules/lodash/_hashDelete.js +17 -0
  2288. data/node_modules/lodash/_hashGet.js +30 -0
  2289. data/node_modules/lodash/_hashHas.js +23 -0
  2290. data/node_modules/lodash/_hashSet.js +23 -0
  2291. data/node_modules/lodash/_initCloneArray.js +26 -0
  2292. data/node_modules/lodash/_initCloneByTag.js +80 -0
  2293. data/node_modules/lodash/_initCloneObject.js +18 -0
  2294. data/node_modules/lodash/_insertWrapDetails.js +23 -0
  2295. data/node_modules/lodash/_isFlattenable.js +20 -0
  2296. data/node_modules/lodash/_isIndex.js +22 -0
  2297. data/node_modules/lodash/_isIterateeCall.js +30 -0
  2298. data/node_modules/lodash/_isKey.js +29 -0
  2299. data/node_modules/lodash/_isKeyable.js +15 -0
  2300. data/node_modules/lodash/_isLaziable.js +28 -0
  2301. data/node_modules/lodash/_isMaskable.js +14 -0
  2302. data/node_modules/lodash/_isMasked.js +20 -0
  2303. data/node_modules/lodash/_isPrototype.js +18 -0
  2304. data/node_modules/lodash/_isStrictComparable.js +15 -0
  2305. data/node_modules/lodash/_iteratorToArray.js +18 -0
  2306. data/node_modules/lodash/_lazyClone.js +23 -0
  2307. data/node_modules/lodash/_lazyReverse.js +23 -0
  2308. data/node_modules/lodash/_lazyValue.js +73 -0
  2309. data/node_modules/lodash/_listCacheClear.js +13 -0
  2310. data/node_modules/lodash/_listCacheDelete.js +35 -0
  2311. data/node_modules/lodash/_listCacheGet.js +19 -0
  2312. data/node_modules/lodash/_listCacheHas.js +16 -0
  2313. data/node_modules/lodash/_listCacheSet.js +26 -0
  2314. data/node_modules/lodash/_mapCacheClear.js +21 -0
  2315. data/node_modules/lodash/_mapCacheDelete.js +18 -0
  2316. data/node_modules/lodash/_mapCacheGet.js +16 -0
  2317. data/node_modules/lodash/_mapCacheHas.js +16 -0
  2318. data/node_modules/lodash/_mapCacheSet.js +22 -0
  2319. data/node_modules/lodash/_mapToArray.js +18 -0
  2320. data/node_modules/lodash/_matchesStrictComparable.js +20 -0
  2321. data/node_modules/lodash/_memoizeCapped.js +26 -0
  2322. data/node_modules/lodash/_mergeData.js +90 -0
  2323. data/node_modules/lodash/_mergeDefaults.js +27 -0
  2324. data/node_modules/lodash/_metaMap.js +6 -0
  2325. data/node_modules/lodash/_nativeCreate.js +6 -0
  2326. data/node_modules/lodash/_nativeKeys.js +6 -0
  2327. data/node_modules/lodash/_nativeKeysIn.js +20 -0
  2328. data/node_modules/lodash/_nodeUtil.js +22 -0
  2329. data/node_modules/lodash/_objectToString.js +22 -0
  2330. data/node_modules/lodash/_overArg.js +15 -0
  2331. data/node_modules/lodash/_overRest.js +36 -0
  2332. data/node_modules/lodash/_parent.js +16 -0
  2333. data/node_modules/lodash/_reEscape.js +4 -0
  2334. data/node_modules/lodash/_reEvaluate.js +4 -0
  2335. data/node_modules/lodash/_reInterpolate.js +4 -0
  2336. data/node_modules/lodash/_realNames.js +4 -0
  2337. data/node_modules/lodash/_reorder.js +29 -0
  2338. data/node_modules/lodash/_replaceHolders.js +29 -0
  2339. data/node_modules/lodash/_root.js +9 -0
  2340. data/node_modules/lodash/_setCacheAdd.js +19 -0
  2341. data/node_modules/lodash/_setCacheHas.js +14 -0
  2342. data/node_modules/lodash/_setData.js +20 -0
  2343. data/node_modules/lodash/_setToArray.js +18 -0
  2344. data/node_modules/lodash/_setToPairs.js +18 -0
  2345. data/node_modules/lodash/_setToString.js +14 -0
  2346. data/node_modules/lodash/_setWrapToString.js +21 -0
  2347. data/node_modules/lodash/_shortOut.js +37 -0
  2348. data/node_modules/lodash/_shuffleSelf.js +28 -0
  2349. data/node_modules/lodash/_stackClear.js +15 -0
  2350. data/node_modules/lodash/_stackDelete.js +18 -0
  2351. data/node_modules/lodash/_stackGet.js +14 -0
  2352. data/node_modules/lodash/_stackHas.js +14 -0
  2353. data/node_modules/lodash/_stackSet.js +34 -0
  2354. data/node_modules/lodash/_strictIndexOf.js +23 -0
  2355. data/node_modules/lodash/_strictLastIndexOf.js +21 -0
  2356. data/node_modules/lodash/_stringSize.js +18 -0
  2357. data/node_modules/lodash/_stringToArray.js +18 -0
  2358. data/node_modules/lodash/_stringToPath.js +31 -0
  2359. data/node_modules/lodash/_toKey.js +21 -0
  2360. data/node_modules/lodash/_toSource.js +26 -0
  2361. data/node_modules/lodash/_unescapeHtmlChar.js +21 -0
  2362. data/node_modules/lodash/_unicodeSize.js +42 -0
  2363. data/node_modules/lodash/_unicodeToArray.js +38 -0
  2364. data/node_modules/lodash/_unicodeWords.js +67 -0
  2365. data/node_modules/lodash/_updateWrapDetails.js +46 -0
  2366. data/node_modules/lodash/_wrapperClone.js +23 -0
  2367. data/node_modules/lodash/add.js +22 -0
  2368. data/node_modules/lodash/after.js +42 -0
  2369. data/node_modules/lodash/array.js +67 -0
  2370. data/node_modules/lodash/ary.js +29 -0
  2371. data/node_modules/lodash/assign.js +58 -0
  2372. data/node_modules/lodash/assignIn.js +40 -0
  2373. data/node_modules/lodash/assignInWith.js +38 -0
  2374. data/node_modules/lodash/assignWith.js +37 -0
  2375. data/node_modules/lodash/at.js +23 -0
  2376. data/node_modules/lodash/attempt.js +35 -0
  2377. data/node_modules/lodash/before.js +40 -0
  2378. data/node_modules/lodash/bind.js +57 -0
  2379. data/node_modules/lodash/bindAll.js +41 -0
  2380. data/node_modules/lodash/bindKey.js +68 -0
  2381. data/node_modules/lodash/camelCase.js +29 -0
  2382. data/node_modules/lodash/capitalize.js +23 -0
  2383. data/node_modules/lodash/castArray.js +44 -0
  2384. data/node_modules/lodash/ceil.js +26 -0
  2385. data/node_modules/lodash/chain.js +38 -0
  2386. data/node_modules/lodash/chunk.js +50 -0
  2387. data/node_modules/lodash/clamp.js +39 -0
  2388. data/node_modules/lodash/clone.js +33 -0
  2389. data/node_modules/lodash/cloneDeep.js +25 -0
  2390. data/node_modules/lodash/cloneDeepWith.js +36 -0
  2391. data/node_modules/lodash/cloneWith.js +39 -0
  2392. data/node_modules/lodash/collection.js +30 -0
  2393. data/node_modules/lodash/commit.js +33 -0
  2394. data/node_modules/lodash/compact.js +31 -0
  2395. data/node_modules/lodash/concat.js +43 -0
  2396. data/node_modules/lodash/cond.js +60 -0
  2397. data/node_modules/lodash/conforms.js +32 -0
  2398. data/node_modules/lodash/conformsTo.js +32 -0
  2399. data/node_modules/lodash/constant.js +26 -0
  2400. data/node_modules/lodash/core.js +3853 -0
  2401. data/node_modules/lodash/core.min.js +29 -0
  2402. data/node_modules/lodash/countBy.js +40 -0
  2403. data/node_modules/lodash/create.js +43 -0
  2404. data/node_modules/lodash/curry.js +57 -0
  2405. data/node_modules/lodash/curryRight.js +54 -0
  2406. data/node_modules/lodash/date.js +3 -0
  2407. data/node_modules/lodash/debounce.js +188 -0
  2408. data/node_modules/lodash/deburr.js +43 -0
  2409. data/node_modules/lodash/defaultTo.js +25 -0
  2410. data/node_modules/lodash/defaults.js +32 -0
  2411. data/node_modules/lodash/defaultsDeep.js +30 -0
  2412. data/node_modules/lodash/defer.js +26 -0
  2413. data/node_modules/lodash/delay.js +28 -0
  2414. data/node_modules/lodash/difference.js +33 -0
  2415. data/node_modules/lodash/differenceBy.js +44 -0
  2416. data/node_modules/lodash/differenceWith.js +40 -0
  2417. data/node_modules/lodash/divide.js +22 -0
  2418. data/node_modules/lodash/drop.js +38 -0
  2419. data/node_modules/lodash/dropRight.js +39 -0
  2420. data/node_modules/lodash/dropRightWhile.js +45 -0
  2421. data/node_modules/lodash/dropWhile.js +45 -0
  2422. data/node_modules/lodash/each.js +1 -0
  2423. data/node_modules/lodash/eachRight.js +1 -0
  2424. data/node_modules/lodash/endsWith.js +43 -0
  2425. data/node_modules/lodash/entries.js +1 -0
  2426. data/node_modules/lodash/entriesIn.js +1 -0
  2427. data/node_modules/lodash/eq.js +37 -0
  2428. data/node_modules/lodash/escape.js +43 -0
  2429. data/node_modules/lodash/escapeRegExp.js +32 -0
  2430. data/node_modules/lodash/every.js +56 -0
  2431. data/node_modules/lodash/extend.js +1 -0
  2432. data/node_modules/lodash/extendWith.js +1 -0
  2433. data/node_modules/lodash/fill.js +45 -0
  2434. data/node_modules/lodash/filter.js +48 -0
  2435. data/node_modules/lodash/find.js +42 -0
  2436. data/node_modules/lodash/findIndex.js +55 -0
  2437. data/node_modules/lodash/findKey.js +44 -0
  2438. data/node_modules/lodash/findLast.js +25 -0
  2439. data/node_modules/lodash/findLastIndex.js +59 -0
  2440. data/node_modules/lodash/findLastKey.js +44 -0
  2441. data/node_modules/lodash/first.js +1 -0
  2442. data/node_modules/lodash/flatMap.js +29 -0
  2443. data/node_modules/lodash/flatMapDeep.js +31 -0
  2444. data/node_modules/lodash/flatMapDepth.js +31 -0
  2445. data/node_modules/lodash/flatten.js +22 -0
  2446. data/node_modules/lodash/flattenDeep.js +25 -0
  2447. data/node_modules/lodash/flattenDepth.js +33 -0
  2448. data/node_modules/lodash/flip.js +28 -0
  2449. data/node_modules/lodash/floor.js +26 -0
  2450. data/node_modules/lodash/flow.js +27 -0
  2451. data/node_modules/lodash/flowRight.js +26 -0
  2452. data/node_modules/lodash/forEach.js +41 -0
  2453. data/node_modules/lodash/forEachRight.js +31 -0
  2454. data/node_modules/lodash/forIn.js +39 -0
  2455. data/node_modules/lodash/forInRight.js +37 -0
  2456. data/node_modules/lodash/forOwn.js +36 -0
  2457. data/node_modules/lodash/forOwnRight.js +34 -0
  2458. data/node_modules/lodash/fp.js +2 -0
  2459. data/node_modules/lodash/fp/F.js +1 -0
  2460. data/node_modules/lodash/fp/T.js +1 -0
  2461. data/node_modules/lodash/fp/__.js +1 -0
  2462. data/node_modules/lodash/fp/_baseConvert.js +536 -0
  2463. data/node_modules/lodash/fp/_convertBrowser.js +18 -0
  2464. data/node_modules/lodash/fp/_falseOptions.js +7 -0
  2465. data/node_modules/lodash/fp/_mapping.js +367 -0
  2466. data/node_modules/lodash/fp/_util.js +15 -0
  2467. data/node_modules/lodash/fp/add.js +5 -0
  2468. data/node_modules/lodash/fp/after.js +5 -0
  2469. data/node_modules/lodash/fp/all.js +1 -0
  2470. data/node_modules/lodash/fp/allPass.js +1 -0
  2471. data/node_modules/lodash/fp/always.js +1 -0
  2472. data/node_modules/lodash/fp/any.js +1 -0
  2473. data/node_modules/lodash/fp/anyPass.js +1 -0
  2474. data/node_modules/lodash/fp/apply.js +1 -0
  2475. data/node_modules/lodash/fp/array.js +2 -0
  2476. data/node_modules/lodash/fp/ary.js +5 -0
  2477. data/node_modules/lodash/fp/assign.js +5 -0
  2478. data/node_modules/lodash/fp/assignAll.js +5 -0
  2479. data/node_modules/lodash/fp/assignAllWith.js +5 -0
  2480. data/node_modules/lodash/fp/assignIn.js +5 -0
  2481. data/node_modules/lodash/fp/assignInAll.js +5 -0
  2482. data/node_modules/lodash/fp/assignInAllWith.js +5 -0
  2483. data/node_modules/lodash/fp/assignInWith.js +5 -0
  2484. data/node_modules/lodash/fp/assignWith.js +5 -0
  2485. data/node_modules/lodash/fp/assoc.js +1 -0
  2486. data/node_modules/lodash/fp/assocPath.js +1 -0
  2487. data/node_modules/lodash/fp/at.js +5 -0
  2488. data/node_modules/lodash/fp/attempt.js +5 -0
  2489. data/node_modules/lodash/fp/before.js +5 -0
  2490. data/node_modules/lodash/fp/bind.js +5 -0
  2491. data/node_modules/lodash/fp/bindAll.js +5 -0
  2492. data/node_modules/lodash/fp/bindKey.js +5 -0
  2493. data/node_modules/lodash/fp/camelCase.js +5 -0
  2494. data/node_modules/lodash/fp/capitalize.js +5 -0
  2495. data/node_modules/lodash/fp/castArray.js +5 -0
  2496. data/node_modules/lodash/fp/ceil.js +5 -0
  2497. data/node_modules/lodash/fp/chain.js +5 -0
  2498. data/node_modules/lodash/fp/chunk.js +5 -0
  2499. data/node_modules/lodash/fp/clamp.js +5 -0
  2500. data/node_modules/lodash/fp/clone.js +5 -0
  2501. data/node_modules/lodash/fp/cloneDeep.js +5 -0
  2502. data/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  2503. data/node_modules/lodash/fp/cloneWith.js +5 -0
  2504. data/node_modules/lodash/fp/collection.js +2 -0
  2505. data/node_modules/lodash/fp/commit.js +5 -0
  2506. data/node_modules/lodash/fp/compact.js +5 -0
  2507. data/node_modules/lodash/fp/complement.js +1 -0
  2508. data/node_modules/lodash/fp/compose.js +1 -0
  2509. data/node_modules/lodash/fp/concat.js +5 -0
  2510. data/node_modules/lodash/fp/cond.js +5 -0
  2511. data/node_modules/lodash/fp/conforms.js +1 -0
  2512. data/node_modules/lodash/fp/conformsTo.js +5 -0
  2513. data/node_modules/lodash/fp/constant.js +5 -0
  2514. data/node_modules/lodash/fp/contains.js +1 -0
  2515. data/node_modules/lodash/fp/convert.js +18 -0
  2516. data/node_modules/lodash/fp/countBy.js +5 -0
  2517. data/node_modules/lodash/fp/create.js +5 -0
  2518. data/node_modules/lodash/fp/curry.js +5 -0
  2519. data/node_modules/lodash/fp/curryN.js +5 -0
  2520. data/node_modules/lodash/fp/curryRight.js +5 -0
  2521. data/node_modules/lodash/fp/curryRightN.js +5 -0
  2522. data/node_modules/lodash/fp/date.js +2 -0
  2523. data/node_modules/lodash/fp/debounce.js +5 -0
  2524. data/node_modules/lodash/fp/deburr.js +5 -0
  2525. data/node_modules/lodash/fp/defaultTo.js +5 -0
  2526. data/node_modules/lodash/fp/defaults.js +5 -0
  2527. data/node_modules/lodash/fp/defaultsAll.js +5 -0
  2528. data/node_modules/lodash/fp/defaultsDeep.js +5 -0
  2529. data/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  2530. data/node_modules/lodash/fp/defer.js +5 -0
  2531. data/node_modules/lodash/fp/delay.js +5 -0
  2532. data/node_modules/lodash/fp/difference.js +5 -0
  2533. data/node_modules/lodash/fp/differenceBy.js +5 -0
  2534. data/node_modules/lodash/fp/differenceWith.js +5 -0
  2535. data/node_modules/lodash/fp/dissoc.js +1 -0
  2536. data/node_modules/lodash/fp/dissocPath.js +1 -0
  2537. data/node_modules/lodash/fp/divide.js +5 -0
  2538. data/node_modules/lodash/fp/drop.js +5 -0
  2539. data/node_modules/lodash/fp/dropLast.js +1 -0
  2540. data/node_modules/lodash/fp/dropLastWhile.js +1 -0
  2541. data/node_modules/lodash/fp/dropRight.js +5 -0
  2542. data/node_modules/lodash/fp/dropRightWhile.js +5 -0
  2543. data/node_modules/lodash/fp/dropWhile.js +5 -0
  2544. data/node_modules/lodash/fp/each.js +1 -0
  2545. data/node_modules/lodash/fp/eachRight.js +1 -0
  2546. data/node_modules/lodash/fp/endsWith.js +5 -0
  2547. data/node_modules/lodash/fp/entries.js +1 -0
  2548. data/node_modules/lodash/fp/entriesIn.js +1 -0
  2549. data/node_modules/lodash/fp/eq.js +5 -0
  2550. data/node_modules/lodash/fp/equals.js +1 -0
  2551. data/node_modules/lodash/fp/escape.js +5 -0
  2552. data/node_modules/lodash/fp/escapeRegExp.js +5 -0
  2553. data/node_modules/lodash/fp/every.js +5 -0
  2554. data/node_modules/lodash/fp/extend.js +1 -0
  2555. data/node_modules/lodash/fp/extendAll.js +1 -0
  2556. data/node_modules/lodash/fp/extendAllWith.js +1 -0
  2557. data/node_modules/lodash/fp/extendWith.js +1 -0
  2558. data/node_modules/lodash/fp/fill.js +5 -0
  2559. data/node_modules/lodash/fp/filter.js +5 -0
  2560. data/node_modules/lodash/fp/find.js +5 -0
  2561. data/node_modules/lodash/fp/findFrom.js +5 -0
  2562. data/node_modules/lodash/fp/findIndex.js +5 -0
  2563. data/node_modules/lodash/fp/findIndexFrom.js +5 -0
  2564. data/node_modules/lodash/fp/findKey.js +5 -0
  2565. data/node_modules/lodash/fp/findLast.js +5 -0
  2566. data/node_modules/lodash/fp/findLastFrom.js +5 -0
  2567. data/node_modules/lodash/fp/findLastIndex.js +5 -0
  2568. data/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
  2569. data/node_modules/lodash/fp/findLastKey.js +5 -0
  2570. data/node_modules/lodash/fp/first.js +1 -0
  2571. data/node_modules/lodash/fp/flatMap.js +5 -0
  2572. data/node_modules/lodash/fp/flatMapDeep.js +5 -0
  2573. data/node_modules/lodash/fp/flatMapDepth.js +5 -0
  2574. data/node_modules/lodash/fp/flatten.js +5 -0
  2575. data/node_modules/lodash/fp/flattenDeep.js +5 -0
  2576. data/node_modules/lodash/fp/flattenDepth.js +5 -0
  2577. data/node_modules/lodash/fp/flip.js +5 -0
  2578. data/node_modules/lodash/fp/floor.js +5 -0
  2579. data/node_modules/lodash/fp/flow.js +5 -0
  2580. data/node_modules/lodash/fp/flowRight.js +5 -0
  2581. data/node_modules/lodash/fp/forEach.js +5 -0
  2582. data/node_modules/lodash/fp/forEachRight.js +5 -0
  2583. data/node_modules/lodash/fp/forIn.js +5 -0
  2584. data/node_modules/lodash/fp/forInRight.js +5 -0
  2585. data/node_modules/lodash/fp/forOwn.js +5 -0
  2586. data/node_modules/lodash/fp/forOwnRight.js +5 -0
  2587. data/node_modules/lodash/fp/fromPairs.js +5 -0
  2588. data/node_modules/lodash/fp/function.js +2 -0
  2589. data/node_modules/lodash/fp/functions.js +5 -0
  2590. data/node_modules/lodash/fp/functionsIn.js +5 -0
  2591. data/node_modules/lodash/fp/get.js +5 -0
  2592. data/node_modules/lodash/fp/getOr.js +5 -0
  2593. data/node_modules/lodash/fp/groupBy.js +5 -0
  2594. data/node_modules/lodash/fp/gt.js +5 -0
  2595. data/node_modules/lodash/fp/gte.js +5 -0
  2596. data/node_modules/lodash/fp/has.js +5 -0
  2597. data/node_modules/lodash/fp/hasIn.js +5 -0
  2598. data/node_modules/lodash/fp/head.js +5 -0
  2599. data/node_modules/lodash/fp/identical.js +1 -0
  2600. data/node_modules/lodash/fp/identity.js +5 -0
  2601. data/node_modules/lodash/fp/inRange.js +5 -0
  2602. data/node_modules/lodash/fp/includes.js +5 -0
  2603. data/node_modules/lodash/fp/includesFrom.js +5 -0
  2604. data/node_modules/lodash/fp/indexBy.js +1 -0
  2605. data/node_modules/lodash/fp/indexOf.js +5 -0
  2606. data/node_modules/lodash/fp/indexOfFrom.js +5 -0
  2607. data/node_modules/lodash/fp/init.js +1 -0
  2608. data/node_modules/lodash/fp/initial.js +5 -0
  2609. data/node_modules/lodash/fp/intersection.js +5 -0
  2610. data/node_modules/lodash/fp/intersectionBy.js +5 -0
  2611. data/node_modules/lodash/fp/intersectionWith.js +5 -0
  2612. data/node_modules/lodash/fp/invert.js +5 -0
  2613. data/node_modules/lodash/fp/invertBy.js +5 -0
  2614. data/node_modules/lodash/fp/invertObj.js +1 -0
  2615. data/node_modules/lodash/fp/invoke.js +5 -0
  2616. data/node_modules/lodash/fp/invokeArgs.js +5 -0
  2617. data/node_modules/lodash/fp/invokeArgsMap.js +5 -0
  2618. data/node_modules/lodash/fp/invokeMap.js +5 -0
  2619. data/node_modules/lodash/fp/isArguments.js +5 -0
  2620. data/node_modules/lodash/fp/isArray.js +5 -0
  2621. data/node_modules/lodash/fp/isArrayBuffer.js +5 -0
  2622. data/node_modules/lodash/fp/isArrayLike.js +5 -0
  2623. data/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
  2624. data/node_modules/lodash/fp/isBoolean.js +5 -0
  2625. data/node_modules/lodash/fp/isBuffer.js +5 -0
  2626. data/node_modules/lodash/fp/isDate.js +5 -0
  2627. data/node_modules/lodash/fp/isElement.js +5 -0
  2628. data/node_modules/lodash/fp/isEmpty.js +5 -0
  2629. data/node_modules/lodash/fp/isEqual.js +5 -0
  2630. data/node_modules/lodash/fp/isEqualWith.js +5 -0
  2631. data/node_modules/lodash/fp/isError.js +5 -0
  2632. data/node_modules/lodash/fp/isFinite.js +5 -0
  2633. data/node_modules/lodash/fp/isFunction.js +5 -0
  2634. data/node_modules/lodash/fp/isInteger.js +5 -0
  2635. data/node_modules/lodash/fp/isLength.js +5 -0
  2636. data/node_modules/lodash/fp/isMap.js +5 -0
  2637. data/node_modules/lodash/fp/isMatch.js +5 -0
  2638. data/node_modules/lodash/fp/isMatchWith.js +5 -0
  2639. data/node_modules/lodash/fp/isNaN.js +5 -0
  2640. data/node_modules/lodash/fp/isNative.js +5 -0
  2641. data/node_modules/lodash/fp/isNil.js +5 -0
  2642. data/node_modules/lodash/fp/isNull.js +5 -0
  2643. data/node_modules/lodash/fp/isNumber.js +5 -0
  2644. data/node_modules/lodash/fp/isObject.js +5 -0
  2645. data/node_modules/lodash/fp/isObjectLike.js +5 -0
  2646. data/node_modules/lodash/fp/isPlainObject.js +5 -0
  2647. data/node_modules/lodash/fp/isRegExp.js +5 -0
  2648. data/node_modules/lodash/fp/isSafeInteger.js +5 -0
  2649. data/node_modules/lodash/fp/isSet.js +5 -0
  2650. data/node_modules/lodash/fp/isString.js +5 -0
  2651. data/node_modules/lodash/fp/isSymbol.js +5 -0
  2652. data/node_modules/lodash/fp/isTypedArray.js +5 -0
  2653. data/node_modules/lodash/fp/isUndefined.js +5 -0
  2654. data/node_modules/lodash/fp/isWeakMap.js +5 -0
  2655. data/node_modules/lodash/fp/isWeakSet.js +5 -0
  2656. data/node_modules/lodash/fp/iteratee.js +5 -0
  2657. data/node_modules/lodash/fp/join.js +5 -0
  2658. data/node_modules/lodash/fp/juxt.js +1 -0
  2659. data/node_modules/lodash/fp/kebabCase.js +5 -0
  2660. data/node_modules/lodash/fp/keyBy.js +5 -0
  2661. data/node_modules/lodash/fp/keys.js +5 -0
  2662. data/node_modules/lodash/fp/keysIn.js +5 -0
  2663. data/node_modules/lodash/fp/lang.js +2 -0
  2664. data/node_modules/lodash/fp/last.js +5 -0
  2665. data/node_modules/lodash/fp/lastIndexOf.js +5 -0
  2666. data/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
  2667. data/node_modules/lodash/fp/lowerCase.js +5 -0
  2668. data/node_modules/lodash/fp/lowerFirst.js +5 -0
  2669. data/node_modules/lodash/fp/lt.js +5 -0
  2670. data/node_modules/lodash/fp/lte.js +5 -0
  2671. data/node_modules/lodash/fp/map.js +5 -0
  2672. data/node_modules/lodash/fp/mapKeys.js +5 -0
  2673. data/node_modules/lodash/fp/mapValues.js +5 -0
  2674. data/node_modules/lodash/fp/matches.js +1 -0
  2675. data/node_modules/lodash/fp/matchesProperty.js +5 -0
  2676. data/node_modules/lodash/fp/math.js +2 -0
  2677. data/node_modules/lodash/fp/max.js +5 -0
  2678. data/node_modules/lodash/fp/maxBy.js +5 -0
  2679. data/node_modules/lodash/fp/mean.js +5 -0
  2680. data/node_modules/lodash/fp/meanBy.js +5 -0
  2681. data/node_modules/lodash/fp/memoize.js +5 -0
  2682. data/node_modules/lodash/fp/merge.js +5 -0
  2683. data/node_modules/lodash/fp/mergeAll.js +5 -0
  2684. data/node_modules/lodash/fp/mergeAllWith.js +5 -0
  2685. data/node_modules/lodash/fp/mergeWith.js +5 -0
  2686. data/node_modules/lodash/fp/method.js +5 -0
  2687. data/node_modules/lodash/fp/methodOf.js +5 -0
  2688. data/node_modules/lodash/fp/min.js +5 -0
  2689. data/node_modules/lodash/fp/minBy.js +5 -0
  2690. data/node_modules/lodash/fp/mixin.js +5 -0
  2691. data/node_modules/lodash/fp/multiply.js +5 -0
  2692. data/node_modules/lodash/fp/nAry.js +1 -0
  2693. data/node_modules/lodash/fp/negate.js +5 -0
  2694. data/node_modules/lodash/fp/next.js +5 -0
  2695. data/node_modules/lodash/fp/noop.js +5 -0
  2696. data/node_modules/lodash/fp/now.js +5 -0
  2697. data/node_modules/lodash/fp/nth.js +5 -0
  2698. data/node_modules/lodash/fp/nthArg.js +5 -0
  2699. data/node_modules/lodash/fp/number.js +2 -0
  2700. data/node_modules/lodash/fp/object.js +2 -0
  2701. data/node_modules/lodash/fp/omit.js +5 -0
  2702. data/node_modules/lodash/fp/omitAll.js +1 -0
  2703. data/node_modules/lodash/fp/omitBy.js +5 -0
  2704. data/node_modules/lodash/fp/once.js +5 -0
  2705. data/node_modules/lodash/fp/orderBy.js +5 -0
  2706. data/node_modules/lodash/fp/over.js +5 -0
  2707. data/node_modules/lodash/fp/overArgs.js +5 -0
  2708. data/node_modules/lodash/fp/overEvery.js +5 -0
  2709. data/node_modules/lodash/fp/overSome.js +5 -0
  2710. data/node_modules/lodash/fp/pad.js +5 -0
  2711. data/node_modules/lodash/fp/padChars.js +5 -0
  2712. data/node_modules/lodash/fp/padCharsEnd.js +5 -0
  2713. data/node_modules/lodash/fp/padCharsStart.js +5 -0
  2714. data/node_modules/lodash/fp/padEnd.js +5 -0
  2715. data/node_modules/lodash/fp/padStart.js +5 -0
  2716. data/node_modules/lodash/fp/parseInt.js +5 -0
  2717. data/node_modules/lodash/fp/partial.js +5 -0
  2718. data/node_modules/lodash/fp/partialRight.js +5 -0
  2719. data/node_modules/lodash/fp/partition.js +5 -0
  2720. data/node_modules/lodash/fp/path.js +1 -0
  2721. data/node_modules/lodash/fp/pathEq.js +1 -0
  2722. data/node_modules/lodash/fp/pathOr.js +1 -0
  2723. data/node_modules/lodash/fp/paths.js +1 -0
  2724. data/node_modules/lodash/fp/pick.js +5 -0
  2725. data/node_modules/lodash/fp/pickAll.js +1 -0
  2726. data/node_modules/lodash/fp/pickBy.js +5 -0
  2727. data/node_modules/lodash/fp/pipe.js +1 -0
  2728. data/node_modules/lodash/fp/placeholder.js +6 -0
  2729. data/node_modules/lodash/fp/plant.js +5 -0
  2730. data/node_modules/lodash/fp/pluck.js +1 -0
  2731. data/node_modules/lodash/fp/prop.js +1 -0
  2732. data/node_modules/lodash/fp/propEq.js +1 -0
  2733. data/node_modules/lodash/fp/propOr.js +1 -0
  2734. data/node_modules/lodash/fp/property.js +1 -0
  2735. data/node_modules/lodash/fp/propertyOf.js +5 -0
  2736. data/node_modules/lodash/fp/props.js +1 -0
  2737. data/node_modules/lodash/fp/pull.js +5 -0
  2738. data/node_modules/lodash/fp/pullAll.js +5 -0
  2739. data/node_modules/lodash/fp/pullAllBy.js +5 -0
  2740. data/node_modules/lodash/fp/pullAllWith.js +5 -0
  2741. data/node_modules/lodash/fp/pullAt.js +5 -0
  2742. data/node_modules/lodash/fp/random.js +5 -0
  2743. data/node_modules/lodash/fp/range.js +5 -0
  2744. data/node_modules/lodash/fp/rangeRight.js +5 -0
  2745. data/node_modules/lodash/fp/rangeStep.js +5 -0
  2746. data/node_modules/lodash/fp/rangeStepRight.js +5 -0
  2747. data/node_modules/lodash/fp/rearg.js +5 -0
  2748. data/node_modules/lodash/fp/reduce.js +5 -0
  2749. data/node_modules/lodash/fp/reduceRight.js +5 -0
  2750. data/node_modules/lodash/fp/reject.js +5 -0
  2751. data/node_modules/lodash/fp/remove.js +5 -0
  2752. data/node_modules/lodash/fp/repeat.js +5 -0
  2753. data/node_modules/lodash/fp/replace.js +5 -0
  2754. data/node_modules/lodash/fp/rest.js +5 -0
  2755. data/node_modules/lodash/fp/restFrom.js +5 -0
  2756. data/node_modules/lodash/fp/result.js +5 -0
  2757. data/node_modules/lodash/fp/reverse.js +5 -0
  2758. data/node_modules/lodash/fp/round.js +5 -0
  2759. data/node_modules/lodash/fp/sample.js +5 -0
  2760. data/node_modules/lodash/fp/sampleSize.js +5 -0
  2761. data/node_modules/lodash/fp/seq.js +2 -0
  2762. data/node_modules/lodash/fp/set.js +5 -0
  2763. data/node_modules/lodash/fp/setWith.js +5 -0
  2764. data/node_modules/lodash/fp/shuffle.js +5 -0
  2765. data/node_modules/lodash/fp/size.js +5 -0
  2766. data/node_modules/lodash/fp/slice.js +5 -0
  2767. data/node_modules/lodash/fp/snakeCase.js +5 -0
  2768. data/node_modules/lodash/fp/some.js +5 -0
  2769. data/node_modules/lodash/fp/sortBy.js +5 -0
  2770. data/node_modules/lodash/fp/sortedIndex.js +5 -0
  2771. data/node_modules/lodash/fp/sortedIndexBy.js +5 -0
  2772. data/node_modules/lodash/fp/sortedIndexOf.js +5 -0
  2773. data/node_modules/lodash/fp/sortedLastIndex.js +5 -0
  2774. data/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
  2775. data/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
  2776. data/node_modules/lodash/fp/sortedUniq.js +5 -0
  2777. data/node_modules/lodash/fp/sortedUniqBy.js +5 -0
  2778. data/node_modules/lodash/fp/split.js +5 -0
  2779. data/node_modules/lodash/fp/spread.js +5 -0
  2780. data/node_modules/lodash/fp/spreadFrom.js +5 -0
  2781. data/node_modules/lodash/fp/startCase.js +5 -0
  2782. data/node_modules/lodash/fp/startsWith.js +5 -0
  2783. data/node_modules/lodash/fp/string.js +2 -0
  2784. data/node_modules/lodash/fp/stubArray.js +5 -0
  2785. data/node_modules/lodash/fp/stubFalse.js +5 -0
  2786. data/node_modules/lodash/fp/stubObject.js +5 -0
  2787. data/node_modules/lodash/fp/stubString.js +5 -0
  2788. data/node_modules/lodash/fp/stubTrue.js +5 -0
  2789. data/node_modules/lodash/fp/subtract.js +5 -0
  2790. data/node_modules/lodash/fp/sum.js +5 -0
  2791. data/node_modules/lodash/fp/sumBy.js +5 -0
  2792. data/node_modules/lodash/fp/symmetricDifference.js +1 -0
  2793. data/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
  2794. data/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
  2795. data/node_modules/lodash/fp/tail.js +5 -0
  2796. data/node_modules/lodash/fp/take.js +5 -0
  2797. data/node_modules/lodash/fp/takeLast.js +1 -0
  2798. data/node_modules/lodash/fp/takeLastWhile.js +1 -0
  2799. data/node_modules/lodash/fp/takeRight.js +5 -0
  2800. data/node_modules/lodash/fp/takeRightWhile.js +5 -0
  2801. data/node_modules/lodash/fp/takeWhile.js +5 -0
  2802. data/node_modules/lodash/fp/tap.js +5 -0
  2803. data/node_modules/lodash/fp/template.js +5 -0
  2804. data/node_modules/lodash/fp/templateSettings.js +5 -0
  2805. data/node_modules/lodash/fp/throttle.js +5 -0
  2806. data/node_modules/lodash/fp/thru.js +5 -0
  2807. data/node_modules/lodash/fp/times.js +5 -0
  2808. data/node_modules/lodash/fp/toArray.js +5 -0
  2809. data/node_modules/lodash/fp/toFinite.js +5 -0
  2810. data/node_modules/lodash/fp/toInteger.js +5 -0
  2811. data/node_modules/lodash/fp/toIterator.js +5 -0
  2812. data/node_modules/lodash/fp/toJSON.js +5 -0
  2813. data/node_modules/lodash/fp/toLength.js +5 -0
  2814. data/node_modules/lodash/fp/toLower.js +5 -0
  2815. data/node_modules/lodash/fp/toNumber.js +5 -0
  2816. data/node_modules/lodash/fp/toPairs.js +5 -0
  2817. data/node_modules/lodash/fp/toPairsIn.js +5 -0
  2818. data/node_modules/lodash/fp/toPath.js +5 -0
  2819. data/node_modules/lodash/fp/toPlainObject.js +5 -0
  2820. data/node_modules/lodash/fp/toSafeInteger.js +5 -0
  2821. data/node_modules/lodash/fp/toString.js +5 -0
  2822. data/node_modules/lodash/fp/toUpper.js +5 -0
  2823. data/node_modules/lodash/fp/transform.js +5 -0
  2824. data/node_modules/lodash/fp/trim.js +5 -0
  2825. data/node_modules/lodash/fp/trimChars.js +5 -0
  2826. data/node_modules/lodash/fp/trimCharsEnd.js +5 -0
  2827. data/node_modules/lodash/fp/trimCharsStart.js +5 -0
  2828. data/node_modules/lodash/fp/trimEnd.js +5 -0
  2829. data/node_modules/lodash/fp/trimStart.js +5 -0
  2830. data/node_modules/lodash/fp/truncate.js +5 -0
  2831. data/node_modules/lodash/fp/unapply.js +1 -0
  2832. data/node_modules/lodash/fp/unary.js +5 -0
  2833. data/node_modules/lodash/fp/unescape.js +5 -0
  2834. data/node_modules/lodash/fp/union.js +5 -0
  2835. data/node_modules/lodash/fp/unionBy.js +5 -0
  2836. data/node_modules/lodash/fp/unionWith.js +5 -0
  2837. data/node_modules/lodash/fp/uniq.js +5 -0
  2838. data/node_modules/lodash/fp/uniqBy.js +5 -0
  2839. data/node_modules/lodash/fp/uniqWith.js +5 -0
  2840. data/node_modules/lodash/fp/uniqueId.js +5 -0
  2841. data/node_modules/lodash/fp/unnest.js +1 -0
  2842. data/node_modules/lodash/fp/unset.js +5 -0
  2843. data/node_modules/lodash/fp/unzip.js +5 -0
  2844. data/node_modules/lodash/fp/unzipWith.js +5 -0
  2845. data/node_modules/lodash/fp/update.js +5 -0
  2846. data/node_modules/lodash/fp/updateWith.js +5 -0
  2847. data/node_modules/lodash/fp/upperCase.js +5 -0
  2848. data/node_modules/lodash/fp/upperFirst.js +5 -0
  2849. data/node_modules/lodash/fp/useWith.js +1 -0
  2850. data/node_modules/lodash/fp/util.js +2 -0
  2851. data/node_modules/lodash/fp/value.js +5 -0
  2852. data/node_modules/lodash/fp/valueOf.js +5 -0
  2853. data/node_modules/lodash/fp/values.js +5 -0
  2854. data/node_modules/lodash/fp/valuesIn.js +5 -0
  2855. data/node_modules/lodash/fp/where.js +1 -0
  2856. data/node_modules/lodash/fp/whereEq.js +1 -0
  2857. data/node_modules/lodash/fp/without.js +5 -0
  2858. data/node_modules/lodash/fp/words.js +5 -0
  2859. data/node_modules/lodash/fp/wrap.js +5 -0
  2860. data/node_modules/lodash/fp/wrapperAt.js +5 -0
  2861. data/node_modules/lodash/fp/wrapperChain.js +5 -0
  2862. data/node_modules/lodash/fp/wrapperLodash.js +5 -0
  2863. data/node_modules/lodash/fp/wrapperReverse.js +5 -0
  2864. data/node_modules/lodash/fp/wrapperValue.js +5 -0
  2865. data/node_modules/lodash/fp/xor.js +5 -0
  2866. data/node_modules/lodash/fp/xorBy.js +5 -0
  2867. data/node_modules/lodash/fp/xorWith.js +5 -0
  2868. data/node_modules/lodash/fp/zip.js +5 -0
  2869. data/node_modules/lodash/fp/zipAll.js +5 -0
  2870. data/node_modules/lodash/fp/zipObj.js +1 -0
  2871. data/node_modules/lodash/fp/zipObject.js +5 -0
  2872. data/node_modules/lodash/fp/zipObjectDeep.js +5 -0
  2873. data/node_modules/lodash/fp/zipWith.js +5 -0
  2874. data/node_modules/lodash/fromPairs.js +28 -0
  2875. data/node_modules/lodash/function.js +25 -0
  2876. data/node_modules/lodash/functions.js +31 -0
  2877. data/node_modules/lodash/functionsIn.js +31 -0
  2878. data/node_modules/lodash/get.js +33 -0
  2879. data/node_modules/lodash/groupBy.js +41 -0
  2880. data/node_modules/lodash/gt.js +29 -0
  2881. data/node_modules/lodash/gte.js +30 -0
  2882. data/node_modules/lodash/has.js +35 -0
  2883. data/node_modules/lodash/hasIn.js +34 -0
  2884. data/node_modules/lodash/head.js +23 -0
  2885. data/node_modules/lodash/identity.js +21 -0
  2886. data/node_modules/lodash/inRange.js +55 -0
  2887. data/node_modules/lodash/includes.js +53 -0
  2888. data/node_modules/lodash/index.js +1 -0
  2889. data/node_modules/lodash/indexOf.js +42 -0
  2890. data/node_modules/lodash/initial.js +22 -0
  2891. data/node_modules/lodash/intersection.js +30 -0
  2892. data/node_modules/lodash/intersectionBy.js +45 -0
  2893. data/node_modules/lodash/intersectionWith.js +41 -0
  2894. data/node_modules/lodash/invert.js +27 -0
  2895. data/node_modules/lodash/invertBy.js +44 -0
  2896. data/node_modules/lodash/invoke.js +24 -0
  2897. data/node_modules/lodash/invokeMap.js +44 -0
  2898. data/node_modules/lodash/isArguments.js +36 -0
  2899. data/node_modules/lodash/isArray.js +26 -0
  2900. data/node_modules/lodash/isArrayBuffer.js +27 -0
  2901. data/node_modules/lodash/isArrayLike.js +33 -0
  2902. data/node_modules/lodash/isArrayLikeObject.js +33 -0
  2903. data/node_modules/lodash/isBoolean.js +29 -0
  2904. data/node_modules/lodash/isBuffer.js +38 -0
  2905. data/node_modules/lodash/isDate.js +27 -0
  2906. data/node_modules/lodash/isElement.js +25 -0
  2907. data/node_modules/lodash/isEmpty.js +77 -0
  2908. data/node_modules/lodash/isEqual.js +35 -0
  2909. data/node_modules/lodash/isEqualWith.js +41 -0
  2910. data/node_modules/lodash/isError.js +36 -0
  2911. data/node_modules/lodash/isFinite.js +36 -0
  2912. data/node_modules/lodash/isFunction.js +37 -0
  2913. data/node_modules/lodash/isInteger.js +33 -0
  2914. data/node_modules/lodash/isLength.js +35 -0
  2915. data/node_modules/lodash/isMap.js +27 -0
  2916. data/node_modules/lodash/isMatch.js +36 -0
  2917. data/node_modules/lodash/isMatchWith.js +41 -0
  2918. data/node_modules/lodash/isNaN.js +38 -0
  2919. data/node_modules/lodash/isNative.js +40 -0
  2920. data/node_modules/lodash/isNil.js +25 -0
  2921. data/node_modules/lodash/isNull.js +22 -0
  2922. data/node_modules/lodash/isNumber.js +38 -0
  2923. data/node_modules/lodash/isObject.js +31 -0
  2924. data/node_modules/lodash/isObjectLike.js +29 -0
  2925. data/node_modules/lodash/isPlainObject.js +62 -0
  2926. data/node_modules/lodash/isRegExp.js +27 -0
  2927. data/node_modules/lodash/isSafeInteger.js +37 -0
  2928. data/node_modules/lodash/isSet.js +27 -0
  2929. data/node_modules/lodash/isString.js +30 -0
  2930. data/node_modules/lodash/isSymbol.js +29 -0
  2931. data/node_modules/lodash/isTypedArray.js +27 -0
  2932. data/node_modules/lodash/isUndefined.js +22 -0
  2933. data/node_modules/lodash/isWeakMap.js +28 -0
  2934. data/node_modules/lodash/isWeakSet.js +28 -0
  2935. data/node_modules/lodash/iteratee.js +50 -0
  2936. data/node_modules/lodash/join.js +26 -0
  2937. data/node_modules/lodash/kebabCase.js +28 -0
  2938. data/node_modules/lodash/keyBy.js +36 -0
  2939. data/node_modules/lodash/keys.js +37 -0
  2940. data/node_modules/lodash/keysIn.js +32 -0
  2941. data/node_modules/lodash/lang.js +58 -0
  2942. data/node_modules/lodash/last.js +20 -0
  2943. data/node_modules/lodash/lastIndexOf.js +46 -0
  2944. data/node_modules/lodash/lodash.js +17018 -0
  2945. data/node_modules/lodash/lodash.min.js +135 -0
  2946. data/node_modules/lodash/lowerCase.js +27 -0
  2947. data/node_modules/lodash/lowerFirst.js +22 -0
  2948. data/node_modules/lodash/lt.js +29 -0
  2949. data/node_modules/lodash/lte.js +30 -0
  2950. data/node_modules/lodash/map.js +53 -0
  2951. data/node_modules/lodash/mapKeys.js +36 -0
  2952. data/node_modules/lodash/mapValues.js +43 -0
  2953. data/node_modules/lodash/matches.js +36 -0
  2954. data/node_modules/lodash/matchesProperty.js +34 -0
  2955. data/node_modules/lodash/math.js +17 -0
  2956. data/node_modules/lodash/max.js +29 -0
  2957. data/node_modules/lodash/maxBy.js +34 -0
  2958. data/node_modules/lodash/mean.js +22 -0
  2959. data/node_modules/lodash/meanBy.js +31 -0
  2960. data/node_modules/lodash/memoize.js +73 -0
  2961. data/node_modules/lodash/merge.js +39 -0
  2962. data/node_modules/lodash/mergeWith.js +39 -0
  2963. data/node_modules/lodash/method.js +34 -0
  2964. data/node_modules/lodash/methodOf.js +33 -0
  2965. data/node_modules/lodash/min.js +29 -0
  2966. data/node_modules/lodash/minBy.js +34 -0
  2967. data/node_modules/lodash/mixin.js +74 -0
  2968. data/node_modules/lodash/multiply.js +22 -0
  2969. data/node_modules/lodash/negate.js +40 -0
  2970. data/node_modules/lodash/next.js +35 -0
  2971. data/node_modules/lodash/noop.js +17 -0
  2972. data/node_modules/lodash/now.js +23 -0
  2973. data/node_modules/lodash/nth.js +29 -0
  2974. data/node_modules/lodash/nthArg.js +32 -0
  2975. data/node_modules/lodash/number.js +5 -0
  2976. data/node_modules/lodash/object.js +49 -0
  2977. data/node_modules/lodash/omit.js +35 -0
  2978. data/node_modules/lodash/omitBy.js +29 -0
  2979. data/node_modules/lodash/once.js +25 -0
  2980. data/node_modules/lodash/orderBy.js +47 -0
  2981. data/node_modules/lodash/over.js +24 -0
  2982. data/node_modules/lodash/overArgs.js +61 -0
  2983. data/node_modules/lodash/overEvery.js +30 -0
  2984. data/node_modules/lodash/overSome.js +30 -0
  2985. data/node_modules/lodash/package.json +18 -0
  2986. data/node_modules/lodash/pad.js +49 -0
  2987. data/node_modules/lodash/padEnd.js +39 -0
  2988. data/node_modules/lodash/padStart.js +39 -0
  2989. data/node_modules/lodash/parseInt.js +43 -0
  2990. data/node_modules/lodash/partial.js +50 -0
  2991. data/node_modules/lodash/partialRight.js +49 -0
  2992. data/node_modules/lodash/partition.js +43 -0
  2993. data/node_modules/lodash/pick.js +27 -0
  2994. data/node_modules/lodash/pickBy.js +27 -0
  2995. data/node_modules/lodash/plant.js +48 -0
  2996. data/node_modules/lodash/property.js +32 -0
  2997. data/node_modules/lodash/propertyOf.js +30 -0
  2998. data/node_modules/lodash/pull.js +29 -0
  2999. data/node_modules/lodash/pullAll.js +29 -0
  3000. data/node_modules/lodash/pullAllBy.js +33 -0
  3001. data/node_modules/lodash/pullAllWith.js +32 -0
  3002. data/node_modules/lodash/pullAt.js +43 -0
  3003. data/node_modules/lodash/random.js +82 -0
  3004. data/node_modules/lodash/range.js +46 -0
  3005. data/node_modules/lodash/rangeRight.js +41 -0
  3006. data/node_modules/lodash/rearg.js +33 -0
  3007. data/node_modules/lodash/reduce.js +51 -0
  3008. data/node_modules/lodash/reduceRight.js +36 -0
  3009. data/node_modules/lodash/reject.js +46 -0
  3010. data/node_modules/lodash/remove.js +53 -0
  3011. data/node_modules/lodash/repeat.js +37 -0
  3012. data/node_modules/lodash/replace.js +29 -0
  3013. data/node_modules/lodash/rest.js +40 -0
  3014. data/node_modules/lodash/result.js +57 -0
  3015. data/node_modules/lodash/reverse.js +34 -0
  3016. data/node_modules/lodash/round.js +26 -0
  3017. data/node_modules/lodash/sample.js +24 -0
  3018. data/node_modules/lodash/sampleSize.js +37 -0
  3019. data/node_modules/lodash/seq.js +16 -0
  3020. data/node_modules/lodash/set.js +35 -0
  3021. data/node_modules/lodash/setWith.js +32 -0
  3022. data/node_modules/lodash/shuffle.js +25 -0
  3023. data/node_modules/lodash/size.js +46 -0
  3024. data/node_modules/lodash/slice.js +37 -0
  3025. data/node_modules/lodash/snakeCase.js +28 -0
  3026. data/node_modules/lodash/some.js +51 -0
  3027. data/node_modules/lodash/sortBy.js +48 -0
  3028. data/node_modules/lodash/sortedIndex.js +24 -0
  3029. data/node_modules/lodash/sortedIndexBy.js +33 -0
  3030. data/node_modules/lodash/sortedIndexOf.js +31 -0
  3031. data/node_modules/lodash/sortedLastIndex.js +25 -0
  3032. data/node_modules/lodash/sortedLastIndexBy.js +33 -0
  3033. data/node_modules/lodash/sortedLastIndexOf.js +31 -0
  3034. data/node_modules/lodash/sortedUniq.js +24 -0
  3035. data/node_modules/lodash/sortedUniqBy.js +26 -0
  3036. data/node_modules/lodash/split.js +52 -0
  3037. data/node_modules/lodash/spread.js +63 -0
  3038. data/node_modules/lodash/startCase.js +29 -0
  3039. data/node_modules/lodash/startsWith.js +36 -0
  3040. data/node_modules/lodash/string.js +33 -0
  3041. data/node_modules/lodash/stubArray.js +23 -0
  3042. data/node_modules/lodash/stubFalse.js +18 -0
  3043. data/node_modules/lodash/stubObject.js +23 -0
  3044. data/node_modules/lodash/stubString.js +18 -0
  3045. data/node_modules/lodash/stubTrue.js +18 -0
  3046. data/node_modules/lodash/subtract.js +22 -0
  3047. data/node_modules/lodash/sum.js +24 -0
  3048. data/node_modules/lodash/sumBy.js +33 -0
  3049. data/node_modules/lodash/tail.js +22 -0
  3050. data/node_modules/lodash/take.js +37 -0
  3051. data/node_modules/lodash/takeRight.js +39 -0
  3052. data/node_modules/lodash/takeRightWhile.js +45 -0
  3053. data/node_modules/lodash/takeWhile.js +45 -0
  3054. data/node_modules/lodash/tap.js +29 -0
  3055. data/node_modules/lodash/template.js +238 -0
  3056. data/node_modules/lodash/templateSettings.js +67 -0
  3057. data/node_modules/lodash/throttle.js +69 -0
  3058. data/node_modules/lodash/thru.js +28 -0
  3059. data/node_modules/lodash/times.js +51 -0
  3060. data/node_modules/lodash/toArray.js +58 -0
  3061. data/node_modules/lodash/toFinite.js +42 -0
  3062. data/node_modules/lodash/toInteger.js +36 -0
  3063. data/node_modules/lodash/toIterator.js +23 -0
  3064. data/node_modules/lodash/toJSON.js +1 -0
  3065. data/node_modules/lodash/toLength.js +38 -0
  3066. data/node_modules/lodash/toLower.js +28 -0
  3067. data/node_modules/lodash/toNumber.js +66 -0
  3068. data/node_modules/lodash/toPairs.js +30 -0
  3069. data/node_modules/lodash/toPairsIn.js +30 -0
  3070. data/node_modules/lodash/toPath.js +32 -0
  3071. data/node_modules/lodash/toPlainObject.js +32 -0
  3072. data/node_modules/lodash/toSafeInteger.js +35 -0
  3073. data/node_modules/lodash/toString.js +28 -0
  3074. data/node_modules/lodash/toUpper.js +28 -0
  3075. data/node_modules/lodash/transform.js +65 -0
  3076. data/node_modules/lodash/trim.js +49 -0
  3077. data/node_modules/lodash/trimEnd.js +43 -0
  3078. data/node_modules/lodash/trimStart.js +43 -0
  3079. data/node_modules/lodash/truncate.js +111 -0
  3080. data/node_modules/lodash/unary.js +22 -0
  3081. data/node_modules/lodash/unescape.js +34 -0
  3082. data/node_modules/lodash/union.js +26 -0
  3083. data/node_modules/lodash/unionBy.js +39 -0
  3084. data/node_modules/lodash/unionWith.js +34 -0
  3085. data/node_modules/lodash/uniq.js +25 -0
  3086. data/node_modules/lodash/uniqBy.js +31 -0
  3087. data/node_modules/lodash/uniqWith.js +28 -0
  3088. data/node_modules/lodash/uniqueId.js +28 -0
  3089. data/node_modules/lodash/unset.js +34 -0
  3090. data/node_modules/lodash/unzip.js +45 -0
  3091. data/node_modules/lodash/unzipWith.js +39 -0
  3092. data/node_modules/lodash/update.js +35 -0
  3093. data/node_modules/lodash/updateWith.js +33 -0
  3094. data/node_modules/lodash/upperCase.js +27 -0
  3095. data/node_modules/lodash/upperFirst.js +22 -0
  3096. data/node_modules/lodash/util.js +34 -0
  3097. data/node_modules/lodash/value.js +1 -0
  3098. data/node_modules/lodash/valueOf.js +1 -0
  3099. data/node_modules/lodash/values.js +34 -0
  3100. data/node_modules/lodash/valuesIn.js +32 -0
  3101. data/node_modules/lodash/without.js +31 -0
  3102. data/node_modules/lodash/words.js +35 -0
  3103. data/node_modules/lodash/wrap.js +30 -0
  3104. data/node_modules/lodash/wrapperAt.js +48 -0
  3105. data/node_modules/lodash/wrapperChain.js +34 -0
  3106. data/node_modules/lodash/wrapperLodash.js +147 -0
  3107. data/node_modules/lodash/wrapperReverse.js +44 -0
  3108. data/node_modules/lodash/wrapperValue.js +21 -0
  3109. data/node_modules/lodash/xor.js +28 -0
  3110. data/node_modules/lodash/xorBy.js +39 -0
  3111. data/node_modules/lodash/xorWith.js +34 -0
  3112. data/node_modules/lodash/zip.js +22 -0
  3113. data/node_modules/lodash/zipObject.js +24 -0
  3114. data/node_modules/lodash/zipObjectDeep.js +23 -0
  3115. data/node_modules/lodash/zipWith.js +32 -0
  3116. data/node_modules/merge/.npmignore +1 -0
  3117. data/node_modules/merge/LICENSE +21 -0
  3118. data/node_modules/merge/README.md +58 -0
  3119. data/node_modules/merge/bower.json +22 -0
  3120. data/node_modules/merge/merge.js +175 -0
  3121. data/node_modules/merge/merge.min.js +3 -0
  3122. data/node_modules/merge/package.json +24 -0
  3123. data/node_modules/minimatch/LICENSE +15 -0
  3124. data/node_modules/minimatch/README.md +209 -0
  3125. data/node_modules/minimatch/minimatch.js +923 -0
  3126. data/node_modules/minimatch/package.json +29 -0
  3127. data/node_modules/minimist/.travis.yml +8 -0
  3128. data/node_modules/minimist/LICENSE +18 -0
  3129. data/node_modules/minimist/example/parse.js +2 -0
  3130. data/node_modules/minimist/index.js +230 -0
  3131. data/node_modules/minimist/package.json +45 -0
  3132. data/node_modules/minimist/readme.markdown +91 -0
  3133. data/node_modules/minimist/test/all_bool.js +32 -0
  3134. data/node_modules/minimist/test/bool.js +166 -0
  3135. data/node_modules/minimist/test/dash.js +31 -0
  3136. data/node_modules/minimist/test/default_bool.js +35 -0
  3137. data/node_modules/minimist/test/dotted.js +22 -0
  3138. data/node_modules/minimist/test/long.js +31 -0
  3139. data/node_modules/minimist/test/num.js +36 -0
  3140. data/node_modules/minimist/test/parse.js +197 -0
  3141. data/node_modules/minimist/test/parse_modified.js +9 -0
  3142. data/node_modules/minimist/test/short.js +67 -0
  3143. data/node_modules/minimist/test/stop_early.js +15 -0
  3144. data/node_modules/minimist/test/unknown.js +102 -0
  3145. data/node_modules/minimist/test/whitespace.js +8 -0
  3146. data/node_modules/mkdirp/.travis.yml +8 -0
  3147. data/node_modules/mkdirp/LICENSE +21 -0
  3148. data/node_modules/mkdirp/bin/cmd.js +33 -0
  3149. data/node_modules/mkdirp/bin/usage.txt +12 -0
  3150. data/node_modules/mkdirp/examples/pow.js +6 -0
  3151. data/node_modules/mkdirp/index.js +98 -0
  3152. data/node_modules/mkdirp/node_modules/minimist/.travis.yml +4 -0
  3153. data/node_modules/mkdirp/node_modules/minimist/LICENSE +18 -0
  3154. data/node_modules/mkdirp/node_modules/minimist/example/parse.js +2 -0
  3155. data/node_modules/mkdirp/node_modules/minimist/index.js +187 -0
  3156. data/node_modules/mkdirp/node_modules/minimist/package.json +40 -0
  3157. data/node_modules/mkdirp/node_modules/minimist/readme.markdown +73 -0
  3158. data/node_modules/mkdirp/node_modules/minimist/test/dash.js +24 -0
  3159. data/node_modules/mkdirp/node_modules/minimist/test/default_bool.js +20 -0
  3160. data/node_modules/mkdirp/node_modules/minimist/test/dotted.js +16 -0
  3161. data/node_modules/mkdirp/node_modules/minimist/test/long.js +31 -0
  3162. data/node_modules/mkdirp/node_modules/minimist/test/parse.js +318 -0
  3163. data/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js +9 -0
  3164. data/node_modules/mkdirp/node_modules/minimist/test/short.js +67 -0
  3165. data/node_modules/mkdirp/node_modules/minimist/test/whitespace.js +8 -0
  3166. data/node_modules/mkdirp/package.json +27 -0
  3167. data/node_modules/mkdirp/readme.markdown +100 -0
  3168. data/node_modules/mkdirp/test/chmod.js +41 -0
  3169. data/node_modules/mkdirp/test/clobber.js +38 -0
  3170. data/node_modules/mkdirp/test/mkdirp.js +28 -0
  3171. data/node_modules/mkdirp/test/opts_fs.js +29 -0
  3172. data/node_modules/mkdirp/test/opts_fs_sync.js +27 -0
  3173. data/node_modules/mkdirp/test/perm.js +32 -0
  3174. data/node_modules/mkdirp/test/perm_sync.js +36 -0
  3175. data/node_modules/mkdirp/test/race.js +37 -0
  3176. data/node_modules/mkdirp/test/rel.js +32 -0
  3177. data/node_modules/mkdirp/test/return.js +25 -0
  3178. data/node_modules/mkdirp/test/return_sync.js +24 -0
  3179. data/node_modules/mkdirp/test/root.js +19 -0
  3180. data/node_modules/mkdirp/test/sync.js +32 -0
  3181. data/node_modules/mkdirp/test/umask.js +28 -0
  3182. data/node_modules/mkdirp/test/umask_sync.js +32 -0
  3183. data/node_modules/ms/LICENSE.md +21 -0
  3184. data/node_modules/ms/README.md +52 -0
  3185. data/node_modules/ms/index.js +149 -0
  3186. data/node_modules/ms/package.json +36 -0
  3187. data/node_modules/mute-stream/LICENSE +15 -0
  3188. data/node_modules/mute-stream/README.md +68 -0
  3189. data/node_modules/mute-stream/mute.js +140 -0
  3190. data/node_modules/mute-stream/package.json +26 -0
  3191. data/node_modules/mute-stream/test/basic.js +207 -0
  3192. data/node_modules/number-is-nan/index.js +4 -0
  3193. data/node_modules/number-is-nan/license +21 -0
  3194. data/node_modules/number-is-nan/package.json +35 -0
  3195. data/node_modules/number-is-nan/readme.md +28 -0
  3196. data/node_modules/object-assign/index.js +90 -0
  3197. data/node_modules/object-assign/license +21 -0
  3198. data/node_modules/object-assign/package.json +42 -0
  3199. data/node_modules/object-assign/readme.md +61 -0
  3200. data/node_modules/once/LICENSE +15 -0
  3201. data/node_modules/once/README.md +79 -0
  3202. data/node_modules/once/once.js +42 -0
  3203. data/node_modules/once/package.json +33 -0
  3204. data/node_modules/onetime/index.js +31 -0
  3205. data/node_modules/onetime/license +21 -0
  3206. data/node_modules/onetime/package.json +33 -0
  3207. data/node_modules/onetime/readme.md +52 -0
  3208. data/node_modules/optionator/CHANGELOG.md +52 -0
  3209. data/node_modules/optionator/LICENSE +22 -0
  3210. data/node_modules/optionator/README.md +236 -0
  3211. data/node_modules/optionator/lib/help.js +247 -0
  3212. data/node_modules/optionator/lib/index.js +465 -0
  3213. data/node_modules/optionator/lib/util.js +54 -0
  3214. data/node_modules/optionator/package.json +44 -0
  3215. data/node_modules/os-homedir/index.js +24 -0
  3216. data/node_modules/os-homedir/license +21 -0
  3217. data/node_modules/os-homedir/package.json +41 -0
  3218. data/node_modules/os-homedir/readme.md +31 -0
  3219. data/node_modules/path-is-absolute/index.js +20 -0
  3220. data/node_modules/path-is-absolute/license +21 -0
  3221. data/node_modules/path-is-absolute/package.json +43 -0
  3222. data/node_modules/path-is-absolute/readme.md +59 -0
  3223. data/node_modules/path-is-inside/LICENSE.txt +47 -0
  3224. data/node_modules/path-is-inside/lib/path-is-inside.js +28 -0
  3225. data/node_modules/path-is-inside/package.json +21 -0
  3226. data/node_modules/pify/index.js +68 -0
  3227. data/node_modules/pify/license +21 -0
  3228. data/node_modules/pify/package.json +48 -0
  3229. data/node_modules/pify/readme.md +119 -0
  3230. data/node_modules/pinkie-promise/index.js +3 -0
  3231. data/node_modules/pinkie-promise/license +21 -0
  3232. data/node_modules/pinkie-promise/package.json +35 -0
  3233. data/node_modules/pinkie-promise/readme.md +28 -0
  3234. data/node_modules/pinkie/index.js +292 -0
  3235. data/node_modules/pinkie/license +21 -0
  3236. data/node_modules/pinkie/package.json +36 -0
  3237. data/node_modules/pinkie/readme.md +83 -0
  3238. data/node_modules/pluralize/LICENSE +21 -0
  3239. data/node_modules/pluralize/Readme.md +78 -0
  3240. data/node_modules/pluralize/package.json +38 -0
  3241. data/node_modules/pluralize/pluralize.js +433 -0
  3242. data/node_modules/prelude-ls/CHANGELOG.md +99 -0
  3243. data/node_modules/prelude-ls/LICENSE +22 -0
  3244. data/node_modules/prelude-ls/README.md +15 -0
  3245. data/node_modules/prelude-ls/lib/Func.js +65 -0
  3246. data/node_modules/prelude-ls/lib/List.js +686 -0
  3247. data/node_modules/prelude-ls/lib/Num.js +130 -0
  3248. data/node_modules/prelude-ls/lib/Obj.js +154 -0
  3249. data/node_modules/prelude-ls/lib/Str.js +92 -0
  3250. data/node_modules/prelude-ls/lib/index.js +178 -0
  3251. data/node_modules/prelude-ls/package.json +52 -0
  3252. data/node_modules/process-nextick-args/.travis.yml +12 -0
  3253. data/node_modules/process-nextick-args/index.js +43 -0
  3254. data/node_modules/process-nextick-args/license.md +19 -0
  3255. data/node_modules/process-nextick-args/package.json +22 -0
  3256. data/node_modules/process-nextick-args/readme.md +18 -0
  3257. data/node_modules/process-nextick-args/test.js +24 -0
  3258. data/node_modules/progress/.npmignore +4 -0
  3259. data/node_modules/progress/History.md +77 -0
  3260. data/node_modules/progress/LICENSE +22 -0
  3261. data/node_modules/progress/Makefile +8 -0
  3262. data/node_modules/progress/Readme.md +103 -0
  3263. data/node_modules/progress/index.js +1 -0
  3264. data/node_modules/progress/lib/node-progress.js +180 -0
  3265. data/node_modules/progress/package.json +21 -0
  3266. data/node_modules/readable-stream/.npmignore +9 -0
  3267. data/node_modules/readable-stream/.travis.yml +49 -0
  3268. data/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  3269. data/node_modules/readable-stream/GOVERNANCE.md +136 -0
  3270. data/node_modules/readable-stream/LICENSE +47 -0
  3271. data/node_modules/readable-stream/README.md +57 -0
  3272. data/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  3273. data/node_modules/readable-stream/duplex.js +1 -0
  3274. data/node_modules/readable-stream/lib/_stream_duplex.js +75 -0
  3275. data/node_modules/readable-stream/lib/_stream_passthrough.js +26 -0
  3276. data/node_modules/readable-stream/lib/_stream_readable.js +941 -0
  3277. data/node_modules/readable-stream/lib/_stream_transform.js +182 -0
  3278. data/node_modules/readable-stream/lib/_stream_writable.js +551 -0
  3279. data/node_modules/readable-stream/lib/internal/streams/BufferList.js +64 -0
  3280. data/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  3281. data/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  3282. data/node_modules/readable-stream/node_modules/inherits/inherits.js +7 -0
  3283. data/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  3284. data/node_modules/readable-stream/node_modules/inherits/package.json +29 -0
  3285. data/node_modules/readable-stream/package.json +53 -0
  3286. data/node_modules/readable-stream/passthrough.js +1 -0
  3287. data/node_modules/readable-stream/readable.js +16 -0
  3288. data/node_modules/readable-stream/transform.js +1 -0
  3289. data/node_modules/readable-stream/writable.js +1 -0
  3290. data/node_modules/readline2/README.md +33 -0
  3291. data/node_modules/readline2/index.js +126 -0
  3292. data/node_modules/readline2/package.json +31 -0
  3293. data/node_modules/require-uncached/index.js +29 -0
  3294. data/node_modules/require-uncached/license +21 -0
  3295. data/node_modules/require-uncached/package.json +45 -0
  3296. data/node_modules/require-uncached/readme.md +47 -0
  3297. data/node_modules/resolve-from/index.js +19 -0
  3298. data/node_modules/resolve-from/license +21 -0
  3299. data/node_modules/resolve-from/package.json +34 -0
  3300. data/node_modules/resolve-from/readme.md +56 -0
  3301. data/node_modules/restore-cursor/index.js +9 -0
  3302. data/node_modules/restore-cursor/license +21 -0
  3303. data/node_modules/restore-cursor/package.json +44 -0
  3304. data/node_modules/restore-cursor/readme.md +25 -0
  3305. data/node_modules/rimraf/LICENSE +15 -0
  3306. data/node_modules/rimraf/README.md +101 -0
  3307. data/node_modules/rimraf/bin.js +50 -0
  3308. data/node_modules/rimraf/package.json +26 -0
  3309. data/node_modules/rimraf/rimraf.js +363 -0
  3310. data/node_modules/run-async/.editorconfig +12 -0
  3311. data/node_modules/run-async/.gitattributes +1 -0
  3312. data/node_modules/run-async/.jshintrc +20 -0
  3313. data/node_modules/run-async/.npmignore +1 -0
  3314. data/node_modules/run-async/.travis.yml +3 -0
  3315. data/node_modules/run-async/LICENSE +21 -0
  3316. data/node_modules/run-async/README.md +50 -0
  3317. data/node_modules/run-async/index.js +25 -0
  3318. data/node_modules/run-async/package.json +30 -0
  3319. data/node_modules/run-async/test.js +51 -0
  3320. data/node_modules/rx-lite/package.json +38 -0
  3321. data/node_modules/rx-lite/readme.md +174 -0
  3322. data/node_modules/rx-lite/rx.lite.js +6366 -0
  3323. data/node_modules/rx-lite/rx.lite.map +1 -0
  3324. data/node_modules/rx-lite/rx.lite.min.js +5 -0
  3325. data/node_modules/sass-lint/.editorconfig +21 -0
  3326. data/node_modules/sass-lint/.eslintrc +156 -0
  3327. data/node_modules/sass-lint/.github/ISSUE_TEMPLATE.md +21 -0
  3328. data/node_modules/sass-lint/.github/PULL_REQUEST_TEMPLATE.md +24 -0
  3329. data/node_modules/sass-lint/.npmignore +32 -0
  3330. data/node_modules/sass-lint/.nvmrc +1 -0
  3331. data/node_modules/sass-lint/.travis.yml +9 -0
  3332. data/node_modules/sass-lint/CHANGELOG.md +586 -0
  3333. data/node_modules/sass-lint/CODE_OF_CONDUCT.md +10 -0
  3334. data/node_modules/sass-lint/CONTRIBUTING.md +91 -0
  3335. data/node_modules/sass-lint/LICENSE +22 -0
  3336. data/node_modules/sass-lint/README.md +294 -0
  3337. data/node_modules/sass-lint/appveyor.yml +29 -0
  3338. data/node_modules/sass-lint/bin/sass-lint.js +89 -0
  3339. data/node_modules/sass-lint/data/functions.yml +129 -0
  3340. data/node_modules/sass-lint/data/literals.yml +296 -0
  3341. data/node_modules/sass-lint/data/properties.yml +596 -0
  3342. data/node_modules/sass-lint/data/pseudoClasses.yml +36 -0
  3343. data/node_modules/sass-lint/data/pseudoElements.yml +6 -0
  3344. data/node_modules/sass-lint/docs/cli/readme.md +26 -0
  3345. data/node_modules/sass-lint/docs/options/cache-config.md +7 -0
  3346. data/node_modules/sass-lint/docs/options/config-file.md +71 -0
  3347. data/node_modules/sass-lint/docs/options/formatter.md +7 -0
  3348. data/node_modules/sass-lint/docs/options/max-warnings.md +30 -0
  3349. data/node_modules/sass-lint/docs/options/merge-default-rules.md +89 -0
  3350. data/node_modules/sass-lint/docs/options/output-file.md +3 -0
  3351. data/node_modules/sass-lint/docs/rules/attribute-quotes.md +61 -0
  3352. data/node_modules/sass-lint/docs/rules/bem-depth.md +26 -0
  3353. data/node_modules/sass-lint/docs/rules/border-zero.md +49 -0
  3354. data/node_modules/sass-lint/docs/rules/brace-style.md +104 -0
  3355. data/node_modules/sass-lint/docs/rules/class-name-format.md +281 -0
  3356. data/node_modules/sass-lint/docs/rules/clean-import-paths.md +44 -0
  3357. data/node_modules/sass-lint/docs/rules/declarations-before-nesting.md +29 -0
  3358. data/node_modules/sass-lint/docs/rules/empty-args.md +33 -0
  3359. data/node_modules/sass-lint/docs/rules/empty-line-between-blocks.md +54 -0
  3360. data/node_modules/sass-lint/docs/rules/extends-before-declarations.md +23 -0
  3361. data/node_modules/sass-lint/docs/rules/extends-before-mixins.md +23 -0
  3362. data/node_modules/sass-lint/docs/rules/final-newline.md +28 -0
  3363. data/node_modules/sass-lint/docs/rules/force-attribute-nesting.md +47 -0
  3364. data/node_modules/sass-lint/docs/rules/force-element-nesting.md +47 -0
  3365. data/node_modules/sass-lint/docs/rules/force-pseudo-nesting.md +59 -0
  3366. data/node_modules/sass-lint/docs/rules/function-name-format.md +253 -0
  3367. data/node_modules/sass-lint/docs/rules/hex-length.md +47 -0
  3368. data/node_modules/sass-lint/docs/rules/hex-notation.md +45 -0
  3369. data/node_modules/sass-lint/docs/rules/id-name-format.md +205 -0
  3370. data/node_modules/sass-lint/docs/rules/indentation.md +43 -0
  3371. data/node_modules/sass-lint/docs/rules/leading-zero.md +25 -0
  3372. data/node_modules/sass-lint/docs/rules/max-file-line-count.md +27 -0
  3373. data/node_modules/sass-lint/docs/rules/max-line-length.md +24 -0
  3374. data/node_modules/sass-lint/docs/rules/mixin-name-format.md +255 -0
  3375. data/node_modules/sass-lint/docs/rules/mixins-before-declarations.md +35 -0
  3376. data/node_modules/sass-lint/docs/rules/nesting-depth.md +29 -0
  3377. data/node_modules/sass-lint/docs/rules/no-attribute-selectors.md +37 -0
  3378. data/node_modules/sass-lint/docs/rules/no-color-hex.md +33 -0
  3379. data/node_modules/sass-lint/docs/rules/no-color-keywords.md +26 -0
  3380. data/node_modules/sass-lint/docs/rules/no-color-literals.md +237 -0
  3381. data/node_modules/sass-lint/docs/rules/no-combinators.md +25 -0
  3382. data/node_modules/sass-lint/docs/rules/no-css-comments.md +37 -0
  3383. data/node_modules/sass-lint/docs/rules/no-debug.md +11 -0
  3384. data/node_modules/sass-lint/docs/rules/no-disallowed-properties.md +30 -0
  3385. data/node_modules/sass-lint/docs/rules/no-duplicate-properties.md +51 -0
  3386. data/node_modules/sass-lint/docs/rules/no-empty-rulesets.md +21 -0
  3387. data/node_modules/sass-lint/docs/rules/no-extends.md +15 -0
  3388. data/node_modules/sass-lint/docs/rules/no-ids.md +13 -0
  3389. data/node_modules/sass-lint/docs/rules/no-important.md +13 -0
  3390. data/node_modules/sass-lint/docs/rules/no-invalid-hex.md +34 -0
  3391. data/node_modules/sass-lint/docs/rules/no-mergeable-selectors.md +72 -0
  3392. data/node_modules/sass-lint/docs/rules/no-misspelled-properties.md +71 -0
  3393. data/node_modules/sass-lint/docs/rules/no-qualifying-elements.md +69 -0
  3394. data/node_modules/sass-lint/docs/rules/no-trailing-whitespace.md +21 -0
  3395. data/node_modules/sass-lint/docs/rules/no-trailing-zero.md +25 -0
  3396. data/node_modules/sass-lint/docs/rules/no-transition-all.md +21 -0
  3397. data/node_modules/sass-lint/docs/rules/no-universal-selectors.md +30 -0
  3398. data/node_modules/sass-lint/docs/rules/no-url-domains.md +37 -0
  3399. data/node_modules/sass-lint/docs/rules/no-url-protocols.md +77 -0
  3400. data/node_modules/sass-lint/docs/rules/no-vendor-prefixes.md +126 -0
  3401. data/node_modules/sass-lint/docs/rules/no-warn.md +11 -0
  3402. data/node_modules/sass-lint/docs/rules/one-declaration-per-line.md +24 -0
  3403. data/node_modules/sass-lint/docs/rules/placeholder-in-extend.md +23 -0
  3404. data/node_modules/sass-lint/docs/rules/placeholder-name-format.md +254 -0
  3405. data/node_modules/sass-lint/docs/rules/property-sort-order.md +101 -0
  3406. data/node_modules/sass-lint/docs/rules/property-units.md +49 -0
  3407. data/node_modules/sass-lint/docs/rules/pseudo-element.md +32 -0
  3408. data/node_modules/sass-lint/docs/rules/quotes.md +25 -0
  3409. data/node_modules/sass-lint/docs/rules/shorthand-values.md +91 -0
  3410. data/node_modules/sass-lint/docs/rules/single-line-per-selector.md +22 -0
  3411. data/node_modules/sass-lint/docs/rules/space-after-bang.md +25 -0
  3412. data/node_modules/sass-lint/docs/rules/space-after-colon.md +25 -0
  3413. data/node_modules/sass-lint/docs/rules/space-after-comma.md +29 -0
  3414. data/node_modules/sass-lint/docs/rules/space-around-operator.md +72 -0
  3415. data/node_modules/sass-lint/docs/rules/space-before-bang.md +25 -0
  3416. data/node_modules/sass-lint/docs/rules/space-before-brace.md +41 -0
  3417. data/node_modules/sass-lint/docs/rules/space-before-colon.md +25 -0
  3418. data/node_modules/sass-lint/docs/rules/space-between-parens.md +45 -0
  3419. data/node_modules/sass-lint/docs/rules/trailing-semicolon.md +35 -0
  3420. data/node_modules/sass-lint/docs/rules/url-quotes.md +31 -0
  3421. data/node_modules/sass-lint/docs/rules/variable-for-property.md +84 -0
  3422. data/node_modules/sass-lint/docs/rules/variable-name-format.md +204 -0
  3423. data/node_modules/sass-lint/docs/rules/zero-unit.md +33 -0
  3424. data/node_modules/sass-lint/docs/sass-lint.yml +55 -0
  3425. data/node_modules/sass-lint/docs/toggle-rules-in-src.md +71 -0
  3426. data/node_modules/sass-lint/index.js +325 -0
  3427. data/node_modules/sass-lint/lib/config-helpers.js +107 -0
  3428. data/node_modules/sass-lint/lib/config.js +109 -0
  3429. data/node_modules/sass-lint/lib/config/property-sort-orders/concentric.yml +156 -0
  3430. data/node_modules/sass-lint/lib/config/property-sort-orders/recess.yml +164 -0
  3431. data/node_modules/sass-lint/lib/config/property-sort-orders/smacss.yml +164 -0
  3432. data/node_modules/sass-lint/lib/config/sass-lint.yml +95 -0
  3433. data/node_modules/sass-lint/lib/exceptions.js +19 -0
  3434. data/node_modules/sass-lint/lib/groot.js +44 -0
  3435. data/node_modules/sass-lint/lib/helpers.js +417 -0
  3436. data/node_modules/sass-lint/lib/ruleToggler.js +249 -0
  3437. data/node_modules/sass-lint/lib/rules.js +67 -0
  3438. data/node_modules/sass-lint/lib/rules/attribute-quotes.js +36 -0
  3439. data/node_modules/sass-lint/lib/rules/bem-depth.js +74 -0
  3440. data/node_modules/sass-lint/lib/rules/border-zero.js +66 -0
  3441. data/node_modules/sass-lint/lib/rules/brace-style.js +338 -0
  3442. data/node_modules/sass-lint/lib/rules/class-name-format.js +90 -0
  3443. data/node_modules/sass-lint/lib/rules/clean-import-paths.js +129 -0
  3444. data/node_modules/sass-lint/lib/rules/declarations-before-nesting.js +55 -0
  3445. data/node_modules/sass-lint/lib/rules/empty-args.js +46 -0
  3446. data/node_modules/sass-lint/lib/rules/empty-line-between-blocks.js +200 -0
  3447. data/node_modules/sass-lint/lib/rules/extends-before-declarations.js +48 -0
  3448. data/node_modules/sass-lint/lib/rules/extends-before-mixins.js +47 -0
  3449. data/node_modules/sass-lint/lib/rules/final-newline.js +65 -0
  3450. data/node_modules/sass-lint/lib/rules/force-attribute-nesting.js +52 -0
  3451. data/node_modules/sass-lint/lib/rules/force-element-nesting.js +54 -0
  3452. data/node_modules/sass-lint/lib/rules/force-pseudo-nesting.js +59 -0
  3453. data/node_modules/sass-lint/lib/rules/function-name-format.js +92 -0
  3454. data/node_modules/sass-lint/lib/rules/hex-length.js +48 -0
  3455. data/node_modules/sass-lint/lib/rules/hex-notation.js +42 -0
  3456. data/node_modules/sass-lint/lib/rules/id-name-format.js +80 -0
  3457. data/node_modules/sass-lint/lib/rules/indentation.js +211 -0
  3458. data/node_modules/sass-lint/lib/rules/leading-zero.js +45 -0
  3459. data/node_modules/sass-lint/lib/rules/max-file-line-count.js +25 -0
  3460. data/node_modules/sass-lint/lib/rules/max-line-length.js +32 -0
  3461. data/node_modules/sass-lint/lib/rules/mixin-name-format.js +104 -0
  3462. data/node_modules/sass-lint/lib/rules/mixins-before-declarations.js +53 -0
  3463. data/node_modules/sass-lint/lib/rules/nesting-depth.js +68 -0
  3464. data/node_modules/sass-lint/lib/rules/no-attribute-selectors.js +23 -0
  3465. data/node_modules/sass-lint/lib/rules/no-color-hex.js +22 -0
  3466. data/node_modules/sass-lint/lib/rules/no-color-keywords.js +51 -0
  3467. data/node_modules/sass-lint/lib/rules/no-color-literals.js +212 -0
  3468. data/node_modules/sass-lint/lib/rules/no-combinators.js +57 -0
  3469. data/node_modules/sass-lint/lib/rules/no-css-comments.js +24 -0
  3470. data/node_modules/sass-lint/lib/rules/no-debug.js +27 -0
  3471. data/node_modules/sass-lint/lib/rules/no-disallowed-properties.js +28 -0
  3472. data/node_modules/sass-lint/lib/rules/no-duplicate-properties.js +68 -0
  3473. data/node_modules/sass-lint/lib/rules/no-empty-rulesets.js +45 -0
  3474. data/node_modules/sass-lint/lib/rules/no-extends.js +27 -0
  3475. data/node_modules/sass-lint/lib/rules/no-ids.js +23 -0
  3476. data/node_modules/sass-lint/lib/rules/no-important.js +23 -0
  3477. data/node_modules/sass-lint/lib/rules/no-invalid-hex.js +24 -0
  3478. data/node_modules/sass-lint/lib/rules/no-mergeable-selectors.js +190 -0
  3479. data/node_modules/sass-lint/lib/rules/no-misspelled-properties.js +58 -0
  3480. data/node_modules/sass-lint/lib/rules/no-qualifying-elements.js +53 -0
  3481. data/node_modules/sass-lint/lib/rules/no-trailing-whitespace.js +38 -0
  3482. data/node_modules/sass-lint/lib/rules/no-trailing-zero.js +30 -0
  3483. data/node_modules/sass-lint/lib/rules/no-transition-all.js +41 -0
  3484. data/node_modules/sass-lint/lib/rules/no-universal-selectors.js +27 -0
  3485. data/node_modules/sass-lint/lib/rules/no-url-domains.js +33 -0
  3486. data/node_modules/sass-lint/lib/rules/no-url-protocols.js +41 -0
  3487. data/node_modules/sass-lint/lib/rules/no-vendor-prefixes.js +117 -0
  3488. data/node_modules/sass-lint/lib/rules/no-warn.js +27 -0
  3489. data/node_modules/sass-lint/lib/rules/one-declaration-per-line.js +32 -0
  3490. data/node_modules/sass-lint/lib/rules/placeholder-in-extend.js +40 -0
  3491. data/node_modules/sass-lint/lib/rules/placeholder-name-format.js +82 -0
  3492. data/node_modules/sass-lint/lib/rules/property-sort-order.js +147 -0
  3493. data/node_modules/sass-lint/lib/rules/property-units.js +56 -0
  3494. data/node_modules/sass-lint/lib/rules/pseudo-element.js +77 -0
  3495. data/node_modules/sass-lint/lib/rules/quotes.js +49 -0
  3496. data/node_modules/sass-lint/lib/rules/shorthand-values.js +210 -0
  3497. data/node_modules/sass-lint/lib/rules/single-line-per-selector.js +54 -0
  3498. data/node_modules/sass-lint/lib/rules/space-after-bang.js +39 -0
  3499. data/node_modules/sass-lint/lib/rules/space-after-colon.js +44 -0
  3500. data/node_modules/sass-lint/lib/rules/space-after-comma.js +58 -0
  3501. data/node_modules/sass-lint/lib/rules/space-around-operator.js +326 -0
  3502. data/node_modules/sass-lint/lib/rules/space-before-bang.js +42 -0
  3503. data/node_modules/sass-lint/lib/rules/space-before-brace.js +78 -0
  3504. data/node_modules/sass-lint/lib/rules/space-before-colon.js +44 -0
  3505. data/node_modules/sass-lint/lib/rules/space-between-parens.js +74 -0
  3506. data/node_modules/sass-lint/lib/rules/trailing-semicolon.js +66 -0
  3507. data/node_modules/sass-lint/lib/rules/url-quotes.js +31 -0
  3508. data/node_modules/sass-lint/lib/rules/variable-for-property.js +73 -0
  3509. data/node_modules/sass-lint/lib/rules/variable-name-format.js +83 -0
  3510. data/node_modules/sass-lint/lib/rules/zero-unit.js +66 -0
  3511. data/node_modules/sass-lint/lib/selector-helpers.js +142 -0
  3512. data/node_modules/sass-lint/node_modules/.bin/eslint +1 -0
  3513. data/node_modules/sass-lint/node_modules/.bin/gonzales +1 -0
  3514. data/node_modules/sass-lint/node_modules/.bin/js-yaml +1 -0
  3515. data/node_modules/sass-lint/package.json +52 -0
  3516. data/node_modules/sass-lint/tests/bom-utf8/starts-with-mixin-utf8-bom.scss +5 -0
  3517. data/node_modules/sass-lint/tests/bom-utf8/var-utf8-bom.scss +5 -0
  3518. data/node_modules/sass-lint/tests/cli.js +514 -0
  3519. data/node_modules/sass-lint/tests/cli/cli-clean.scss +5 -0
  3520. data/node_modules/sass-lint/tests/cli/cli-error.sass +2 -0
  3521. data/node_modules/sass-lint/tests/cli/cli-error.scss +3 -0
  3522. data/node_modules/sass-lint/tests/cli/cli.scss +3 -0
  3523. data/node_modules/sass-lint/tests/cli/cli.txt +3 -0
  3524. data/node_modules/sass-lint/tests/config-helpers.js +121 -0
  3525. data/node_modules/sass-lint/tests/config.js +196 -0
  3526. data/node_modules/sass-lint/tests/dir-test/dir.scss/test.scss +3 -0
  3527. data/node_modules/sass-lint/tests/failures.js +90 -0
  3528. data/node_modules/sass-lint/tests/helpers/addUnique.js +75 -0
  3529. data/node_modules/sass-lint/tests/helpers/attemptTraversal.js +78 -0
  3530. data/node_modules/sass-lint/tests/helpers/collectSuffixExtensions.js +123 -0
  3531. data/node_modules/sass-lint/tests/helpers/hasEOL.js +27 -0
  3532. data/node_modules/sass-lint/tests/helpers/helpers.js +18 -0
  3533. data/node_modules/sass-lint/tests/helpers/isCamelCase.js +51 -0
  3534. data/node_modules/sass-lint/tests/helpers/isEmptyLine.js +43 -0
  3535. data/node_modules/sass-lint/tests/helpers/isEqual.js +113 -0
  3536. data/node_modules/sass-lint/tests/helpers/isHyphenatedBEM.js +91 -0
  3537. data/node_modules/sass-lint/tests/helpers/isHyphenatedLowerCase.js +75 -0
  3538. data/node_modules/sass-lint/tests/helpers/isLowerCase.js +43 -0
  3539. data/node_modules/sass-lint/tests/helpers/isNestable.js +35 -0
  3540. data/node_modules/sass-lint/tests/helpers/isNewLine.js +119 -0
  3541. data/node_modules/sass-lint/tests/helpers/isNumber.js +44 -0
  3542. data/node_modules/sass-lint/tests/helpers/isPartialStringMatch.js +59 -0
  3543. data/node_modules/sass-lint/tests/helpers/isPascalCase.js +51 -0
  3544. data/node_modules/sass-lint/tests/helpers/isSnakeCase.js +59 -0
  3545. data/node_modules/sass-lint/tests/helpers/isSpace.js +87 -0
  3546. data/node_modules/sass-lint/tests/helpers/isStrictBEM.js +115 -0
  3547. data/node_modules/sass-lint/tests/helpers/isUnique.js +74 -0
  3548. data/node_modules/sass-lint/tests/helpers/isUpperCase.js +44 -0
  3549. data/node_modules/sass-lint/tests/helpers/isValidHex.js +115 -0
  3550. data/node_modules/sass-lint/tests/helpers/loadConfigFile.js +20 -0
  3551. data/node_modules/sass-lint/tests/helpers/propertySearch.js +51 -0
  3552. data/node_modules/sass-lint/tests/helpers/sortDetects.js +66 -0
  3553. data/node_modules/sass-lint/tests/helpers/stripBom.js +28 -0
  3554. data/node_modules/sass-lint/tests/helpers/stripLastSpace.js +43 -0
  3555. data/node_modules/sass-lint/tests/helpers/stripPrefix.js +51 -0
  3556. data/node_modules/sass-lint/tests/helpers/stripQuotes.js +27 -0
  3557. data/node_modules/sass-lint/tests/main.js +343 -0
  3558. data/node_modules/sass-lint/tests/output.js +78 -0
  3559. data/node_modules/sass-lint/tests/ruleToggler.js +326 -0
  3560. data/node_modules/sass-lint/tests/rules/_lint.js +37 -0
  3561. data/node_modules/sass-lint/tests/rules/attribute-quotes.js +63 -0
  3562. data/node_modules/sass-lint/tests/rules/bem-depth.js +91 -0
  3563. data/node_modules/sass-lint/tests/rules/border-zero.js +121 -0
  3564. data/node_modules/sass-lint/tests/rules/brace-style.js +94 -0
  3565. data/node_modules/sass-lint/tests/rules/class-name-format.js +265 -0
  3566. data/node_modules/sass-lint/tests/rules/clean-import-paths.js +121 -0
  3567. data/node_modules/sass-lint/tests/rules/declarations-before-nesting.js +35 -0
  3568. data/node_modules/sass-lint/tests/rules/empty-args.js +63 -0
  3569. data/node_modules/sass-lint/tests/rules/empty-line-between-blocks.js +266 -0
  3570. data/node_modules/sass-lint/tests/rules/extends-before-declarations.js +35 -0
  3571. data/node_modules/sass-lint/tests/rules/extends-before-mixins.js +35 -0
  3572. data/node_modules/sass-lint/tests/rules/final-newline.js +287 -0
  3573. data/node_modules/sass-lint/tests/rules/force-attribute-nesting.js +35 -0
  3574. data/node_modules/sass-lint/tests/rules/force-element-nesting.js +35 -0
  3575. data/node_modules/sass-lint/tests/rules/force-pseudo-nesting.js +36 -0
  3576. data/node_modules/sass-lint/tests/rules/function-name-format.js +227 -0
  3577. data/node_modules/sass-lint/tests/rules/hex-length.js +63 -0
  3578. data/node_modules/sass-lint/tests/rules/hex-notation.js +63 -0
  3579. data/node_modules/sass-lint/tests/rules/id-name-format.js +209 -0
  3580. data/node_modules/sass-lint/tests/rules/indentation.js +67 -0
  3581. data/node_modules/sass-lint/tests/rules/leading-zero.js +63 -0
  3582. data/node_modules/sass-lint/tests/rules/max-file-line-count.js +63 -0
  3583. data/node_modules/sass-lint/tests/rules/max-line-length.js +63 -0
  3584. data/node_modules/sass-lint/tests/rules/mixin-name-format.js +227 -0
  3585. data/node_modules/sass-lint/tests/rules/mixins-before-declarations.js +120 -0
  3586. data/node_modules/sass-lint/tests/rules/nesting-depth.js +63 -0
  3587. data/node_modules/sass-lint/tests/rules/no-attribute-selectors.js +35 -0
  3588. data/node_modules/sass-lint/tests/rules/no-color-hex.js +35 -0
  3589. data/node_modules/sass-lint/tests/rules/no-color-keywords.js +35 -0
  3590. data/node_modules/sass-lint/tests/rules/no-color-literals.js +151 -0
  3591. data/node_modules/sass-lint/tests/rules/no-combinators.js +35 -0
  3592. data/node_modules/sass-lint/tests/rules/no-css-comments.js +35 -0
  3593. data/node_modules/sass-lint/tests/rules/no-debug.js +35 -0
  3594. data/node_modules/sass-lint/tests/rules/no-disallowed-properties.js +83 -0
  3595. data/node_modules/sass-lint/tests/rules/no-duplicate-properties.js +101 -0
  3596. data/node_modules/sass-lint/tests/rules/no-empty-rulesets.js +19 -0
  3597. data/node_modules/sass-lint/tests/rules/no-extends.js +35 -0
  3598. data/node_modules/sass-lint/tests/rules/no-ids.js +35 -0
  3599. data/node_modules/sass-lint/tests/rules/no-important.js +35 -0
  3600. data/node_modules/sass-lint/tests/rules/no-invalid-hex.js +35 -0
  3601. data/node_modules/sass-lint/tests/rules/no-mergeable-selectors.js +64 -0
  3602. data/node_modules/sass-lint/tests/rules/no-misspelled-properties.js +101 -0
  3603. data/node_modules/sass-lint/tests/rules/no-qualifying-elements.js +181 -0
  3604. data/node_modules/sass-lint/tests/rules/no-trailing-whitespace.js +35 -0
  3605. data/node_modules/sass-lint/tests/rules/no-trailing-zero.js +35 -0
  3606. data/node_modules/sass-lint/tests/rules/no-transition-all.js +35 -0
  3607. data/node_modules/sass-lint/tests/rules/no-universal-selectors.js +35 -0
  3608. data/node_modules/sass-lint/tests/rules/no-url-domains.js +35 -0
  3609. data/node_modules/sass-lint/tests/rules/no-url-protocols.js +64 -0
  3610. data/node_modules/sass-lint/tests/rules/no-vendor-prefixes.js +241 -0
  3611. data/node_modules/sass-lint/tests/rules/no-warn.js +35 -0
  3612. data/node_modules/sass-lint/tests/rules/one-declaration-per-line.js +19 -0
  3613. data/node_modules/sass-lint/tests/rules/placeholder-in-extend.js +35 -0
  3614. data/node_modules/sass-lint/tests/rules/placeholder-name-format.js +235 -0
  3615. data/node_modules/sass-lint/tests/rules/property-sort-order.js +267 -0
  3616. data/node_modules/sass-lint/tests/rules/property-units.js +205 -0
  3617. data/node_modules/sass-lint/tests/rules/pseudo-element.js +73 -0
  3618. data/node_modules/sass-lint/tests/rules/quotes.js +63 -0
  3619. data/node_modules/sass-lint/tests/rules/shorthand-values.js +300 -0
  3620. data/node_modules/sass-lint/tests/rules/single-line-per-selector.js +35 -0
  3621. data/node_modules/sass-lint/tests/rules/space-after-bang.js +63 -0
  3622. data/node_modules/sass-lint/tests/rules/space-after-colon.js +63 -0
  3623. data/node_modules/sass-lint/tests/rules/space-after-comma.js +63 -0
  3624. data/node_modules/sass-lint/tests/rules/space-around-operator.js +63 -0
  3625. data/node_modules/sass-lint/tests/rules/space-before-bang.js +63 -0
  3626. data/node_modules/sass-lint/tests/rules/space-before-brace.js +33 -0
  3627. data/node_modules/sass-lint/tests/rules/space-before-colon.js +63 -0
  3628. data/node_modules/sass-lint/tests/rules/space-between-parens.js +63 -0
  3629. data/node_modules/sass-lint/tests/rules/trailing-semicolon.js +33 -0
  3630. data/node_modules/sass-lint/tests/rules/url-quotes.js +35 -0
  3631. data/node_modules/sass-lint/tests/rules/variable-for-property.js +103 -0
  3632. data/node_modules/sass-lint/tests/rules/variable-name-format.js +235 -0
  3633. data/node_modules/sass-lint/tests/rules/zero-unit.js +63 -0
  3634. data/node_modules/sass-lint/tests/sass/attribute-quotes.sass +62 -0
  3635. data/node_modules/sass-lint/tests/sass/attribute-quotes.scss +75 -0
  3636. data/node_modules/sass-lint/tests/sass/bem-depth.sass +35 -0
  3637. data/node_modules/sass-lint/tests/sass/bem-depth.scss +55 -0
  3638. data/node_modules/sass-lint/tests/sass/border-zero.sass +22 -0
  3639. data/node_modules/sass-lint/tests/sass/border-zero.scss +29 -0
  3640. data/node_modules/sass-lint/tests/sass/brace-style.scss +540 -0
  3641. data/node_modules/sass-lint/tests/sass/class-name-format.sass +96 -0
  3642. data/node_modules/sass-lint/tests/sass/class-name-format.scss +135 -0
  3643. data/node_modules/sass-lint/tests/sass/clean-import-paths.sass +26 -0
  3644. data/node_modules/sass-lint/tests/sass/clean-import-paths.scss +30 -0
  3645. data/node_modules/sass-lint/tests/sass/declarations-before-nesting.sass +34 -0
  3646. data/node_modules/sass-lint/tests/sass/declarations-before-nesting.scss +44 -0
  3647. data/node_modules/sass-lint/tests/sass/empty-args.sass +42 -0
  3648. data/node_modules/sass-lint/tests/sass/empty-args.scss +43 -0
  3649. data/node_modules/sass-lint/tests/sass/empty-file.sass +0 -0
  3650. data/node_modules/sass-lint/tests/sass/empty-file.scss +0 -0
  3651. data/node_modules/sass-lint/tests/sass/empty-line-between-blocks.sass +90 -0
  3652. data/node_modules/sass-lint/tests/sass/empty-line-between-blocks.scss +113 -0
  3653. data/node_modules/sass-lint/tests/sass/empty-line-with-comments.sass +185 -0
  3654. data/node_modules/sass-lint/tests/sass/empty-line-with-comments.scss +228 -0
  3655. data/node_modules/sass-lint/tests/sass/extends-before-declarations.sass +34 -0
  3656. data/node_modules/sass-lint/tests/sass/extends-before-declarations.scss +35 -0
  3657. data/node_modules/sass-lint/tests/sass/extends-before-mixins.sass +15 -0
  3658. data/node_modules/sass-lint/tests/sass/extends-before-mixins.scss +15 -0
  3659. data/node_modules/sass-lint/tests/sass/final-newline--import.sass +1 -0
  3660. data/node_modules/sass-lint/tests/sass/final-newline--import.scss +1 -0
  3661. data/node_modules/sass-lint/tests/sass/final-newline--nested.sass +3 -0
  3662. data/node_modules/sass-lint/tests/sass/final-newline--nested.scss +5 -0
  3663. data/node_modules/sass-lint/tests/sass/final-newline--none.sass +2 -0
  3664. data/node_modules/sass-lint/tests/sass/final-newline--none.scss +3 -0
  3665. data/node_modules/sass-lint/tests/sass/final-newline--return.sass +2 -0
  3666. data/node_modules/sass-lint/tests/sass/final-newline--return.scss +3 -0
  3667. data/node_modules/sass-lint/tests/sass/final-newline--space.sass +2 -0
  3668. data/node_modules/sass-lint/tests/sass/final-newline--space.scss +3 -0
  3669. data/node_modules/sass-lint/tests/sass/force-attribute-nesting.sass +25 -0
  3670. data/node_modules/sass-lint/tests/sass/force-attribute-nesting.scss +34 -0
  3671. data/node_modules/sass-lint/tests/sass/force-element-nesting.sass +56 -0
  3672. data/node_modules/sass-lint/tests/sass/force-element-nesting.scss +76 -0
  3673. data/node_modules/sass-lint/tests/sass/force-pseudo-nesting.sass +41 -0
  3674. data/node_modules/sass-lint/tests/sass/force-pseudo-nesting.scss +61 -0
  3675. data/node_modules/sass-lint/tests/sass/front-matter/front-matter.scss +7 -0
  3676. data/node_modules/sass-lint/tests/sass/function-name-format.sass +57 -0
  3677. data/node_modules/sass-lint/tests/sass/function-name-format.scss +74 -0
  3678. data/node_modules/sass-lint/tests/sass/hex-length.sass +28 -0
  3679. data/node_modules/sass-lint/tests/sass/hex-length.scss +28 -0
  3680. data/node_modules/sass-lint/tests/sass/hex-notation.sass +31 -0
  3681. data/node_modules/sass-lint/tests/sass/hex-notation.scss +33 -0
  3682. data/node_modules/sass-lint/tests/sass/id-name-format.sass +44 -0
  3683. data/node_modules/sass-lint/tests/sass/id-name-format.scss +58 -0
  3684. data/node_modules/sass-lint/tests/sass/indentation/indentation-spaces.sass +107 -0
  3685. data/node_modules/sass-lint/tests/sass/indentation/indentation-spaces.scss +175 -0
  3686. data/node_modules/sass-lint/tests/sass/indentation/indentation-tabs.sass +107 -0
  3687. data/node_modules/sass-lint/tests/sass/indentation/indentation-tabs.scss +175 -0
  3688. data/node_modules/sass-lint/tests/sass/leading-zero.sass +8 -0
  3689. data/node_modules/sass-lint/tests/sass/leading-zero.scss +9 -0
  3690. data/node_modules/sass-lint/tests/sass/max-file-line-count.sass +301 -0
  3691. data/node_modules/sass-lint/tests/sass/max-file-line-count.scss +301 -0
  3692. data/node_modules/sass-lint/tests/sass/max-line-length.sass +20 -0
  3693. data/node_modules/sass-lint/tests/sass/max-line-length.scss +22 -0
  3694. data/node_modules/sass-lint/tests/sass/mixin-name-format.sass +74 -0
  3695. data/node_modules/sass-lint/tests/sass/mixin-name-format.scss +91 -0
  3696. data/node_modules/sass-lint/tests/sass/mixins-before-declarations.sass +69 -0
  3697. data/node_modules/sass-lint/tests/sass/mixins-before-declarations.scss +77 -0
  3698. data/node_modules/sass-lint/tests/sass/nesting-depth.sass +29 -0
  3699. data/node_modules/sass-lint/tests/sass/nesting-depth.scss +39 -0
  3700. data/node_modules/sass-lint/tests/sass/no-attribute-selectors.sass +77 -0
  3701. data/node_modules/sass-lint/tests/sass/no-attribute-selectors.scss +98 -0
  3702. data/node_modules/sass-lint/tests/sass/no-color-hex.sass +25 -0
  3703. data/node_modules/sass-lint/tests/sass/no-color-hex.scss +26 -0
  3704. data/node_modules/sass-lint/tests/sass/no-color-keywords.sass +33 -0
  3705. data/node_modules/sass-lint/tests/sass/no-color-keywords.scss +44 -0
  3706. data/node_modules/sass-lint/tests/sass/no-color-literals.sass +115 -0
  3707. data/node_modules/sass-lint/tests/sass/no-color-literals.scss +124 -0
  3708. data/node_modules/sass-lint/tests/sass/no-combinators.sass +115 -0
  3709. data/node_modules/sass-lint/tests/sass/no-combinators.scss +155 -0
  3710. data/node_modules/sass-lint/tests/sass/no-css-comments.sass +58 -0
  3711. data/node_modules/sass-lint/tests/sass/no-css-comments.scss +59 -0
  3712. data/node_modules/sass-lint/tests/sass/no-debug.sass +8 -0
  3713. data/node_modules/sass-lint/tests/sass/no-debug.scss +9 -0
  3714. data/node_modules/sass-lint/tests/sass/no-disallowed-properties.sass +25 -0
  3715. data/node_modules/sass-lint/tests/sass/no-disallowed-properties.scss +36 -0
  3716. data/node_modules/sass-lint/tests/sass/no-duplicate-properties.sass +47 -0
  3717. data/node_modules/sass-lint/tests/sass/no-duplicate-properties.scss +56 -0
  3718. data/node_modules/sass-lint/tests/sass/no-empty-rulesets.scss +11 -0
  3719. data/node_modules/sass-lint/tests/sass/no-extends.sass +7 -0
  3720. data/node_modules/sass-lint/tests/sass/no-extends.scss +8 -0
  3721. data/node_modules/sass-lint/tests/sass/no-ids.sass +6 -0
  3722. data/node_modules/sass-lint/tests/sass/no-ids.scss +7 -0
  3723. data/node_modules/sass-lint/tests/sass/no-important.sass +2 -0
  3724. data/node_modules/sass-lint/tests/sass/no-important.scss +3 -0
  3725. data/node_modules/sass-lint/tests/sass/no-invalid-hex.sass +45 -0
  3726. data/node_modules/sass-lint/tests/sass/no-invalid-hex.scss +52 -0
  3727. data/node_modules/sass-lint/tests/sass/no-mergeable-selectors.sass +253 -0
  3728. data/node_modules/sass-lint/tests/sass/no-mergeable-selectors.scss +362 -0
  3729. data/node_modules/sass-lint/tests/sass/no-misspelled-properties.sass +48 -0
  3730. data/node_modules/sass-lint/tests/sass/no-misspelled-properties.scss +65 -0
  3731. data/node_modules/sass-lint/tests/sass/no-qualifying-elements.sass +42 -0
  3732. data/node_modules/sass-lint/tests/sass/no-qualifying-elements.scss +43 -0
  3733. data/node_modules/sass-lint/tests/sass/no-trailing-whitespace.sass +24 -0
  3734. data/node_modules/sass-lint/tests/sass/no-trailing-whitespace.scss +29 -0
  3735. data/node_modules/sass-lint/tests/sass/no-trailing-zero.sass +41 -0
  3736. data/node_modules/sass-lint/tests/sass/no-trailing-zero.scss +47 -0
  3737. data/node_modules/sass-lint/tests/sass/no-transition-all.sass +25 -0
  3738. data/node_modules/sass-lint/tests/sass/no-transition-all.scss +31 -0
  3739. data/node_modules/sass-lint/tests/sass/no-universal-selectors.sass +15 -0
  3740. data/node_modules/sass-lint/tests/sass/no-universal-selectors.scss +20 -0
  3741. data/node_modules/sass-lint/tests/sass/no-url-domains.sass +25 -0
  3742. data/node_modules/sass-lint/tests/sass/no-url-domains.scss +27 -0
  3743. data/node_modules/sass-lint/tests/sass/no-url-protocols.sass +25 -0
  3744. data/node_modules/sass-lint/tests/sass/no-url-protocols.scss +27 -0
  3745. data/node_modules/sass-lint/tests/sass/no-vendor-prefixes.sass +38 -0
  3746. data/node_modules/sass-lint/tests/sass/no-vendor-prefixes.scss +41 -0
  3747. data/node_modules/sass-lint/tests/sass/no-warn.sass +8 -0
  3748. data/node_modules/sass-lint/tests/sass/no-warn.scss +9 -0
  3749. data/node_modules/sass-lint/tests/sass/one-declaration-per-line.scss +25 -0
  3750. data/node_modules/sass-lint/tests/sass/parse.scss +7 -0
  3751. data/node_modules/sass-lint/tests/sass/placeholder-in-extend.sass +3 -0
  3752. data/node_modules/sass-lint/tests/sass/placeholder-in-extend.scss +5 -0
  3753. data/node_modules/sass-lint/tests/sass/placeholder-name-format.sass +58 -0
  3754. data/node_modules/sass-lint/tests/sass/placeholder-name-format.scss +77 -0
  3755. data/node_modules/sass-lint/tests/sass/property-sort-order.sass +51 -0
  3756. data/node_modules/sass-lint/tests/sass/property-sort-order.scss +55 -0
  3757. data/node_modules/sass-lint/tests/sass/property-units.sass +24 -0
  3758. data/node_modules/sass-lint/tests/sass/property-units.scss +37 -0
  3759. data/node_modules/sass-lint/tests/sass/pseudo-element.sass +236 -0
  3760. data/node_modules/sass-lint/tests/sass/pseudo-element.scss +238 -0
  3761. data/node_modules/sass-lint/tests/sass/quotes.sass +14 -0
  3762. data/node_modules/sass-lint/tests/sass/quotes.scss +15 -0
  3763. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-a-block.sass +2 -0
  3764. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-a-block.scss +3 -0
  3765. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-a-line.sass +2 -0
  3766. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-a-line.scss +3 -0
  3767. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-a-rule.sass +1 -0
  3768. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-a-rule.scss +1 -0
  3769. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-all-then-reenable.sass +3 -0
  3770. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-all-then-reenable.scss +3 -0
  3771. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-all.sass +1 -0
  3772. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-all.scss +1 -0
  3773. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-multiple-rules.sass +1 -0
  3774. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-multiple-rules.scss +1 -0
  3775. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-then-enable.sass +5 -0
  3776. data/node_modules/sass-lint/tests/sass/ruleToggler-disable-then-enable.scss +6 -0
  3777. data/node_modules/sass-lint/tests/sass/ruleToggler-empty-comment.sass +2 -0
  3778. data/node_modules/sass-lint/tests/sass/ruleToggler-empty-comment.scss +3 -0
  3779. data/node_modules/sass-lint/tests/sass/ruleToggler-guarantee-order.sass +17 -0
  3780. data/node_modules/sass-lint/tests/sass/ruleToggler-guarantee-order.scss +17 -0
  3781. data/node_modules/sass-lint/tests/sass/ruleToggler-ignore-unknown.sass +2 -0
  3782. data/node_modules/sass-lint/tests/sass/ruleToggler-ignore-unknown.scss +3 -0
  3783. data/node_modules/sass-lint/tests/sass/selector-helpers/selector-helpers.scss +68 -0
  3784. data/node_modules/sass-lint/tests/sass/shorthand-values.sass +314 -0
  3785. data/node_modules/sass-lint/tests/sass/shorthand-values.scss +380 -0
  3786. data/node_modules/sass-lint/tests/sass/single-line-per-selector.sass +59 -0
  3787. data/node_modules/sass-lint/tests/sass/single-line-per-selector.scss +66 -0
  3788. data/node_modules/sass-lint/tests/sass/space-after-bang.sass +52 -0
  3789. data/node_modules/sass-lint/tests/sass/space-after-bang.scss +56 -0
  3790. data/node_modules/sass-lint/tests/sass/space-after-colon.sass +16 -0
  3791. data/node_modules/sass-lint/tests/sass/space-after-colon.scss +16 -0
  3792. data/node_modules/sass-lint/tests/sass/space-after-comma.sass +49 -0
  3793. data/node_modules/sass-lint/tests/sass/space-after-comma.scss +50 -0
  3794. data/node_modules/sass-lint/tests/sass/space-around-operator.sass +512 -0
  3795. data/node_modules/sass-lint/tests/sass/space-around-operator.scss +540 -0
  3796. data/node_modules/sass-lint/tests/sass/space-before-bang.sass +27 -0
  3797. data/node_modules/sass-lint/tests/sass/space-before-bang.scss +27 -0
  3798. data/node_modules/sass-lint/tests/sass/space-before-brace.scss +56 -0
  3799. data/node_modules/sass-lint/tests/sass/space-before-colon.sass +16 -0
  3800. data/node_modules/sass-lint/tests/sass/space-before-colon.scss +16 -0
  3801. data/node_modules/sass-lint/tests/sass/space-between-parens.sass +46 -0
  3802. data/node_modules/sass-lint/tests/sass/space-between-parens.scss +47 -0
  3803. data/node_modules/sass-lint/tests/sass/success.scss +3 -0
  3804. data/node_modules/sass-lint/tests/sass/trailing-semicolon.scss +40 -0
  3805. data/node_modules/sass-lint/tests/sass/url-quotes.sass +20 -0
  3806. data/node_modules/sass-lint/tests/sass/url-quotes.scss +21 -0
  3807. data/node_modules/sass-lint/tests/sass/variable-for-property.sass +37 -0
  3808. data/node_modules/sass-lint/tests/sass/variable-for-property.scss +41 -0
  3809. data/node_modules/sass-lint/tests/sass/variable-name-format.sass +25 -0
  3810. data/node_modules/sass-lint/tests/sass/variable-name-format.scss +27 -0
  3811. data/node_modules/sass-lint/tests/sass/zero-unit.sass +23 -0
  3812. data/node_modules/sass-lint/tests/sass/zero-unit.scss +25 -0
  3813. data/node_modules/sass-lint/tests/selector-helpers/selectorHelpers.js +137 -0
  3814. data/node_modules/sass-lint/tests/testFile.txt +1 -0
  3815. data/node_modules/sass-lint/tests/yml/.blank.yml +0 -0
  3816. data/node_modules/sass-lint/tests/yml/.color-keyword-errors.yml +59 -0
  3817. data/node_modules/sass-lint/tests/yml/.error-output.yml +9 -0
  3818. data/node_modules/sass-lint/tests/yml/.extend-a1.yml +4 -0
  3819. data/node_modules/sass-lint/tests/yml/.extend-a2.yml +4 -0
  3820. data/node_modules/sass-lint/tests/yml/.ignore-file.yml +9 -0
  3821. data/node_modules/sass-lint/tests/yml/.indentation-error.yml +2 -0
  3822. data/node_modules/sass-lint/tests/yml/.indentation-warn.yml +2 -0
  3823. data/node_modules/sass-lint/tests/yml/.json-lint.yml +59 -0
  3824. data/node_modules/sass-lint/tests/yml/.max-0-warnings.yml +2 -0
  3825. data/node_modules/sass-lint/tests/yml/.max-10-warnings.yml +2 -0
  3826. data/node_modules/sass-lint/tests/yml/.max-100-warnings.yml +2 -0
  3827. data/node_modules/sass-lint/tests/yml/.multiple-ignore-strings.yml +60 -0
  3828. data/node_modules/sass-lint/tests/yml/.multiple-ignores.yml +64 -0
  3829. data/node_modules/sass-lint/tests/yml/.multiple-inputs.yml +61 -0
  3830. data/node_modules/sass-lint/tests/yml/.no-merge-default.yml +59 -0
  3831. data/node_modules/sass-lint/tests/yml/.single-input-include-string.yml +59 -0
  3832. data/node_modules/sass-lint/tests/yml/.stylish-errors.yml +59 -0
  3833. data/node_modules/sass-lint/tests/yml/.stylish-output.yml +58 -0
  3834. data/node_modules/sass-lint/tests/yml/extend/.extend-b.yml +5 -0
  3835. data/node_modules/sass-lint/tests/yml/extend/.extend-c.yml +3 -0
  3836. data/node_modules/sass-lint/tests/yml/extend/find-file-test/.npmignore +0 -0
  3837. data/node_modules/shelljs/.npmignore +9 -0
  3838. data/node_modules/shelljs/LICENSE +26 -0
  3839. data/node_modules/shelljs/MAINTAINERS +3 -0
  3840. data/node_modules/shelljs/README.md +658 -0
  3841. data/node_modules/shelljs/bin/shjs +55 -0
  3842. data/node_modules/shelljs/global.js +3 -0
  3843. data/node_modules/shelljs/make.js +57 -0
  3844. data/node_modules/shelljs/package.json +40 -0
  3845. data/node_modules/shelljs/scripts/generate-docs.js +26 -0
  3846. data/node_modules/shelljs/scripts/run-tests.js +55 -0
  3847. data/node_modules/shelljs/shell.js +184 -0
  3848. data/node_modules/shelljs/src/cat.js +40 -0
  3849. data/node_modules/shelljs/src/cd.js +28 -0
  3850. data/node_modules/shelljs/src/chmod.js +215 -0
  3851. data/node_modules/shelljs/src/common.js +257 -0
  3852. data/node_modules/shelljs/src/cp.js +210 -0
  3853. data/node_modules/shelljs/src/dirs.js +191 -0
  3854. data/node_modules/shelljs/src/echo.js +20 -0
  3855. data/node_modules/shelljs/src/error.js +10 -0
  3856. data/node_modules/shelljs/src/exec.js +249 -0
  3857. data/node_modules/shelljs/src/find.js +51 -0
  3858. data/node_modules/shelljs/src/grep.js +52 -0
  3859. data/node_modules/shelljs/src/ln.js +69 -0
  3860. data/node_modules/shelljs/src/ls.js +168 -0
  3861. data/node_modules/shelljs/src/mkdir.js +68 -0
  3862. data/node_modules/shelljs/src/mv.js +82 -0
  3863. data/node_modules/shelljs/src/popd.js +1 -0
  3864. data/node_modules/shelljs/src/pushd.js +1 -0
  3865. data/node_modules/shelljs/src/pwd.js +11 -0
  3866. data/node_modules/shelljs/src/rm.js +163 -0
  3867. data/node_modules/shelljs/src/sed.js +64 -0
  3868. data/node_modules/shelljs/src/set.js +49 -0
  3869. data/node_modules/shelljs/src/tempdir.js +57 -0
  3870. data/node_modules/shelljs/src/test.js +85 -0
  3871. data/node_modules/shelljs/src/to.js +30 -0
  3872. data/node_modules/shelljs/src/toEnd.js +30 -0
  3873. data/node_modules/shelljs/src/touch.js +109 -0
  3874. data/node_modules/shelljs/src/which.js +98 -0
  3875. data/node_modules/slice-ansi/index.js +80 -0
  3876. data/node_modules/slice-ansi/license +22 -0
  3877. data/node_modules/slice-ansi/package.json +56 -0
  3878. data/node_modules/slice-ansi/readme.md +56 -0
  3879. data/node_modules/sprintf-js/.npmignore +1 -0
  3880. data/node_modules/sprintf-js/LICENSE +24 -0
  3881. data/node_modules/sprintf-js/README.md +88 -0
  3882. data/node_modules/sprintf-js/bower.json +14 -0
  3883. data/node_modules/sprintf-js/demo/angular.html +20 -0
  3884. data/node_modules/sprintf-js/dist/angular-sprintf.min.js +4 -0
  3885. data/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
  3886. data/node_modules/sprintf-js/dist/angular-sprintf.min.map +1 -0
  3887. data/node_modules/sprintf-js/dist/sprintf.min.js +4 -0
  3888. data/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
  3889. data/node_modules/sprintf-js/dist/sprintf.min.map +1 -0
  3890. data/node_modules/sprintf-js/gruntfile.js +36 -0
  3891. data/node_modules/sprintf-js/package.json +22 -0
  3892. data/node_modules/sprintf-js/src/angular-sprintf.js +18 -0
  3893. data/node_modules/sprintf-js/src/sprintf.js +208 -0
  3894. data/node_modules/sprintf-js/test/test.js +82 -0
  3895. data/node_modules/string-width/index.js +37 -0
  3896. data/node_modules/string-width/license +21 -0
  3897. data/node_modules/string-width/package.json +56 -0
  3898. data/node_modules/string-width/readme.md +42 -0
  3899. data/node_modules/string_decoder/.npmignore +2 -0
  3900. data/node_modules/string_decoder/LICENSE +20 -0
  3901. data/node_modules/string_decoder/README.md +7 -0
  3902. data/node_modules/string_decoder/index.js +221 -0
  3903. data/node_modules/string_decoder/package.json +25 -0
  3904. data/node_modules/strip-ansi/index.js +6 -0
  3905. data/node_modules/strip-ansi/license +21 -0
  3906. data/node_modules/strip-ansi/package.json +57 -0
  3907. data/node_modules/strip-ansi/readme.md +33 -0
  3908. data/node_modules/strip-json-comments/cli.js +41 -0
  3909. data/node_modules/strip-json-comments/license +21 -0
  3910. data/node_modules/strip-json-comments/package.json +46 -0
  3911. data/node_modules/strip-json-comments/readme.md +80 -0
  3912. data/node_modules/strip-json-comments/strip-json-comments.js +73 -0
  3913. data/node_modules/supports-color/index.js +50 -0
  3914. data/node_modules/supports-color/license +21 -0
  3915. data/node_modules/supports-color/package.json +49 -0
  3916. data/node_modules/supports-color/readme.md +36 -0
  3917. data/node_modules/table/LICENSE +24 -0
  3918. data/node_modules/table/README.md +652 -0
  3919. data/node_modules/table/dist/alignString.js +108 -0
  3920. data/node_modules/table/dist/alignTableData.js +40 -0
  3921. data/node_modules/table/dist/calculateCellHeight.js +49 -0
  3922. data/node_modules/table/dist/calculateCellWidthIndex.js +29 -0
  3923. data/node_modules/table/dist/calculateMaximumColumnWidthIndex.js +43 -0
  3924. data/node_modules/table/dist/calculateRowHeightIndex.js +50 -0
  3925. data/node_modules/table/dist/createStream.js +159 -0
  3926. data/node_modules/table/dist/drawBorder.js +104 -0
  3927. data/node_modules/table/dist/drawRow.js +23 -0
  3928. data/node_modules/table/dist/drawTable.js +63 -0
  3929. data/node_modules/table/dist/getBorderCharacters.js +128 -0
  3930. data/node_modules/table/dist/index.js +24 -0
  3931. data/node_modules/table/dist/makeConfig.js +101 -0
  3932. data/node_modules/table/dist/makeStreamConfig.js +109 -0
  3933. data/node_modules/table/dist/mapDataUsingRowHeightIndex.js +59 -0
  3934. data/node_modules/table/dist/padTableData.js +28 -0
  3935. data/node_modules/table/dist/schemas/config.json +114 -0
  3936. data/node_modules/table/dist/schemas/streamConfig.json +114 -0
  3937. data/node_modules/table/dist/stringifyTableData.js +25 -0
  3938. data/node_modules/table/dist/table.js +135 -0
  3939. data/node_modules/table/dist/truncateTableData.js +29 -0
  3940. data/node_modules/table/dist/validateConfig.js +756 -0
  3941. data/node_modules/table/dist/validateStreamConfig.js +742 -0
  3942. data/node_modules/table/dist/validateTableData.js +59 -0
  3943. data/node_modules/table/dist/wrapString.js +48 -0
  3944. data/node_modules/table/dist/wrapWord.js +58 -0
  3945. data/node_modules/table/node_modules/is-fullwidth-code-point/index.js +46 -0
  3946. data/node_modules/table/node_modules/is-fullwidth-code-point/license +21 -0
  3947. data/node_modules/table/node_modules/is-fullwidth-code-point/package.json +45 -0
  3948. data/node_modules/table/node_modules/is-fullwidth-code-point/readme.md +39 -0
  3949. data/node_modules/table/node_modules/string-width/index.js +35 -0
  3950. data/node_modules/table/node_modules/string-width/license +21 -0
  3951. data/node_modules/table/node_modules/string-width/package.json +58 -0
  3952. data/node_modules/table/node_modules/string-width/readme.md +42 -0
  3953. data/node_modules/table/package.json +69 -0
  3954. data/node_modules/table/test/README/usage/basic.js +25 -0
  3955. data/node_modules/table/test/README/usage/cell_content_alignment.js +45 -0
  3956. data/node_modules/table/test/README/usage/column_width.js +33 -0
  3957. data/node_modules/table/test/README/usage/custom_border.js +50 -0
  3958. data/node_modules/table/test/README/usage/draw_horizontal_line.js +41 -0
  3959. data/node_modules/table/test/README/usage/expectTable.js +13 -0
  3960. data/node_modules/table/test/README/usage/moon_mission.js +67 -0
  3961. data/node_modules/table/test/README/usage/padding_cell_content.js +39 -0
  3962. data/node_modules/table/test/README/usage/predefined_border_templates.js +91 -0
  3963. data/node_modules/table/test/README/usage/streaming.js +56 -0
  3964. data/node_modules/table/test/README/usage/text_truncating.js +32 -0
  3965. data/node_modules/table/test/README/usage/text_wrapping.js +67 -0
  3966. data/node_modules/table/test/alignString.js +102 -0
  3967. data/node_modules/table/test/calculateCellHeight.js +44 -0
  3968. data/node_modules/table/test/calculateCellWidthIndex.js +20 -0
  3969. data/node_modules/table/test/calculateMaximumColumnWidthIndex.js +59 -0
  3970. data/node_modules/table/test/calculateRowHeightIndex.js +78 -0
  3971. data/node_modules/table/test/config.js +43 -0
  3972. data/node_modules/table/test/configSamples.js +153 -0
  3973. data/node_modules/table/test/createStream.js +41 -0
  3974. data/node_modules/table/test/drawBorder.js +71 -0
  3975. data/node_modules/table/test/makeConfig.js +75 -0
  3976. data/node_modules/table/test/mapDataUsingRowHeightIndex.js +119 -0
  3977. data/node_modules/table/test/streamConfig.js +43 -0
  3978. data/node_modules/table/test/streamConfigSamples.js +151 -0
  3979. data/node_modules/table/test/validateTableData.js +65 -0
  3980. data/node_modules/table/test/wrapString.js +45 -0
  3981. data/node_modules/table/test/wrapWord.js +32 -0
  3982. data/node_modules/text-table/.travis.yml +4 -0
  3983. data/node_modules/text-table/LICENSE +18 -0
  3984. data/node_modules/text-table/example/align.js +8 -0
  3985. data/node_modules/text-table/example/center.js +8 -0
  3986. data/node_modules/text-table/example/dotalign.js +9 -0
  3987. data/node_modules/text-table/example/doubledot.js +11 -0
  3988. data/node_modules/text-table/example/table.js +6 -0
  3989. data/node_modules/text-table/index.js +86 -0
  3990. data/node_modules/text-table/package.json +44 -0
  3991. data/node_modules/text-table/readme.markdown +134 -0
  3992. data/node_modules/text-table/test/align.js +18 -0
  3993. data/node_modules/text-table/test/ansi-colors.js +32 -0
  3994. data/node_modules/text-table/test/center.js +18 -0
  3995. data/node_modules/text-table/test/dotalign.js +20 -0
  3996. data/node_modules/text-table/test/doubledot.js +24 -0
  3997. data/node_modules/text-table/test/table.js +14 -0
  3998. data/node_modules/through/.travis.yml +5 -0
  3999. data/node_modules/through/LICENSE.APACHE2 +15 -0
  4000. data/node_modules/through/LICENSE.MIT +24 -0
  4001. data/node_modules/through/index.js +108 -0
  4002. data/node_modules/through/package.json +36 -0
  4003. data/node_modules/through/readme.markdown +64 -0
  4004. data/node_modules/through/test/async.js +28 -0
  4005. data/node_modules/through/test/auto-destroy.js +30 -0
  4006. data/node_modules/through/test/buffering.js +71 -0
  4007. data/node_modules/through/test/end.js +45 -0
  4008. data/node_modules/through/test/index.js +133 -0
  4009. data/node_modules/tryit/README.md +56 -0
  4010. data/node_modules/tryit/package.json +27 -0
  4011. data/node_modules/tryit/tryit.js +14 -0
  4012. data/node_modules/type-check/LICENSE +22 -0
  4013. data/node_modules/type-check/README.md +210 -0
  4014. data/node_modules/type-check/lib/check.js +126 -0
  4015. data/node_modules/type-check/lib/index.js +16 -0
  4016. data/node_modules/type-check/lib/parse-type.js +196 -0
  4017. data/node_modules/type-check/package.json +40 -0
  4018. data/node_modules/typedarray/.travis.yml +4 -0
  4019. data/node_modules/typedarray/LICENSE +35 -0
  4020. data/node_modules/typedarray/example/tarray.js +4 -0
  4021. data/node_modules/typedarray/index.js +630 -0
  4022. data/node_modules/typedarray/package.json +55 -0
  4023. data/node_modules/typedarray/readme.markdown +61 -0
  4024. data/node_modules/typedarray/test/server/undef_globals.js +19 -0
  4025. data/node_modules/typedarray/test/tarray.js +10 -0
  4026. data/node_modules/user-home/index.js +2 -0
  4027. data/node_modules/user-home/license +21 -0
  4028. data/node_modules/user-home/package.json +43 -0
  4029. data/node_modules/user-home/readme.md +33 -0
  4030. data/node_modules/util-deprecate/History.md +16 -0
  4031. data/node_modules/util-deprecate/LICENSE +24 -0
  4032. data/node_modules/util-deprecate/README.md +53 -0
  4033. data/node_modules/util-deprecate/browser.js +67 -0
  4034. data/node_modules/util-deprecate/node.js +6 -0
  4035. data/node_modules/util-deprecate/package.json +27 -0
  4036. data/node_modules/util/.npmignore +1 -0
  4037. data/node_modules/util/.travis.yml +8 -0
  4038. data/node_modules/util/.zuul.yml +10 -0
  4039. data/node_modules/util/LICENSE +18 -0
  4040. data/node_modules/util/README.md +15 -0
  4041. data/node_modules/util/package.json +31 -0
  4042. data/node_modules/util/support/isBuffer.js +3 -0
  4043. data/node_modules/util/support/isBufferBrowser.js +6 -0
  4044. data/node_modules/util/test/browser/inspect.js +41 -0
  4045. data/node_modules/util/test/browser/is.js +91 -0
  4046. data/node_modules/util/test/node/debug.js +86 -0
  4047. data/node_modules/util/test/node/format.js +77 -0
  4048. data/node_modules/util/test/node/inspect.js +195 -0
  4049. data/node_modules/util/test/node/log.js +58 -0
  4050. data/node_modules/util/test/node/util.js +83 -0
  4051. data/node_modules/util/util.js +586 -0
  4052. data/node_modules/wordwrap/LICENSE +18 -0
  4053. data/node_modules/wordwrap/README.markdown +70 -0
  4054. data/node_modules/wordwrap/example/center.js +10 -0
  4055. data/node_modules/wordwrap/example/meat.js +3 -0
  4056. data/node_modules/wordwrap/index.js +76 -0
  4057. data/node_modules/wordwrap/package.json +34 -0
  4058. data/node_modules/wordwrap/test/break.js +32 -0
  4059. data/node_modules/wordwrap/test/idleness.txt +63 -0
  4060. data/node_modules/wordwrap/test/wrap.js +33 -0
  4061. data/node_modules/wrappy/LICENSE +15 -0
  4062. data/node_modules/wrappy/README.md +36 -0
  4063. data/node_modules/wrappy/package.json +29 -0
  4064. data/node_modules/wrappy/wrappy.js +33 -0
  4065. data/node_modules/write/LICENSE +21 -0
  4066. data/node_modules/write/README.md +101 -0
  4067. data/node_modules/write/index.js +93 -0
  4068. data/node_modules/write/node_modules/.bin/mkdirp +1 -0
  4069. data/node_modules/write/package.json +43 -0
  4070. data/node_modules/xtend/.jshintrc +30 -0
  4071. data/node_modules/xtend/.npmignore +1 -0
  4072. data/node_modules/xtend/LICENCE +19 -0
  4073. data/node_modules/xtend/Makefile +4 -0
  4074. data/node_modules/xtend/README.md +32 -0
  4075. data/node_modules/xtend/immutable.js +19 -0
  4076. data/node_modules/xtend/mutable.js +17 -0
  4077. data/node_modules/xtend/package.json +55 -0
  4078. data/node_modules/xtend/test.js +83 -0
  4079. metadata +4077 -4
  4080. data/lib/rubygems_plugin.rb +0 -3
@@ -0,0 +1,10 @@
1
+ 'use strict';
2
+
3
+ var replace = String.prototype.replace
4
+ , re = /([A-Z])/g;
5
+
6
+ module.exports = function () {
7
+ var str = replace.call(this, re, "-$1").toLowerCase();
8
+ if (str[0] === '-') str = str.slice(1);
9
+ return str;
10
+ };
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ var value = require('../../object/valid-value');
4
+
5
+ module.exports = function () {
6
+ var str = String(value(this));
7
+ return str.charAt(0).toUpperCase() + str.slice(1);
8
+ };
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ var toLowerCase = String.prototype.toLowerCase;
4
+
5
+ module.exports = function (other) {
6
+ return toLowerCase.call(this).localeCompare(toLowerCase.call(String(other)));
7
+ };
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ if (!require('./is-implemented')()) {
4
+ Object.defineProperty(String.prototype, 'codePointAt',
5
+ { value: require('./shim'), configurable: true, enumerable: false,
6
+ writable: true });
7
+ }
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('./is-implemented')()
4
+ ? String.prototype.codePointAt
5
+ : require('./shim');
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ var str = 'abc\uD834\uDF06def';
4
+
5
+ module.exports = function () {
6
+ if (typeof str.codePointAt !== 'function') return false;
7
+ return str.codePointAt(3) === 0x1D306;
8
+ };
@@ -0,0 +1,26 @@
1
+ // Based on: https://github.com/mathiasbynens/String.prototype.codePointAt
2
+ // Thanks @mathiasbynens !
3
+
4
+ 'use strict';
5
+
6
+ var toInteger = require('../../../number/to-integer')
7
+ , validValue = require('../../../object/valid-value');
8
+
9
+ module.exports = function (pos) {
10
+ var str = String(validValue(this)), l = str.length, first, second;
11
+ pos = toInteger(pos);
12
+
13
+ // Account for out-of-bounds indices:
14
+ if (pos < 0 || pos >= l) return undefined;
15
+
16
+ // Get the first code unit
17
+ first = str.charCodeAt(pos);
18
+ if ((first >= 0xD800) && (first <= 0xDBFF) && (l > pos + 1)) {
19
+ second = str.charCodeAt(pos + 1);
20
+ if (second >= 0xDC00 && second <= 0xDFFF) {
21
+ // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae
22
+ return (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000;
23
+ }
24
+ }
25
+ return first;
26
+ };
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ if (!require('./is-implemented')()) {
4
+ Object.defineProperty(String.prototype, 'contains',
5
+ { value: require('./shim'), configurable: true, enumerable: false,
6
+ writable: true });
7
+ }
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('./is-implemented')()
4
+ ? String.prototype.contains
5
+ : require('./shim');
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ var str = 'razdwatrzy';
4
+
5
+ module.exports = function () {
6
+ if (typeof str.contains !== 'function') return false;
7
+ return ((str.contains('dwa') === true) && (str.contains('foo') === false));
8
+ };
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ var indexOf = String.prototype.indexOf;
4
+
5
+ module.exports = function (searchString/*, position*/) {
6
+ return indexOf.call(this, searchString, arguments[1]) > -1;
7
+ };
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ if (!require('./is-implemented')()) {
4
+ Object.defineProperty(String.prototype, 'endsWith',
5
+ { value: require('./shim'), configurable: true, enumerable: false,
6
+ writable: true });
7
+ }
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('./is-implemented')()
4
+ ? String.prototype.endsWith
5
+ : require('./shim');
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ var str = 'razdwatrzy';
4
+
5
+ module.exports = function () {
6
+ if (typeof str.endsWith !== 'function') return false;
7
+ return ((str.endsWith('trzy') === true) && (str.endsWith('raz') === false));
8
+ };
@@ -0,0 +1,16 @@
1
+ 'use strict';
2
+
3
+ var toInteger = require('../../../number/to-integer')
4
+ , value = require('../../../object/valid-value')
5
+
6
+ , min = Math.min, max = Math.max;
7
+
8
+ module.exports = function (searchString/*, endPosition*/) {
9
+ var self, start, endPos;
10
+ self = String(value(this));
11
+ searchString = String(searchString);
12
+ endPos = arguments[1];
13
+ start = ((endPos == null) ? self.length :
14
+ min(max(toInteger(endPos), 0), self.length)) - searchString.length;
15
+ return (start < 0) ? false : (self.indexOf(searchString, start) === start);
16
+ };
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ var replace = String.prototype.replace
4
+
5
+ , re = /-([a-z0-9])/g
6
+ , toUpperCase = function (m, a) { return a.toUpperCase(); };
7
+
8
+ module.exports = function () { return replace.call(this, re, toUpperCase); };
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ var repeat = require('./repeat')
4
+
5
+ , replace = String.prototype.replace
6
+ , re = /(\r\n|[\n\r\u2028\u2029])([\u0000-\u0009\u000b-\uffff]+)/g;
7
+
8
+ module.exports = function (indent/*, count*/) {
9
+ var count = arguments[1];
10
+ indent = repeat.call(String(indent), (count == null) ? 1 : count);
11
+ return indent + replace.call(this, re, '$1' + indent + '$2');
12
+ };
@@ -0,0 +1,22 @@
1
+ 'use strict';
2
+
3
+ module.exports = {
4
+ '@@iterator': require('./@@iterator'),
5
+ at: require('./at'),
6
+ camelToHyphen: require('./camel-to-hyphen'),
7
+ capitalize: require('./capitalize'),
8
+ caseInsensitiveCompare: require('./case-insensitive-compare'),
9
+ codePointAt: require('./code-point-at'),
10
+ contains: require('./contains'),
11
+ hyphenToCamel: require('./hyphen-to-camel'),
12
+ endsWith: require('./ends-with'),
13
+ indent: require('./indent'),
14
+ last: require('./last'),
15
+ normalize: require('./normalize'),
16
+ pad: require('./pad'),
17
+ plainReplace: require('./plain-replace'),
18
+ plainReplaceAll: require('./plain-replace-all'),
19
+ repeat: require('./repeat'),
20
+ startsWith: require('./starts-with'),
21
+ uncapitalize: require('./uncapitalize')
22
+ };
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ var value = require('../../object/valid-value');
4
+
5
+ module.exports = function () {
6
+ var self = String(value(this)), l = self.length;
7
+ return l ? self[l - 1] : null;
8
+ };
@@ -0,0 +1,69 @@
1
+ 'use strict';
2
+
3
+ module.exports = { 0:{60:[,,{824:8814}],61:[,,{824:8800}],62:[,,{824:8815}],65:[,,{768:192,769:193,770:194,771:195,772:256,774:258,775:550,776:196,777:7842,778:197,780:461,783:512,785:514,803:7840,805:7680,808:260}],66:[,,{775:7682,803:7684,817:7686}],67:[,,{769:262,770:264,775:266,780:268,807:199}],68:[,,{775:7690,780:270,803:7692,807:7696,813:7698,817:7694}],69:[,,{768:200,769:201,770:202,771:7868,772:274,774:276,775:278,776:203,777:7866,780:282,783:516,785:518,803:7864,807:552,808:280,813:7704,816:7706}],70:[,,{775:7710}],71:[,,{769:500,770:284,772:7712,774:286,775:288,780:486,807:290}],72:[,,{770:292,775:7714,776:7718,780:542,803:7716,807:7720,814:7722}],73:[,,{768:204,769:205,770:206,771:296,772:298,774:300,775:304,776:207,777:7880,780:463,783:520,785:522,803:7882,808:302,816:7724}],74:[,,{770:308}],75:[,,{769:7728,780:488,803:7730,807:310,817:7732}],76:[,,{769:313,780:317,803:7734,807:315,813:7740,817:7738}],77:[,,{769:7742,775:7744,803:7746}],78:[,,{768:504,769:323,771:209,775:7748,780:327,803:7750,807:325,813:7754,817:7752}],79:[,,{768:210,769:211,770:212,771:213,772:332,774:334,775:558,776:214,777:7886,779:336,780:465,783:524,785:526,795:416,803:7884,808:490}],80:[,,{769:7764,775:7766}],82:[,,{769:340,775:7768,780:344,783:528,785:530,803:7770,807:342,817:7774}],83:[,,{769:346,770:348,775:7776,780:352,803:7778,806:536,807:350}],84:[,,{775:7786,780:356,803:7788,806:538,807:354,813:7792,817:7790}],85:[,,{768:217,769:218,770:219,771:360,772:362,774:364,776:220,777:7910,778:366,779:368,780:467,783:532,785:534,795:431,803:7908,804:7794,808:370,813:7798,816:7796}],86:[,,{771:7804,803:7806}],87:[,,{768:7808,769:7810,770:372,775:7814,776:7812,803:7816}],88:[,,{775:7818,776:7820}],89:[,,{768:7922,769:221,770:374,771:7928,772:562,775:7822,776:376,777:7926,803:7924}],90:[,,{769:377,770:7824,775:379,780:381,803:7826,817:7828}],97:[,,{768:224,769:225,770:226,771:227,772:257,774:259,775:551,776:228,777:7843,778:229,780:462,783:513,785:515,803:7841,805:7681,808:261}],98:[,,{775:7683,803:7685,817:7687}],99:[,,{769:263,770:265,775:267,780:269,807:231}],100:[,,{775:7691,780:271,803:7693,807:7697,813:7699,817:7695}],101:[,,{768:232,769:233,770:234,771:7869,772:275,774:277,775:279,776:235,777:7867,780:283,783:517,785:519,803:7865,807:553,808:281,813:7705,816:7707}],102:[,,{775:7711}],103:[,,{769:501,770:285,772:7713,774:287,775:289,780:487,807:291}],104:[,,{770:293,775:7715,776:7719,780:543,803:7717,807:7721,814:7723,817:7830}],105:[,,{768:236,769:237,770:238,771:297,772:299,774:301,776:239,777:7881,780:464,783:521,785:523,803:7883,808:303,816:7725}],106:[,,{770:309,780:496}],107:[,,{769:7729,780:489,803:7731,807:311,817:7733}],108:[,,{769:314,780:318,803:7735,807:316,813:7741,817:7739}],109:[,,{769:7743,775:7745,803:7747}],110:[,,{768:505,769:324,771:241,775:7749,780:328,803:7751,807:326,813:7755,817:7753}],111:[,,{768:242,769:243,770:244,771:245,772:333,774:335,775:559,776:246,777:7887,779:337,780:466,783:525,785:527,795:417,803:7885,808:491}],112:[,,{769:7765,775:7767}],114:[,,{769:341,775:7769,780:345,783:529,785:531,803:7771,807:343,817:7775}],115:[,,{769:347,770:349,775:7777,780:353,803:7779,806:537,807:351}],116:[,,{775:7787,776:7831,780:357,803:7789,806:539,807:355,813:7793,817:7791}],117:[,,{768:249,769:250,770:251,771:361,772:363,774:365,776:252,777:7911,778:367,779:369,780:468,783:533,785:535,795:432,803:7909,804:7795,808:371,813:7799,816:7797}],118:[,,{771:7805,803:7807}],119:[,,{768:7809,769:7811,770:373,775:7815,776:7813,778:7832,803:7817}],120:[,,{775:7819,776:7821}],121:[,,{768:7923,769:253,770:375,771:7929,772:563,775:7823,776:255,777:7927,778:7833,803:7925}],122:[,,{769:378,770:7825,775:380,780:382,803:7827,817:7829}],160:[[32],256],168:[[32,776],256,{768:8173,769:901,834:8129}],170:[[97],256],175:[[32,772],256],178:[[50],256],179:[[51],256],180:[[32,769],256],181:[[956],256],184:[[32,807],256],185:[[49],256],186:[[111],256],188:[[49,8260,52],256],189:[[49,8260,50],256],190:[[51,8260,52],256],192:[[65,768]],193:[[65,769]],194:[[65,770],,{768:7846,769:7844,771:7850,777:7848}],195:[[65,771]],196:[[65,776],,{772:478}],197:[[65,778],,{769:506}],198:[,,{769:508,772:482}],199:[[67,807],,{769:7688}],200:[[69,768]],201:[[69,769]],202:[[69,770],,{768:7872,769:7870,771:7876,777:7874}],203:[[69,776]],204:[[73,768]],205:[[73,769]],206:[[73,770]],207:[[73,776],,{769:7726}],209:[[78,771]],210:[[79,768]],211:[[79,769]],212:[[79,770],,{768:7890,769:7888,771:7894,777:7892}],213:[[79,771],,{769:7756,772:556,776:7758}],214:[[79,776],,{772:554}],216:[,,{769:510}],217:[[85,768]],218:[[85,769]],219:[[85,770]],220:[[85,776],,{768:475,769:471,772:469,780:473}],221:[[89,769]],224:[[97,768]],225:[[97,769]],226:[[97,770],,{768:7847,769:7845,771:7851,777:7849}],227:[[97,771]],228:[[97,776],,{772:479}],229:[[97,778],,{769:507}],230:[,,{769:509,772:483}],231:[[99,807],,{769:7689}],232:[[101,768]],233:[[101,769]],234:[[101,770],,{768:7873,769:7871,771:7877,777:7875}],235:[[101,776]],236:[[105,768]],237:[[105,769]],238:[[105,770]],239:[[105,776],,{769:7727}],241:[[110,771]],242:[[111,768]],243:[[111,769]],244:[[111,770],,{768:7891,769:7889,771:7895,777:7893}],245:[[111,771],,{769:7757,772:557,776:7759}],246:[[111,776],,{772:555}],248:[,,{769:511}],249:[[117,768]],250:[[117,769]],251:[[117,770]],252:[[117,776],,{768:476,769:472,772:470,780:474}],253:[[121,769]],255:[[121,776]]},
4
+ 256:{256:[[65,772]],257:[[97,772]],258:[[65,774],,{768:7856,769:7854,771:7860,777:7858}],259:[[97,774],,{768:7857,769:7855,771:7861,777:7859}],260:[[65,808]],261:[[97,808]],262:[[67,769]],263:[[99,769]],264:[[67,770]],265:[[99,770]],266:[[67,775]],267:[[99,775]],268:[[67,780]],269:[[99,780]],270:[[68,780]],271:[[100,780]],274:[[69,772],,{768:7700,769:7702}],275:[[101,772],,{768:7701,769:7703}],276:[[69,774]],277:[[101,774]],278:[[69,775]],279:[[101,775]],280:[[69,808]],281:[[101,808]],282:[[69,780]],283:[[101,780]],284:[[71,770]],285:[[103,770]],286:[[71,774]],287:[[103,774]],288:[[71,775]],289:[[103,775]],290:[[71,807]],291:[[103,807]],292:[[72,770]],293:[[104,770]],296:[[73,771]],297:[[105,771]],298:[[73,772]],299:[[105,772]],300:[[73,774]],301:[[105,774]],302:[[73,808]],303:[[105,808]],304:[[73,775]],306:[[73,74],256],307:[[105,106],256],308:[[74,770]],309:[[106,770]],310:[[75,807]],311:[[107,807]],313:[[76,769]],314:[[108,769]],315:[[76,807]],316:[[108,807]],317:[[76,780]],318:[[108,780]],319:[[76,183],256],320:[[108,183],256],323:[[78,769]],324:[[110,769]],325:[[78,807]],326:[[110,807]],327:[[78,780]],328:[[110,780]],329:[[700,110],256],332:[[79,772],,{768:7760,769:7762}],333:[[111,772],,{768:7761,769:7763}],334:[[79,774]],335:[[111,774]],336:[[79,779]],337:[[111,779]],340:[[82,769]],341:[[114,769]],342:[[82,807]],343:[[114,807]],344:[[82,780]],345:[[114,780]],346:[[83,769],,{775:7780}],347:[[115,769],,{775:7781}],348:[[83,770]],349:[[115,770]],350:[[83,807]],351:[[115,807]],352:[[83,780],,{775:7782}],353:[[115,780],,{775:7783}],354:[[84,807]],355:[[116,807]],356:[[84,780]],357:[[116,780]],360:[[85,771],,{769:7800}],361:[[117,771],,{769:7801}],362:[[85,772],,{776:7802}],363:[[117,772],,{776:7803}],364:[[85,774]],365:[[117,774]],366:[[85,778]],367:[[117,778]],368:[[85,779]],369:[[117,779]],370:[[85,808]],371:[[117,808]],372:[[87,770]],373:[[119,770]],374:[[89,770]],375:[[121,770]],376:[[89,776]],377:[[90,769]],378:[[122,769]],379:[[90,775]],380:[[122,775]],381:[[90,780]],382:[[122,780]],383:[[115],256,{775:7835}],416:[[79,795],,{768:7900,769:7898,771:7904,777:7902,803:7906}],417:[[111,795],,{768:7901,769:7899,771:7905,777:7903,803:7907}],431:[[85,795],,{768:7914,769:7912,771:7918,777:7916,803:7920}],432:[[117,795],,{768:7915,769:7913,771:7919,777:7917,803:7921}],439:[,,{780:494}],452:[[68,381],256],453:[[68,382],256],454:[[100,382],256],455:[[76,74],256],456:[[76,106],256],457:[[108,106],256],458:[[78,74],256],459:[[78,106],256],460:[[110,106],256],461:[[65,780]],462:[[97,780]],463:[[73,780]],464:[[105,780]],465:[[79,780]],466:[[111,780]],467:[[85,780]],468:[[117,780]],469:[[220,772]],470:[[252,772]],471:[[220,769]],472:[[252,769]],473:[[220,780]],474:[[252,780]],475:[[220,768]],476:[[252,768]],478:[[196,772]],479:[[228,772]],480:[[550,772]],481:[[551,772]],482:[[198,772]],483:[[230,772]],486:[[71,780]],487:[[103,780]],488:[[75,780]],489:[[107,780]],490:[[79,808],,{772:492}],491:[[111,808],,{772:493}],492:[[490,772]],493:[[491,772]],494:[[439,780]],495:[[658,780]],496:[[106,780]],497:[[68,90],256],498:[[68,122],256],499:[[100,122],256],500:[[71,769]],501:[[103,769]],504:[[78,768]],505:[[110,768]],506:[[197,769]],507:[[229,769]],508:[[198,769]],509:[[230,769]],510:[[216,769]],511:[[248,769]],66045:[,220]},
5
+ 512:{512:[[65,783]],513:[[97,783]],514:[[65,785]],515:[[97,785]],516:[[69,783]],517:[[101,783]],518:[[69,785]],519:[[101,785]],520:[[73,783]],521:[[105,783]],522:[[73,785]],523:[[105,785]],524:[[79,783]],525:[[111,783]],526:[[79,785]],527:[[111,785]],528:[[82,783]],529:[[114,783]],530:[[82,785]],531:[[114,785]],532:[[85,783]],533:[[117,783]],534:[[85,785]],535:[[117,785]],536:[[83,806]],537:[[115,806]],538:[[84,806]],539:[[116,806]],542:[[72,780]],543:[[104,780]],550:[[65,775],,{772:480}],551:[[97,775],,{772:481}],552:[[69,807],,{774:7708}],553:[[101,807],,{774:7709}],554:[[214,772]],555:[[246,772]],556:[[213,772]],557:[[245,772]],558:[[79,775],,{772:560}],559:[[111,775],,{772:561}],560:[[558,772]],561:[[559,772]],562:[[89,772]],563:[[121,772]],658:[,,{780:495}],688:[[104],256],689:[[614],256],690:[[106],256],691:[[114],256],692:[[633],256],693:[[635],256],694:[[641],256],695:[[119],256],696:[[121],256],728:[[32,774],256],729:[[32,775],256],730:[[32,778],256],731:[[32,808],256],732:[[32,771],256],733:[[32,779],256],736:[[611],256],737:[[108],256],738:[[115],256],739:[[120],256],740:[[661],256]},
6
+ 768:{768:[,230],769:[,230],770:[,230],771:[,230],772:[,230],773:[,230],774:[,230],775:[,230],776:[,230,{769:836}],777:[,230],778:[,230],779:[,230],780:[,230],781:[,230],782:[,230],783:[,230],784:[,230],785:[,230],786:[,230],787:[,230],788:[,230],789:[,232],790:[,220],791:[,220],792:[,220],793:[,220],794:[,232],795:[,216],796:[,220],797:[,220],798:[,220],799:[,220],800:[,220],801:[,202],802:[,202],803:[,220],804:[,220],805:[,220],806:[,220],807:[,202],808:[,202],809:[,220],810:[,220],811:[,220],812:[,220],813:[,220],814:[,220],815:[,220],816:[,220],817:[,220],818:[,220],819:[,220],820:[,1],821:[,1],822:[,1],823:[,1],824:[,1],825:[,220],826:[,220],827:[,220],828:[,220],829:[,230],830:[,230],831:[,230],832:[[768],230],833:[[769],230],834:[,230],835:[[787],230],836:[[776,769],230],837:[,240],838:[,230],839:[,220],840:[,220],841:[,220],842:[,230],843:[,230],844:[,230],845:[,220],846:[,220],848:[,230],849:[,230],850:[,230],851:[,220],852:[,220],853:[,220],854:[,220],855:[,230],856:[,232],857:[,220],858:[,220],859:[,230],860:[,233],861:[,234],862:[,234],863:[,233],864:[,234],865:[,234],866:[,233],867:[,230],868:[,230],869:[,230],870:[,230],871:[,230],872:[,230],873:[,230],874:[,230],875:[,230],876:[,230],877:[,230],878:[,230],879:[,230],884:[[697]],890:[[32,837],256],894:[[59]],900:[[32,769],256],901:[[168,769]],902:[[913,769]],903:[[183]],904:[[917,769]],905:[[919,769]],906:[[921,769]],908:[[927,769]],910:[[933,769]],911:[[937,769]],912:[[970,769]],913:[,,{768:8122,769:902,772:8121,774:8120,787:7944,788:7945,837:8124}],917:[,,{768:8136,769:904,787:7960,788:7961}],919:[,,{768:8138,769:905,787:7976,788:7977,837:8140}],921:[,,{768:8154,769:906,772:8153,774:8152,776:938,787:7992,788:7993}],927:[,,{768:8184,769:908,787:8008,788:8009}],929:[,,{788:8172}],933:[,,{768:8170,769:910,772:8169,774:8168,776:939,788:8025}],937:[,,{768:8186,769:911,787:8040,788:8041,837:8188}],938:[[921,776]],939:[[933,776]],940:[[945,769],,{837:8116}],941:[[949,769]],942:[[951,769],,{837:8132}],943:[[953,769]],944:[[971,769]],945:[,,{768:8048,769:940,772:8113,774:8112,787:7936,788:7937,834:8118,837:8115}],949:[,,{768:8050,769:941,787:7952,788:7953}],951:[,,{768:8052,769:942,787:7968,788:7969,834:8134,837:8131}],953:[,,{768:8054,769:943,772:8145,774:8144,776:970,787:7984,788:7985,834:8150}],959:[,,{768:8056,769:972,787:8000,788:8001}],961:[,,{787:8164,788:8165}],965:[,,{768:8058,769:973,772:8161,774:8160,776:971,787:8016,788:8017,834:8166}],969:[,,{768:8060,769:974,787:8032,788:8033,834:8182,837:8179}],970:[[953,776],,{768:8146,769:912,834:8151}],971:[[965,776],,{768:8162,769:944,834:8167}],972:[[959,769]],973:[[965,769]],974:[[969,769],,{837:8180}],976:[[946],256],977:[[952],256],978:[[933],256,{769:979,776:980}],979:[[978,769]],980:[[978,776]],981:[[966],256],982:[[960],256],1008:[[954],256],1009:[[961],256],1010:[[962],256],1012:[[920],256],1013:[[949],256],1017:[[931],256]},
7
+ 1024:{1024:[[1045,768]],1025:[[1045,776]],1027:[[1043,769]],1030:[,,{776:1031}],1031:[[1030,776]],1036:[[1050,769]],1037:[[1048,768]],1038:[[1059,774]],1040:[,,{774:1232,776:1234}],1043:[,,{769:1027}],1045:[,,{768:1024,774:1238,776:1025}],1046:[,,{774:1217,776:1244}],1047:[,,{776:1246}],1048:[,,{768:1037,772:1250,774:1049,776:1252}],1049:[[1048,774]],1050:[,,{769:1036}],1054:[,,{776:1254}],1059:[,,{772:1262,774:1038,776:1264,779:1266}],1063:[,,{776:1268}],1067:[,,{776:1272}],1069:[,,{776:1260}],1072:[,,{774:1233,776:1235}],1075:[,,{769:1107}],1077:[,,{768:1104,774:1239,776:1105}],1078:[,,{774:1218,776:1245}],1079:[,,{776:1247}],1080:[,,{768:1117,772:1251,774:1081,776:1253}],1081:[[1080,774]],1082:[,,{769:1116}],1086:[,,{776:1255}],1091:[,,{772:1263,774:1118,776:1265,779:1267}],1095:[,,{776:1269}],1099:[,,{776:1273}],1101:[,,{776:1261}],1104:[[1077,768]],1105:[[1077,776]],1107:[[1075,769]],1110:[,,{776:1111}],1111:[[1110,776]],1116:[[1082,769]],1117:[[1080,768]],1118:[[1091,774]],1140:[,,{783:1142}],1141:[,,{783:1143}],1142:[[1140,783]],1143:[[1141,783]],1155:[,230],1156:[,230],1157:[,230],1158:[,230],1159:[,230],1217:[[1046,774]],1218:[[1078,774]],1232:[[1040,774]],1233:[[1072,774]],1234:[[1040,776]],1235:[[1072,776]],1238:[[1045,774]],1239:[[1077,774]],1240:[,,{776:1242}],1241:[,,{776:1243}],1242:[[1240,776]],1243:[[1241,776]],1244:[[1046,776]],1245:[[1078,776]],1246:[[1047,776]],1247:[[1079,776]],1250:[[1048,772]],1251:[[1080,772]],1252:[[1048,776]],1253:[[1080,776]],1254:[[1054,776]],1255:[[1086,776]],1256:[,,{776:1258}],1257:[,,{776:1259}],1258:[[1256,776]],1259:[[1257,776]],1260:[[1069,776]],1261:[[1101,776]],1262:[[1059,772]],1263:[[1091,772]],1264:[[1059,776]],1265:[[1091,776]],1266:[[1059,779]],1267:[[1091,779]],1268:[[1063,776]],1269:[[1095,776]],1272:[[1067,776]],1273:[[1099,776]]},
8
+ 1280:{1415:[[1381,1410],256],1425:[,220],1426:[,230],1427:[,230],1428:[,230],1429:[,230],1430:[,220],1431:[,230],1432:[,230],1433:[,230],1434:[,222],1435:[,220],1436:[,230],1437:[,230],1438:[,230],1439:[,230],1440:[,230],1441:[,230],1442:[,220],1443:[,220],1444:[,220],1445:[,220],1446:[,220],1447:[,220],1448:[,230],1449:[,230],1450:[,220],1451:[,230],1452:[,230],1453:[,222],1454:[,228],1455:[,230],1456:[,10],1457:[,11],1458:[,12],1459:[,13],1460:[,14],1461:[,15],1462:[,16],1463:[,17],1464:[,18],1465:[,19],1466:[,19],1467:[,20],1468:[,21],1469:[,22],1471:[,23],1473:[,24],1474:[,25],1476:[,230],1477:[,220],1479:[,18]},
9
+ 1536:{1552:[,230],1553:[,230],1554:[,230],1555:[,230],1556:[,230],1557:[,230],1558:[,230],1559:[,230],1560:[,30],1561:[,31],1562:[,32],1570:[[1575,1619]],1571:[[1575,1620]],1572:[[1608,1620]],1573:[[1575,1621]],1574:[[1610,1620]],1575:[,,{1619:1570,1620:1571,1621:1573}],1608:[,,{1620:1572}],1610:[,,{1620:1574}],1611:[,27],1612:[,28],1613:[,29],1614:[,30],1615:[,31],1616:[,32],1617:[,33],1618:[,34],1619:[,230],1620:[,230],1621:[,220],1622:[,220],1623:[,230],1624:[,230],1625:[,230],1626:[,230],1627:[,230],1628:[,220],1629:[,230],1630:[,230],1631:[,220],1648:[,35],1653:[[1575,1652],256],1654:[[1608,1652],256],1655:[[1735,1652],256],1656:[[1610,1652],256],1728:[[1749,1620]],1729:[,,{1620:1730}],1730:[[1729,1620]],1746:[,,{1620:1747}],1747:[[1746,1620]],1749:[,,{1620:1728}],1750:[,230],1751:[,230],1752:[,230],1753:[,230],1754:[,230],1755:[,230],1756:[,230],1759:[,230],1760:[,230],1761:[,230],1762:[,230],1763:[,220],1764:[,230],1767:[,230],1768:[,230],1770:[,220],1771:[,230],1772:[,230],1773:[,220]},
10
+ 1792:{1809:[,36],1840:[,230],1841:[,220],1842:[,230],1843:[,230],1844:[,220],1845:[,230],1846:[,230],1847:[,220],1848:[,220],1849:[,220],1850:[,230],1851:[,220],1852:[,220],1853:[,230],1854:[,220],1855:[,230],1856:[,230],1857:[,230],1858:[,220],1859:[,230],1860:[,220],1861:[,230],1862:[,220],1863:[,230],1864:[,220],1865:[,230],1866:[,230],2027:[,230],2028:[,230],2029:[,230],2030:[,230],2031:[,230],2032:[,230],2033:[,230],2034:[,220],2035:[,230]},
11
+ 2048:{2070:[,230],2071:[,230],2072:[,230],2073:[,230],2075:[,230],2076:[,230],2077:[,230],2078:[,230],2079:[,230],2080:[,230],2081:[,230],2082:[,230],2083:[,230],2085:[,230],2086:[,230],2087:[,230],2089:[,230],2090:[,230],2091:[,230],2092:[,230],2093:[,230],2137:[,220],2138:[,220],2139:[,220],2276:[,230],2277:[,230],2278:[,220],2279:[,230],2280:[,230],2281:[,220],2282:[,230],2283:[,230],2284:[,230],2285:[,220],2286:[,220],2287:[,220],2288:[,27],2289:[,28],2290:[,29],2291:[,230],2292:[,230],2293:[,230],2294:[,220],2295:[,230],2296:[,230],2297:[,220],2298:[,220],2299:[,230],2300:[,230],2301:[,230],2302:[,230]},
12
+ 2304:{2344:[,,{2364:2345}],2345:[[2344,2364]],2352:[,,{2364:2353}],2353:[[2352,2364]],2355:[,,{2364:2356}],2356:[[2355,2364]],2364:[,7],2381:[,9],2385:[,230],2386:[,220],2387:[,230],2388:[,230],2392:[[2325,2364],512],2393:[[2326,2364],512],2394:[[2327,2364],512],2395:[[2332,2364],512],2396:[[2337,2364],512],2397:[[2338,2364],512],2398:[[2347,2364],512],2399:[[2351,2364],512],2492:[,7],2503:[,,{2494:2507,2519:2508}],2507:[[2503,2494]],2508:[[2503,2519]],2509:[,9],2524:[[2465,2492],512],2525:[[2466,2492],512],2527:[[2479,2492],512]},
13
+ 2560:{2611:[[2610,2620],512],2614:[[2616,2620],512],2620:[,7],2637:[,9],2649:[[2582,2620],512],2650:[[2583,2620],512],2651:[[2588,2620],512],2654:[[2603,2620],512],2748:[,7],2765:[,9],68109:[,220],68111:[,230],68152:[,230],68153:[,1],68154:[,220],68159:[,9]},
14
+ 2816:{2876:[,7],2887:[,,{2878:2891,2902:2888,2903:2892}],2888:[[2887,2902]],2891:[[2887,2878]],2892:[[2887,2903]],2893:[,9],2908:[[2849,2876],512],2909:[[2850,2876],512],2962:[,,{3031:2964}],2964:[[2962,3031]],3014:[,,{3006:3018,3031:3020}],3015:[,,{3006:3019}],3018:[[3014,3006]],3019:[[3015,3006]],3020:[[3014,3031]],3021:[,9]},
15
+ 3072:{3142:[,,{3158:3144}],3144:[[3142,3158]],3149:[,9],3157:[,84],3158:[,91],3260:[,7],3263:[,,{3285:3264}],3264:[[3263,3285]],3270:[,,{3266:3274,3285:3271,3286:3272}],3271:[[3270,3285]],3272:[[3270,3286]],3274:[[3270,3266],,{3285:3275}],3275:[[3274,3285]],3277:[,9]},
16
+ 3328:{3398:[,,{3390:3402,3415:3404}],3399:[,,{3390:3403}],3402:[[3398,3390]],3403:[[3399,3390]],3404:[[3398,3415]],3405:[,9],3530:[,9],3545:[,,{3530:3546,3535:3548,3551:3550}],3546:[[3545,3530]],3548:[[3545,3535],,{3530:3549}],3549:[[3548,3530]],3550:[[3545,3551]]},
17
+ 3584:{3635:[[3661,3634],256],3640:[,103],3641:[,103],3642:[,9],3656:[,107],3657:[,107],3658:[,107],3659:[,107],3763:[[3789,3762],256],3768:[,118],3769:[,118],3784:[,122],3785:[,122],3786:[,122],3787:[,122],3804:[[3755,3737],256],3805:[[3755,3745],256]},
18
+ 3840:{3852:[[3851],256],3864:[,220],3865:[,220],3893:[,220],3895:[,220],3897:[,216],3907:[[3906,4023],512],3917:[[3916,4023],512],3922:[[3921,4023],512],3927:[[3926,4023],512],3932:[[3931,4023],512],3945:[[3904,4021],512],3953:[,129],3954:[,130],3955:[[3953,3954],512],3956:[,132],3957:[[3953,3956],512],3958:[[4018,3968],512],3959:[[4018,3969],256],3960:[[4019,3968],512],3961:[[4019,3969],256],3962:[,130],3963:[,130],3964:[,130],3965:[,130],3968:[,130],3969:[[3953,3968],512],3970:[,230],3971:[,230],3972:[,9],3974:[,230],3975:[,230],3987:[[3986,4023],512],3997:[[3996,4023],512],4002:[[4001,4023],512],4007:[[4006,4023],512],4012:[[4011,4023],512],4025:[[3984,4021],512],4038:[,220]},
19
+ 4096:{4133:[,,{4142:4134}],4134:[[4133,4142]],4151:[,7],4153:[,9],4154:[,9],4237:[,220],4348:[[4316],256],69702:[,9],69785:[,,{69818:69786}],69786:[[69785,69818]],69787:[,,{69818:69788}],69788:[[69787,69818]],69797:[,,{69818:69803}],69803:[[69797,69818]],69817:[,9],69818:[,7]},
20
+ 4352:{69888:[,230],69889:[,230],69890:[,230],69934:[[69937,69927]],69935:[[69938,69927]],69937:[,,{69927:69934}],69938:[,,{69927:69935}],69939:[,9],69940:[,9],70080:[,9]},
21
+ 4864:{4957:[,230],4958:[,230],4959:[,230]},
22
+ 5632:{71350:[,9],71351:[,7]},
23
+ 5888:{5908:[,9],5940:[,9],6098:[,9],6109:[,230]},
24
+ 6144:{6313:[,228]},
25
+ 6400:{6457:[,222],6458:[,230],6459:[,220]},
26
+ 6656:{6679:[,230],6680:[,220],6752:[,9],6773:[,230],6774:[,230],6775:[,230],6776:[,230],6777:[,230],6778:[,230],6779:[,230],6780:[,230],6783:[,220]},
27
+ 6912:{6917:[,,{6965:6918}],6918:[[6917,6965]],6919:[,,{6965:6920}],6920:[[6919,6965]],6921:[,,{6965:6922}],6922:[[6921,6965]],6923:[,,{6965:6924}],6924:[[6923,6965]],6925:[,,{6965:6926}],6926:[[6925,6965]],6929:[,,{6965:6930}],6930:[[6929,6965]],6964:[,7],6970:[,,{6965:6971}],6971:[[6970,6965]],6972:[,,{6965:6973}],6973:[[6972,6965]],6974:[,,{6965:6976}],6975:[,,{6965:6977}],6976:[[6974,6965]],6977:[[6975,6965]],6978:[,,{6965:6979}],6979:[[6978,6965]],6980:[,9],7019:[,230],7020:[,220],7021:[,230],7022:[,230],7023:[,230],7024:[,230],7025:[,230],7026:[,230],7027:[,230],7082:[,9],7083:[,9],7142:[,7],7154:[,9],7155:[,9]},
28
+ 7168:{7223:[,7],7376:[,230],7377:[,230],7378:[,230],7380:[,1],7381:[,220],7382:[,220],7383:[,220],7384:[,220],7385:[,220],7386:[,230],7387:[,230],7388:[,220],7389:[,220],7390:[,220],7391:[,220],7392:[,230],7394:[,1],7395:[,1],7396:[,1],7397:[,1],7398:[,1],7399:[,1],7400:[,1],7405:[,220],7412:[,230]},
29
+ 7424:{7468:[[65],256],7469:[[198],256],7470:[[66],256],7472:[[68],256],7473:[[69],256],7474:[[398],256],7475:[[71],256],7476:[[72],256],7477:[[73],256],7478:[[74],256],7479:[[75],256],7480:[[76],256],7481:[[77],256],7482:[[78],256],7484:[[79],256],7485:[[546],256],7486:[[80],256],7487:[[82],256],7488:[[84],256],7489:[[85],256],7490:[[87],256],7491:[[97],256],7492:[[592],256],7493:[[593],256],7494:[[7426],256],7495:[[98],256],7496:[[100],256],7497:[[101],256],7498:[[601],256],7499:[[603],256],7500:[[604],256],7501:[[103],256],7503:[[107],256],7504:[[109],256],7505:[[331],256],7506:[[111],256],7507:[[596],256],7508:[[7446],256],7509:[[7447],256],7510:[[112],256],7511:[[116],256],7512:[[117],256],7513:[[7453],256],7514:[[623],256],7515:[[118],256],7516:[[7461],256],7517:[[946],256],7518:[[947],256],7519:[[948],256],7520:[[966],256],7521:[[967],256],7522:[[105],256],7523:[[114],256],7524:[[117],256],7525:[[118],256],7526:[[946],256],7527:[[947],256],7528:[[961],256],7529:[[966],256],7530:[[967],256],7544:[[1085],256],7579:[[594],256],7580:[[99],256],7581:[[597],256],7582:[[240],256],7583:[[604],256],7584:[[102],256],7585:[[607],256],7586:[[609],256],7587:[[613],256],7588:[[616],256],7589:[[617],256],7590:[[618],256],7591:[[7547],256],7592:[[669],256],7593:[[621],256],7594:[[7557],256],7595:[[671],256],7596:[[625],256],7597:[[624],256],7598:[[626],256],7599:[[627],256],7600:[[628],256],7601:[[629],256],7602:[[632],256],7603:[[642],256],7604:[[643],256],7605:[[427],256],7606:[[649],256],7607:[[650],256],7608:[[7452],256],7609:[[651],256],7610:[[652],256],7611:[[122],256],7612:[[656],256],7613:[[657],256],7614:[[658],256],7615:[[952],256],7616:[,230],7617:[,230],7618:[,220],7619:[,230],7620:[,230],7621:[,230],7622:[,230],7623:[,230],7624:[,230],7625:[,230],7626:[,220],7627:[,230],7628:[,230],7629:[,234],7630:[,214],7631:[,220],7632:[,202],7633:[,230],7634:[,230],7635:[,230],7636:[,230],7637:[,230],7638:[,230],7639:[,230],7640:[,230],7641:[,230],7642:[,230],7643:[,230],7644:[,230],7645:[,230],7646:[,230],7647:[,230],7648:[,230],7649:[,230],7650:[,230],7651:[,230],7652:[,230],7653:[,230],7654:[,230],7676:[,233],7677:[,220],7678:[,230],7679:[,220]},
30
+ 7680:{7680:[[65,805]],7681:[[97,805]],7682:[[66,775]],7683:[[98,775]],7684:[[66,803]],7685:[[98,803]],7686:[[66,817]],7687:[[98,817]],7688:[[199,769]],7689:[[231,769]],7690:[[68,775]],7691:[[100,775]],7692:[[68,803]],7693:[[100,803]],7694:[[68,817]],7695:[[100,817]],7696:[[68,807]],7697:[[100,807]],7698:[[68,813]],7699:[[100,813]],7700:[[274,768]],7701:[[275,768]],7702:[[274,769]],7703:[[275,769]],7704:[[69,813]],7705:[[101,813]],7706:[[69,816]],7707:[[101,816]],7708:[[552,774]],7709:[[553,774]],7710:[[70,775]],7711:[[102,775]],7712:[[71,772]],7713:[[103,772]],7714:[[72,775]],7715:[[104,775]],7716:[[72,803]],7717:[[104,803]],7718:[[72,776]],7719:[[104,776]],7720:[[72,807]],7721:[[104,807]],7722:[[72,814]],7723:[[104,814]],7724:[[73,816]],7725:[[105,816]],7726:[[207,769]],7727:[[239,769]],7728:[[75,769]],7729:[[107,769]],7730:[[75,803]],7731:[[107,803]],7732:[[75,817]],7733:[[107,817]],7734:[[76,803],,{772:7736}],7735:[[108,803],,{772:7737}],7736:[[7734,772]],7737:[[7735,772]],7738:[[76,817]],7739:[[108,817]],7740:[[76,813]],7741:[[108,813]],7742:[[77,769]],7743:[[109,769]],7744:[[77,775]],7745:[[109,775]],7746:[[77,803]],7747:[[109,803]],7748:[[78,775]],7749:[[110,775]],7750:[[78,803]],7751:[[110,803]],7752:[[78,817]],7753:[[110,817]],7754:[[78,813]],7755:[[110,813]],7756:[[213,769]],7757:[[245,769]],7758:[[213,776]],7759:[[245,776]],7760:[[332,768]],7761:[[333,768]],7762:[[332,769]],7763:[[333,769]],7764:[[80,769]],7765:[[112,769]],7766:[[80,775]],7767:[[112,775]],7768:[[82,775]],7769:[[114,775]],7770:[[82,803],,{772:7772}],7771:[[114,803],,{772:7773}],7772:[[7770,772]],7773:[[7771,772]],7774:[[82,817]],7775:[[114,817]],7776:[[83,775]],7777:[[115,775]],7778:[[83,803],,{775:7784}],7779:[[115,803],,{775:7785}],7780:[[346,775]],7781:[[347,775]],7782:[[352,775]],7783:[[353,775]],7784:[[7778,775]],7785:[[7779,775]],7786:[[84,775]],7787:[[116,775]],7788:[[84,803]],7789:[[116,803]],7790:[[84,817]],7791:[[116,817]],7792:[[84,813]],7793:[[116,813]],7794:[[85,804]],7795:[[117,804]],7796:[[85,816]],7797:[[117,816]],7798:[[85,813]],7799:[[117,813]],7800:[[360,769]],7801:[[361,769]],7802:[[362,776]],7803:[[363,776]],7804:[[86,771]],7805:[[118,771]],7806:[[86,803]],7807:[[118,803]],7808:[[87,768]],7809:[[119,768]],7810:[[87,769]],7811:[[119,769]],7812:[[87,776]],7813:[[119,776]],7814:[[87,775]],7815:[[119,775]],7816:[[87,803]],7817:[[119,803]],7818:[[88,775]],7819:[[120,775]],7820:[[88,776]],7821:[[120,776]],7822:[[89,775]],7823:[[121,775]],7824:[[90,770]],7825:[[122,770]],7826:[[90,803]],7827:[[122,803]],7828:[[90,817]],7829:[[122,817]],7830:[[104,817]],7831:[[116,776]],7832:[[119,778]],7833:[[121,778]],7834:[[97,702],256],7835:[[383,775]],7840:[[65,803],,{770:7852,774:7862}],7841:[[97,803],,{770:7853,774:7863}],7842:[[65,777]],7843:[[97,777]],7844:[[194,769]],7845:[[226,769]],7846:[[194,768]],7847:[[226,768]],7848:[[194,777]],7849:[[226,777]],7850:[[194,771]],7851:[[226,771]],7852:[[7840,770]],7853:[[7841,770]],7854:[[258,769]],7855:[[259,769]],7856:[[258,768]],7857:[[259,768]],7858:[[258,777]],7859:[[259,777]],7860:[[258,771]],7861:[[259,771]],7862:[[7840,774]],7863:[[7841,774]],7864:[[69,803],,{770:7878}],7865:[[101,803],,{770:7879}],7866:[[69,777]],7867:[[101,777]],7868:[[69,771]],7869:[[101,771]],7870:[[202,769]],7871:[[234,769]],7872:[[202,768]],7873:[[234,768]],7874:[[202,777]],7875:[[234,777]],7876:[[202,771]],7877:[[234,771]],7878:[[7864,770]],7879:[[7865,770]],7880:[[73,777]],7881:[[105,777]],7882:[[73,803]],7883:[[105,803]],7884:[[79,803],,{770:7896}],7885:[[111,803],,{770:7897}],7886:[[79,777]],7887:[[111,777]],7888:[[212,769]],7889:[[244,769]],7890:[[212,768]],7891:[[244,768]],7892:[[212,777]],7893:[[244,777]],7894:[[212,771]],7895:[[244,771]],7896:[[7884,770]],7897:[[7885,770]],7898:[[416,769]],7899:[[417,769]],7900:[[416,768]],7901:[[417,768]],7902:[[416,777]],7903:[[417,777]],7904:[[416,771]],7905:[[417,771]],7906:[[416,803]],7907:[[417,803]],7908:[[85,803]],7909:[[117,803]],7910:[[85,777]],7911:[[117,777]],7912:[[431,769]],7913:[[432,769]],7914:[[431,768]],7915:[[432,768]],7916:[[431,777]],7917:[[432,777]],7918:[[431,771]],7919:[[432,771]],7920:[[431,803]],7921:[[432,803]],7922:[[89,768]],7923:[[121,768]],7924:[[89,803]],7925:[[121,803]],7926:[[89,777]],7927:[[121,777]],7928:[[89,771]],7929:[[121,771]]},
31
+ 7936:{7936:[[945,787],,{768:7938,769:7940,834:7942,837:8064}],7937:[[945,788],,{768:7939,769:7941,834:7943,837:8065}],7938:[[7936,768],,{837:8066}],7939:[[7937,768],,{837:8067}],7940:[[7936,769],,{837:8068}],7941:[[7937,769],,{837:8069}],7942:[[7936,834],,{837:8070}],7943:[[7937,834],,{837:8071}],7944:[[913,787],,{768:7946,769:7948,834:7950,837:8072}],7945:[[913,788],,{768:7947,769:7949,834:7951,837:8073}],7946:[[7944,768],,{837:8074}],7947:[[7945,768],,{837:8075}],7948:[[7944,769],,{837:8076}],7949:[[7945,769],,{837:8077}],7950:[[7944,834],,{837:8078}],7951:[[7945,834],,{837:8079}],7952:[[949,787],,{768:7954,769:7956}],7953:[[949,788],,{768:7955,769:7957}],7954:[[7952,768]],7955:[[7953,768]],7956:[[7952,769]],7957:[[7953,769]],7960:[[917,787],,{768:7962,769:7964}],7961:[[917,788],,{768:7963,769:7965}],7962:[[7960,768]],7963:[[7961,768]],7964:[[7960,769]],7965:[[7961,769]],7968:[[951,787],,{768:7970,769:7972,834:7974,837:8080}],7969:[[951,788],,{768:7971,769:7973,834:7975,837:8081}],7970:[[7968,768],,{837:8082}],7971:[[7969,768],,{837:8083}],7972:[[7968,769],,{837:8084}],7973:[[7969,769],,{837:8085}],7974:[[7968,834],,{837:8086}],7975:[[7969,834],,{837:8087}],7976:[[919,787],,{768:7978,769:7980,834:7982,837:8088}],7977:[[919,788],,{768:7979,769:7981,834:7983,837:8089}],7978:[[7976,768],,{837:8090}],7979:[[7977,768],,{837:8091}],7980:[[7976,769],,{837:8092}],7981:[[7977,769],,{837:8093}],7982:[[7976,834],,{837:8094}],7983:[[7977,834],,{837:8095}],7984:[[953,787],,{768:7986,769:7988,834:7990}],7985:[[953,788],,{768:7987,769:7989,834:7991}],7986:[[7984,768]],7987:[[7985,768]],7988:[[7984,769]],7989:[[7985,769]],7990:[[7984,834]],7991:[[7985,834]],7992:[[921,787],,{768:7994,769:7996,834:7998}],7993:[[921,788],,{768:7995,769:7997,834:7999}],7994:[[7992,768]],7995:[[7993,768]],7996:[[7992,769]],7997:[[7993,769]],7998:[[7992,834]],7999:[[7993,834]],8000:[[959,787],,{768:8002,769:8004}],8001:[[959,788],,{768:8003,769:8005}],8002:[[8000,768]],8003:[[8001,768]],8004:[[8000,769]],8005:[[8001,769]],8008:[[927,787],,{768:8010,769:8012}],8009:[[927,788],,{768:8011,769:8013}],8010:[[8008,768]],8011:[[8009,768]],8012:[[8008,769]],8013:[[8009,769]],8016:[[965,787],,{768:8018,769:8020,834:8022}],8017:[[965,788],,{768:8019,769:8021,834:8023}],8018:[[8016,768]],8019:[[8017,768]],8020:[[8016,769]],8021:[[8017,769]],8022:[[8016,834]],8023:[[8017,834]],8025:[[933,788],,{768:8027,769:8029,834:8031}],8027:[[8025,768]],8029:[[8025,769]],8031:[[8025,834]],8032:[[969,787],,{768:8034,769:8036,834:8038,837:8096}],8033:[[969,788],,{768:8035,769:8037,834:8039,837:8097}],8034:[[8032,768],,{837:8098}],8035:[[8033,768],,{837:8099}],8036:[[8032,769],,{837:8100}],8037:[[8033,769],,{837:8101}],8038:[[8032,834],,{837:8102}],8039:[[8033,834],,{837:8103}],8040:[[937,787],,{768:8042,769:8044,834:8046,837:8104}],8041:[[937,788],,{768:8043,769:8045,834:8047,837:8105}],8042:[[8040,768],,{837:8106}],8043:[[8041,768],,{837:8107}],8044:[[8040,769],,{837:8108}],8045:[[8041,769],,{837:8109}],8046:[[8040,834],,{837:8110}],8047:[[8041,834],,{837:8111}],8048:[[945,768],,{837:8114}],8049:[[940]],8050:[[949,768]],8051:[[941]],8052:[[951,768],,{837:8130}],8053:[[942]],8054:[[953,768]],8055:[[943]],8056:[[959,768]],8057:[[972]],8058:[[965,768]],8059:[[973]],8060:[[969,768],,{837:8178}],8061:[[974]],8064:[[7936,837]],8065:[[7937,837]],8066:[[7938,837]],8067:[[7939,837]],8068:[[7940,837]],8069:[[7941,837]],8070:[[7942,837]],8071:[[7943,837]],8072:[[7944,837]],8073:[[7945,837]],8074:[[7946,837]],8075:[[7947,837]],8076:[[7948,837]],8077:[[7949,837]],8078:[[7950,837]],8079:[[7951,837]],8080:[[7968,837]],8081:[[7969,837]],8082:[[7970,837]],8083:[[7971,837]],8084:[[7972,837]],8085:[[7973,837]],8086:[[7974,837]],8087:[[7975,837]],8088:[[7976,837]],8089:[[7977,837]],8090:[[7978,837]],8091:[[7979,837]],8092:[[7980,837]],8093:[[7981,837]],8094:[[7982,837]],8095:[[7983,837]],8096:[[8032,837]],8097:[[8033,837]],8098:[[8034,837]],8099:[[8035,837]],8100:[[8036,837]],8101:[[8037,837]],8102:[[8038,837]],8103:[[8039,837]],8104:[[8040,837]],8105:[[8041,837]],8106:[[8042,837]],8107:[[8043,837]],8108:[[8044,837]],8109:[[8045,837]],8110:[[8046,837]],8111:[[8047,837]],8112:[[945,774]],8113:[[945,772]],8114:[[8048,837]],8115:[[945,837]],8116:[[940,837]],8118:[[945,834],,{837:8119}],8119:[[8118,837]],8120:[[913,774]],8121:[[913,772]],8122:[[913,768]],8123:[[902]],8124:[[913,837]],8125:[[32,787],256],8126:[[953]],8127:[[32,787],256,{768:8141,769:8142,834:8143}],8128:[[32,834],256],8129:[[168,834]],8130:[[8052,837]],8131:[[951,837]],8132:[[942,837]],8134:[[951,834],,{837:8135}],8135:[[8134,837]],8136:[[917,768]],8137:[[904]],8138:[[919,768]],8139:[[905]],8140:[[919,837]],8141:[[8127,768]],8142:[[8127,769]],8143:[[8127,834]],8144:[[953,774]],8145:[[953,772]],8146:[[970,768]],8147:[[912]],8150:[[953,834]],8151:[[970,834]],8152:[[921,774]],8153:[[921,772]],8154:[[921,768]],8155:[[906]],8157:[[8190,768]],8158:[[8190,769]],8159:[[8190,834]],8160:[[965,774]],8161:[[965,772]],8162:[[971,768]],8163:[[944]],8164:[[961,787]],8165:[[961,788]],8166:[[965,834]],8167:[[971,834]],8168:[[933,774]],8169:[[933,772]],8170:[[933,768]],8171:[[910]],8172:[[929,788]],8173:[[168,768]],8174:[[901]],8175:[[96]],8178:[[8060,837]],8179:[[969,837]],8180:[[974,837]],8182:[[969,834],,{837:8183}],8183:[[8182,837]],8184:[[927,768]],8185:[[908]],8186:[[937,768]],8187:[[911]],8188:[[937,837]],8189:[[180]],8190:[[32,788],256,{768:8157,769:8158,834:8159}]},
32
+ 8192:{8192:[[8194]],8193:[[8195]],8194:[[32],256],8195:[[32],256],8196:[[32],256],8197:[[32],256],8198:[[32],256],8199:[[32],256],8200:[[32],256],8201:[[32],256],8202:[[32],256],8209:[[8208],256],8215:[[32,819],256],8228:[[46],256],8229:[[46,46],256],8230:[[46,46,46],256],8239:[[32],256],8243:[[8242,8242],256],8244:[[8242,8242,8242],256],8246:[[8245,8245],256],8247:[[8245,8245,8245],256],8252:[[33,33],256],8254:[[32,773],256],8263:[[63,63],256],8264:[[63,33],256],8265:[[33,63],256],8279:[[8242,8242,8242,8242],256],8287:[[32],256],8304:[[48],256],8305:[[105],256],8308:[[52],256],8309:[[53],256],8310:[[54],256],8311:[[55],256],8312:[[56],256],8313:[[57],256],8314:[[43],256],8315:[[8722],256],8316:[[61],256],8317:[[40],256],8318:[[41],256],8319:[[110],256],8320:[[48],256],8321:[[49],256],8322:[[50],256],8323:[[51],256],8324:[[52],256],8325:[[53],256],8326:[[54],256],8327:[[55],256],8328:[[56],256],8329:[[57],256],8330:[[43],256],8331:[[8722],256],8332:[[61],256],8333:[[40],256],8334:[[41],256],8336:[[97],256],8337:[[101],256],8338:[[111],256],8339:[[120],256],8340:[[601],256],8341:[[104],256],8342:[[107],256],8343:[[108],256],8344:[[109],256],8345:[[110],256],8346:[[112],256],8347:[[115],256],8348:[[116],256],8360:[[82,115],256],8400:[,230],8401:[,230],8402:[,1],8403:[,1],8404:[,230],8405:[,230],8406:[,230],8407:[,230],8408:[,1],8409:[,1],8410:[,1],8411:[,230],8412:[,230],8417:[,230],8421:[,1],8422:[,1],8423:[,230],8424:[,220],8425:[,230],8426:[,1],8427:[,1],8428:[,220],8429:[,220],8430:[,220],8431:[,220],8432:[,230]},
33
+ 8448:{8448:[[97,47,99],256],8449:[[97,47,115],256],8450:[[67],256],8451:[[176,67],256],8453:[[99,47,111],256],8454:[[99,47,117],256],8455:[[400],256],8457:[[176,70],256],8458:[[103],256],8459:[[72],256],8460:[[72],256],8461:[[72],256],8462:[[104],256],8463:[[295],256],8464:[[73],256],8465:[[73],256],8466:[[76],256],8467:[[108],256],8469:[[78],256],8470:[[78,111],256],8473:[[80],256],8474:[[81],256],8475:[[82],256],8476:[[82],256],8477:[[82],256],8480:[[83,77],256],8481:[[84,69,76],256],8482:[[84,77],256],8484:[[90],256],8486:[[937]],8488:[[90],256],8490:[[75]],8491:[[197]],8492:[[66],256],8493:[[67],256],8495:[[101],256],8496:[[69],256],8497:[[70],256],8499:[[77],256],8500:[[111],256],8501:[[1488],256],8502:[[1489],256],8503:[[1490],256],8504:[[1491],256],8505:[[105],256],8507:[[70,65,88],256],8508:[[960],256],8509:[[947],256],8510:[[915],256],8511:[[928],256],8512:[[8721],256],8517:[[68],256],8518:[[100],256],8519:[[101],256],8520:[[105],256],8521:[[106],256],8528:[[49,8260,55],256],8529:[[49,8260,57],256],8530:[[49,8260,49,48],256],8531:[[49,8260,51],256],8532:[[50,8260,51],256],8533:[[49,8260,53],256],8534:[[50,8260,53],256],8535:[[51,8260,53],256],8536:[[52,8260,53],256],8537:[[49,8260,54],256],8538:[[53,8260,54],256],8539:[[49,8260,56],256],8540:[[51,8260,56],256],8541:[[53,8260,56],256],8542:[[55,8260,56],256],8543:[[49,8260],256],8544:[[73],256],8545:[[73,73],256],8546:[[73,73,73],256],8547:[[73,86],256],8548:[[86],256],8549:[[86,73],256],8550:[[86,73,73],256],8551:[[86,73,73,73],256],8552:[[73,88],256],8553:[[88],256],8554:[[88,73],256],8555:[[88,73,73],256],8556:[[76],256],8557:[[67],256],8558:[[68],256],8559:[[77],256],8560:[[105],256],8561:[[105,105],256],8562:[[105,105,105],256],8563:[[105,118],256],8564:[[118],256],8565:[[118,105],256],8566:[[118,105,105],256],8567:[[118,105,105,105],256],8568:[[105,120],256],8569:[[120],256],8570:[[120,105],256],8571:[[120,105,105],256],8572:[[108],256],8573:[[99],256],8574:[[100],256],8575:[[109],256],8585:[[48,8260,51],256],8592:[,,{824:8602}],8594:[,,{824:8603}],8596:[,,{824:8622}],8602:[[8592,824]],8603:[[8594,824]],8622:[[8596,824]],8653:[[8656,824]],8654:[[8660,824]],8655:[[8658,824]],8656:[,,{824:8653}],8658:[,,{824:8655}],8660:[,,{824:8654}]},
34
+ 8704:{8707:[,,{824:8708}],8708:[[8707,824]],8712:[,,{824:8713}],8713:[[8712,824]],8715:[,,{824:8716}],8716:[[8715,824]],8739:[,,{824:8740}],8740:[[8739,824]],8741:[,,{824:8742}],8742:[[8741,824]],8748:[[8747,8747],256],8749:[[8747,8747,8747],256],8751:[[8750,8750],256],8752:[[8750,8750,8750],256],8764:[,,{824:8769}],8769:[[8764,824]],8771:[,,{824:8772}],8772:[[8771,824]],8773:[,,{824:8775}],8775:[[8773,824]],8776:[,,{824:8777}],8777:[[8776,824]],8781:[,,{824:8813}],8800:[[61,824]],8801:[,,{824:8802}],8802:[[8801,824]],8804:[,,{824:8816}],8805:[,,{824:8817}],8813:[[8781,824]],8814:[[60,824]],8815:[[62,824]],8816:[[8804,824]],8817:[[8805,824]],8818:[,,{824:8820}],8819:[,,{824:8821}],8820:[[8818,824]],8821:[[8819,824]],8822:[,,{824:8824}],8823:[,,{824:8825}],8824:[[8822,824]],8825:[[8823,824]],8826:[,,{824:8832}],8827:[,,{824:8833}],8828:[,,{824:8928}],8829:[,,{824:8929}],8832:[[8826,824]],8833:[[8827,824]],8834:[,,{824:8836}],8835:[,,{824:8837}],8836:[[8834,824]],8837:[[8835,824]],8838:[,,{824:8840}],8839:[,,{824:8841}],8840:[[8838,824]],8841:[[8839,824]],8849:[,,{824:8930}],8850:[,,{824:8931}],8866:[,,{824:8876}],8872:[,,{824:8877}],8873:[,,{824:8878}],8875:[,,{824:8879}],8876:[[8866,824]],8877:[[8872,824]],8878:[[8873,824]],8879:[[8875,824]],8882:[,,{824:8938}],8883:[,,{824:8939}],8884:[,,{824:8940}],8885:[,,{824:8941}],8928:[[8828,824]],8929:[[8829,824]],8930:[[8849,824]],8931:[[8850,824]],8938:[[8882,824]],8939:[[8883,824]],8940:[[8884,824]],8941:[[8885,824]]},
35
+ 8960:{9001:[[12296]],9002:[[12297]]},
36
+ 9216:{9312:[[49],256],9313:[[50],256],9314:[[51],256],9315:[[52],256],9316:[[53],256],9317:[[54],256],9318:[[55],256],9319:[[56],256],9320:[[57],256],9321:[[49,48],256],9322:[[49,49],256],9323:[[49,50],256],9324:[[49,51],256],9325:[[49,52],256],9326:[[49,53],256],9327:[[49,54],256],9328:[[49,55],256],9329:[[49,56],256],9330:[[49,57],256],9331:[[50,48],256],9332:[[40,49,41],256],9333:[[40,50,41],256],9334:[[40,51,41],256],9335:[[40,52,41],256],9336:[[40,53,41],256],9337:[[40,54,41],256],9338:[[40,55,41],256],9339:[[40,56,41],256],9340:[[40,57,41],256],9341:[[40,49,48,41],256],9342:[[40,49,49,41],256],9343:[[40,49,50,41],256],9344:[[40,49,51,41],256],9345:[[40,49,52,41],256],9346:[[40,49,53,41],256],9347:[[40,49,54,41],256],9348:[[40,49,55,41],256],9349:[[40,49,56,41],256],9350:[[40,49,57,41],256],9351:[[40,50,48,41],256],9352:[[49,46],256],9353:[[50,46],256],9354:[[51,46],256],9355:[[52,46],256],9356:[[53,46],256],9357:[[54,46],256],9358:[[55,46],256],9359:[[56,46],256],9360:[[57,46],256],9361:[[49,48,46],256],9362:[[49,49,46],256],9363:[[49,50,46],256],9364:[[49,51,46],256],9365:[[49,52,46],256],9366:[[49,53,46],256],9367:[[49,54,46],256],9368:[[49,55,46],256],9369:[[49,56,46],256],9370:[[49,57,46],256],9371:[[50,48,46],256],9372:[[40,97,41],256],9373:[[40,98,41],256],9374:[[40,99,41],256],9375:[[40,100,41],256],9376:[[40,101,41],256],9377:[[40,102,41],256],9378:[[40,103,41],256],9379:[[40,104,41],256],9380:[[40,105,41],256],9381:[[40,106,41],256],9382:[[40,107,41],256],9383:[[40,108,41],256],9384:[[40,109,41],256],9385:[[40,110,41],256],9386:[[40,111,41],256],9387:[[40,112,41],256],9388:[[40,113,41],256],9389:[[40,114,41],256],9390:[[40,115,41],256],9391:[[40,116,41],256],9392:[[40,117,41],256],9393:[[40,118,41],256],9394:[[40,119,41],256],9395:[[40,120,41],256],9396:[[40,121,41],256],9397:[[40,122,41],256],9398:[[65],256],9399:[[66],256],9400:[[67],256],9401:[[68],256],9402:[[69],256],9403:[[70],256],9404:[[71],256],9405:[[72],256],9406:[[73],256],9407:[[74],256],9408:[[75],256],9409:[[76],256],9410:[[77],256],9411:[[78],256],9412:[[79],256],9413:[[80],256],9414:[[81],256],9415:[[82],256],9416:[[83],256],9417:[[84],256],9418:[[85],256],9419:[[86],256],9420:[[87],256],9421:[[88],256],9422:[[89],256],9423:[[90],256],9424:[[97],256],9425:[[98],256],9426:[[99],256],9427:[[100],256],9428:[[101],256],9429:[[102],256],9430:[[103],256],9431:[[104],256],9432:[[105],256],9433:[[106],256],9434:[[107],256],9435:[[108],256],9436:[[109],256],9437:[[110],256],9438:[[111],256],9439:[[112],256],9440:[[113],256],9441:[[114],256],9442:[[115],256],9443:[[116],256],9444:[[117],256],9445:[[118],256],9446:[[119],256],9447:[[120],256],9448:[[121],256],9449:[[122],256],9450:[[48],256]},
37
+ 10752:{10764:[[8747,8747,8747,8747],256],10868:[[58,58,61],256],10869:[[61,61],256],10870:[[61,61,61],256],10972:[[10973,824],512]},
38
+ 11264:{11388:[[106],256],11389:[[86],256],11503:[,230],11504:[,230],11505:[,230]},
39
+ 11520:{11631:[[11617],256],11647:[,9],11744:[,230],11745:[,230],11746:[,230],11747:[,230],11748:[,230],11749:[,230],11750:[,230],11751:[,230],11752:[,230],11753:[,230],11754:[,230],11755:[,230],11756:[,230],11757:[,230],11758:[,230],11759:[,230],11760:[,230],11761:[,230],11762:[,230],11763:[,230],11764:[,230],11765:[,230],11766:[,230],11767:[,230],11768:[,230],11769:[,230],11770:[,230],11771:[,230],11772:[,230],11773:[,230],11774:[,230],11775:[,230]},
40
+ 11776:{11935:[[27597],256],12019:[[40863],256]},
41
+ 12032:{12032:[[19968],256],12033:[[20008],256],12034:[[20022],256],12035:[[20031],256],12036:[[20057],256],12037:[[20101],256],12038:[[20108],256],12039:[[20128],256],12040:[[20154],256],12041:[[20799],256],12042:[[20837],256],12043:[[20843],256],12044:[[20866],256],12045:[[20886],256],12046:[[20907],256],12047:[[20960],256],12048:[[20981],256],12049:[[20992],256],12050:[[21147],256],12051:[[21241],256],12052:[[21269],256],12053:[[21274],256],12054:[[21304],256],12055:[[21313],256],12056:[[21340],256],12057:[[21353],256],12058:[[21378],256],12059:[[21430],256],12060:[[21448],256],12061:[[21475],256],12062:[[22231],256],12063:[[22303],256],12064:[[22763],256],12065:[[22786],256],12066:[[22794],256],12067:[[22805],256],12068:[[22823],256],12069:[[22899],256],12070:[[23376],256],12071:[[23424],256],12072:[[23544],256],12073:[[23567],256],12074:[[23586],256],12075:[[23608],256],12076:[[23662],256],12077:[[23665],256],12078:[[24027],256],12079:[[24037],256],12080:[[24049],256],12081:[[24062],256],12082:[[24178],256],12083:[[24186],256],12084:[[24191],256],12085:[[24308],256],12086:[[24318],256],12087:[[24331],256],12088:[[24339],256],12089:[[24400],256],12090:[[24417],256],12091:[[24435],256],12092:[[24515],256],12093:[[25096],256],12094:[[25142],256],12095:[[25163],256],12096:[[25903],256],12097:[[25908],256],12098:[[25991],256],12099:[[26007],256],12100:[[26020],256],12101:[[26041],256],12102:[[26080],256],12103:[[26085],256],12104:[[26352],256],12105:[[26376],256],12106:[[26408],256],12107:[[27424],256],12108:[[27490],256],12109:[[27513],256],12110:[[27571],256],12111:[[27595],256],12112:[[27604],256],12113:[[27611],256],12114:[[27663],256],12115:[[27668],256],12116:[[27700],256],12117:[[28779],256],12118:[[29226],256],12119:[[29238],256],12120:[[29243],256],12121:[[29247],256],12122:[[29255],256],12123:[[29273],256],12124:[[29275],256],12125:[[29356],256],12126:[[29572],256],12127:[[29577],256],12128:[[29916],256],12129:[[29926],256],12130:[[29976],256],12131:[[29983],256],12132:[[29992],256],12133:[[30000],256],12134:[[30091],256],12135:[[30098],256],12136:[[30326],256],12137:[[30333],256],12138:[[30382],256],12139:[[30399],256],12140:[[30446],256],12141:[[30683],256],12142:[[30690],256],12143:[[30707],256],12144:[[31034],256],12145:[[31160],256],12146:[[31166],256],12147:[[31348],256],12148:[[31435],256],12149:[[31481],256],12150:[[31859],256],12151:[[31992],256],12152:[[32566],256],12153:[[32593],256],12154:[[32650],256],12155:[[32701],256],12156:[[32769],256],12157:[[32780],256],12158:[[32786],256],12159:[[32819],256],12160:[[32895],256],12161:[[32905],256],12162:[[33251],256],12163:[[33258],256],12164:[[33267],256],12165:[[33276],256],12166:[[33292],256],12167:[[33307],256],12168:[[33311],256],12169:[[33390],256],12170:[[33394],256],12171:[[33400],256],12172:[[34381],256],12173:[[34411],256],12174:[[34880],256],12175:[[34892],256],12176:[[34915],256],12177:[[35198],256],12178:[[35211],256],12179:[[35282],256],12180:[[35328],256],12181:[[35895],256],12182:[[35910],256],12183:[[35925],256],12184:[[35960],256],12185:[[35997],256],12186:[[36196],256],12187:[[36208],256],12188:[[36275],256],12189:[[36523],256],12190:[[36554],256],12191:[[36763],256],12192:[[36784],256],12193:[[36789],256],12194:[[37009],256],12195:[[37193],256],12196:[[37318],256],12197:[[37324],256],12198:[[37329],256],12199:[[38263],256],12200:[[38272],256],12201:[[38428],256],12202:[[38582],256],12203:[[38585],256],12204:[[38632],256],12205:[[38737],256],12206:[[38750],256],12207:[[38754],256],12208:[[38761],256],12209:[[38859],256],12210:[[38893],256],12211:[[38899],256],12212:[[38913],256],12213:[[39080],256],12214:[[39131],256],12215:[[39135],256],12216:[[39318],256],12217:[[39321],256],12218:[[39340],256],12219:[[39592],256],12220:[[39640],256],12221:[[39647],256],12222:[[39717],256],12223:[[39727],256],12224:[[39730],256],12225:[[39740],256],12226:[[39770],256],12227:[[40165],256],12228:[[40565],256],12229:[[40575],256],12230:[[40613],256],12231:[[40635],256],12232:[[40643],256],12233:[[40653],256],12234:[[40657],256],12235:[[40697],256],12236:[[40701],256],12237:[[40718],256],12238:[[40723],256],12239:[[40736],256],12240:[[40763],256],12241:[[40778],256],12242:[[40786],256],12243:[[40845],256],12244:[[40860],256],12245:[[40864],256]},
42
+ 12288:{12288:[[32],256],12330:[,218],12331:[,228],12332:[,232],12333:[,222],12334:[,224],12335:[,224],12342:[[12306],256],12344:[[21313],256],12345:[[21316],256],12346:[[21317],256],12358:[,,{12441:12436}],12363:[,,{12441:12364}],12364:[[12363,12441]],12365:[,,{12441:12366}],12366:[[12365,12441]],12367:[,,{12441:12368}],12368:[[12367,12441]],12369:[,,{12441:12370}],12370:[[12369,12441]],12371:[,,{12441:12372}],12372:[[12371,12441]],12373:[,,{12441:12374}],12374:[[12373,12441]],12375:[,,{12441:12376}],12376:[[12375,12441]],12377:[,,{12441:12378}],12378:[[12377,12441]],12379:[,,{12441:12380}],12380:[[12379,12441]],12381:[,,{12441:12382}],12382:[[12381,12441]],12383:[,,{12441:12384}],12384:[[12383,12441]],12385:[,,{12441:12386}],12386:[[12385,12441]],12388:[,,{12441:12389}],12389:[[12388,12441]],12390:[,,{12441:12391}],12391:[[12390,12441]],12392:[,,{12441:12393}],12393:[[12392,12441]],12399:[,,{12441:12400,12442:12401}],12400:[[12399,12441]],12401:[[12399,12442]],12402:[,,{12441:12403,12442:12404}],12403:[[12402,12441]],12404:[[12402,12442]],12405:[,,{12441:12406,12442:12407}],12406:[[12405,12441]],12407:[[12405,12442]],12408:[,,{12441:12409,12442:12410}],12409:[[12408,12441]],12410:[[12408,12442]],12411:[,,{12441:12412,12442:12413}],12412:[[12411,12441]],12413:[[12411,12442]],12436:[[12358,12441]],12441:[,8],12442:[,8],12443:[[32,12441],256],12444:[[32,12442],256],12445:[,,{12441:12446}],12446:[[12445,12441]],12447:[[12424,12426],256],12454:[,,{12441:12532}],12459:[,,{12441:12460}],12460:[[12459,12441]],12461:[,,{12441:12462}],12462:[[12461,12441]],12463:[,,{12441:12464}],12464:[[12463,12441]],12465:[,,{12441:12466}],12466:[[12465,12441]],12467:[,,{12441:12468}],12468:[[12467,12441]],12469:[,,{12441:12470}],12470:[[12469,12441]],12471:[,,{12441:12472}],12472:[[12471,12441]],12473:[,,{12441:12474}],12474:[[12473,12441]],12475:[,,{12441:12476}],12476:[[12475,12441]],12477:[,,{12441:12478}],12478:[[12477,12441]],12479:[,,{12441:12480}],12480:[[12479,12441]],12481:[,,{12441:12482}],12482:[[12481,12441]],12484:[,,{12441:12485}],12485:[[12484,12441]],12486:[,,{12441:12487}],12487:[[12486,12441]],12488:[,,{12441:12489}],12489:[[12488,12441]],12495:[,,{12441:12496,12442:12497}],12496:[[12495,12441]],12497:[[12495,12442]],12498:[,,{12441:12499,12442:12500}],12499:[[12498,12441]],12500:[[12498,12442]],12501:[,,{12441:12502,12442:12503}],12502:[[12501,12441]],12503:[[12501,12442]],12504:[,,{12441:12505,12442:12506}],12505:[[12504,12441]],12506:[[12504,12442]],12507:[,,{12441:12508,12442:12509}],12508:[[12507,12441]],12509:[[12507,12442]],12527:[,,{12441:12535}],12528:[,,{12441:12536}],12529:[,,{12441:12537}],12530:[,,{12441:12538}],12532:[[12454,12441]],12535:[[12527,12441]],12536:[[12528,12441]],12537:[[12529,12441]],12538:[[12530,12441]],12541:[,,{12441:12542}],12542:[[12541,12441]],12543:[[12467,12488],256]},
43
+ 12544:{12593:[[4352],256],12594:[[4353],256],12595:[[4522],256],12596:[[4354],256],12597:[[4524],256],12598:[[4525],256],12599:[[4355],256],12600:[[4356],256],12601:[[4357],256],12602:[[4528],256],12603:[[4529],256],12604:[[4530],256],12605:[[4531],256],12606:[[4532],256],12607:[[4533],256],12608:[[4378],256],12609:[[4358],256],12610:[[4359],256],12611:[[4360],256],12612:[[4385],256],12613:[[4361],256],12614:[[4362],256],12615:[[4363],256],12616:[[4364],256],12617:[[4365],256],12618:[[4366],256],12619:[[4367],256],12620:[[4368],256],12621:[[4369],256],12622:[[4370],256],12623:[[4449],256],12624:[[4450],256],12625:[[4451],256],12626:[[4452],256],12627:[[4453],256],12628:[[4454],256],12629:[[4455],256],12630:[[4456],256],12631:[[4457],256],12632:[[4458],256],12633:[[4459],256],12634:[[4460],256],12635:[[4461],256],12636:[[4462],256],12637:[[4463],256],12638:[[4464],256],12639:[[4465],256],12640:[[4466],256],12641:[[4467],256],12642:[[4468],256],12643:[[4469],256],12644:[[4448],256],12645:[[4372],256],12646:[[4373],256],12647:[[4551],256],12648:[[4552],256],12649:[[4556],256],12650:[[4558],256],12651:[[4563],256],12652:[[4567],256],12653:[[4569],256],12654:[[4380],256],12655:[[4573],256],12656:[[4575],256],12657:[[4381],256],12658:[[4382],256],12659:[[4384],256],12660:[[4386],256],12661:[[4387],256],12662:[[4391],256],12663:[[4393],256],12664:[[4395],256],12665:[[4396],256],12666:[[4397],256],12667:[[4398],256],12668:[[4399],256],12669:[[4402],256],12670:[[4406],256],12671:[[4416],256],12672:[[4423],256],12673:[[4428],256],12674:[[4593],256],12675:[[4594],256],12676:[[4439],256],12677:[[4440],256],12678:[[4441],256],12679:[[4484],256],12680:[[4485],256],12681:[[4488],256],12682:[[4497],256],12683:[[4498],256],12684:[[4500],256],12685:[[4510],256],12686:[[4513],256],12690:[[19968],256],12691:[[20108],256],12692:[[19977],256],12693:[[22235],256],12694:[[19978],256],12695:[[20013],256],12696:[[19979],256],12697:[[30002],256],12698:[[20057],256],12699:[[19993],256],12700:[[19969],256],12701:[[22825],256],12702:[[22320],256],12703:[[20154],256]},
44
+ 12800:{12800:[[40,4352,41],256],12801:[[40,4354,41],256],12802:[[40,4355,41],256],12803:[[40,4357,41],256],12804:[[40,4358,41],256],12805:[[40,4359,41],256],12806:[[40,4361,41],256],12807:[[40,4363,41],256],12808:[[40,4364,41],256],12809:[[40,4366,41],256],12810:[[40,4367,41],256],12811:[[40,4368,41],256],12812:[[40,4369,41],256],12813:[[40,4370,41],256],12814:[[40,4352,4449,41],256],12815:[[40,4354,4449,41],256],12816:[[40,4355,4449,41],256],12817:[[40,4357,4449,41],256],12818:[[40,4358,4449,41],256],12819:[[40,4359,4449,41],256],12820:[[40,4361,4449,41],256],12821:[[40,4363,4449,41],256],12822:[[40,4364,4449,41],256],12823:[[40,4366,4449,41],256],12824:[[40,4367,4449,41],256],12825:[[40,4368,4449,41],256],12826:[[40,4369,4449,41],256],12827:[[40,4370,4449,41],256],12828:[[40,4364,4462,41],256],12829:[[40,4363,4457,4364,4453,4523,41],256],12830:[[40,4363,4457,4370,4462,41],256],12832:[[40,19968,41],256],12833:[[40,20108,41],256],12834:[[40,19977,41],256],12835:[[40,22235,41],256],12836:[[40,20116,41],256],12837:[[40,20845,41],256],12838:[[40,19971,41],256],12839:[[40,20843,41],256],12840:[[40,20061,41],256],12841:[[40,21313,41],256],12842:[[40,26376,41],256],12843:[[40,28779,41],256],12844:[[40,27700,41],256],12845:[[40,26408,41],256],12846:[[40,37329,41],256],12847:[[40,22303,41],256],12848:[[40,26085,41],256],12849:[[40,26666,41],256],12850:[[40,26377,41],256],12851:[[40,31038,41],256],12852:[[40,21517,41],256],12853:[[40,29305,41],256],12854:[[40,36001,41],256],12855:[[40,31069,41],256],12856:[[40,21172,41],256],12857:[[40,20195,41],256],12858:[[40,21628,41],256],12859:[[40,23398,41],256],12860:[[40,30435,41],256],12861:[[40,20225,41],256],12862:[[40,36039,41],256],12863:[[40,21332,41],256],12864:[[40,31085,41],256],12865:[[40,20241,41],256],12866:[[40,33258,41],256],12867:[[40,33267,41],256],12868:[[21839],256],12869:[[24188],256],12870:[[25991],256],12871:[[31631],256],12880:[[80,84,69],256],12881:[[50,49],256],12882:[[50,50],256],12883:[[50,51],256],12884:[[50,52],256],12885:[[50,53],256],12886:[[50,54],256],12887:[[50,55],256],12888:[[50,56],256],12889:[[50,57],256],12890:[[51,48],256],12891:[[51,49],256],12892:[[51,50],256],12893:[[51,51],256],12894:[[51,52],256],12895:[[51,53],256],12896:[[4352],256],12897:[[4354],256],12898:[[4355],256],12899:[[4357],256],12900:[[4358],256],12901:[[4359],256],12902:[[4361],256],12903:[[4363],256],12904:[[4364],256],12905:[[4366],256],12906:[[4367],256],12907:[[4368],256],12908:[[4369],256],12909:[[4370],256],12910:[[4352,4449],256],12911:[[4354,4449],256],12912:[[4355,4449],256],12913:[[4357,4449],256],12914:[[4358,4449],256],12915:[[4359,4449],256],12916:[[4361,4449],256],12917:[[4363,4449],256],12918:[[4364,4449],256],12919:[[4366,4449],256],12920:[[4367,4449],256],12921:[[4368,4449],256],12922:[[4369,4449],256],12923:[[4370,4449],256],12924:[[4366,4449,4535,4352,4457],256],12925:[[4364,4462,4363,4468],256],12926:[[4363,4462],256],12928:[[19968],256],12929:[[20108],256],12930:[[19977],256],12931:[[22235],256],12932:[[20116],256],12933:[[20845],256],12934:[[19971],256],12935:[[20843],256],12936:[[20061],256],12937:[[21313],256],12938:[[26376],256],12939:[[28779],256],12940:[[27700],256],12941:[[26408],256],12942:[[37329],256],12943:[[22303],256],12944:[[26085],256],12945:[[26666],256],12946:[[26377],256],12947:[[31038],256],12948:[[21517],256],12949:[[29305],256],12950:[[36001],256],12951:[[31069],256],12952:[[21172],256],12953:[[31192],256],12954:[[30007],256],12955:[[22899],256],12956:[[36969],256],12957:[[20778],256],12958:[[21360],256],12959:[[27880],256],12960:[[38917],256],12961:[[20241],256],12962:[[20889],256],12963:[[27491],256],12964:[[19978],256],12965:[[20013],256],12966:[[19979],256],12967:[[24038],256],12968:[[21491],256],12969:[[21307],256],12970:[[23447],256],12971:[[23398],256],12972:[[30435],256],12973:[[20225],256],12974:[[36039],256],12975:[[21332],256],12976:[[22812],256],12977:[[51,54],256],12978:[[51,55],256],12979:[[51,56],256],12980:[[51,57],256],12981:[[52,48],256],12982:[[52,49],256],12983:[[52,50],256],12984:[[52,51],256],12985:[[52,52],256],12986:[[52,53],256],12987:[[52,54],256],12988:[[52,55],256],12989:[[52,56],256],12990:[[52,57],256],12991:[[53,48],256],12992:[[49,26376],256],12993:[[50,26376],256],12994:[[51,26376],256],12995:[[52,26376],256],12996:[[53,26376],256],12997:[[54,26376],256],12998:[[55,26376],256],12999:[[56,26376],256],13000:[[57,26376],256],13001:[[49,48,26376],256],13002:[[49,49,26376],256],13003:[[49,50,26376],256],13004:[[72,103],256],13005:[[101,114,103],256],13006:[[101,86],256],13007:[[76,84,68],256],13008:[[12450],256],13009:[[12452],256],13010:[[12454],256],13011:[[12456],256],13012:[[12458],256],13013:[[12459],256],13014:[[12461],256],13015:[[12463],256],13016:[[12465],256],13017:[[12467],256],13018:[[12469],256],13019:[[12471],256],13020:[[12473],256],13021:[[12475],256],13022:[[12477],256],13023:[[12479],256],13024:[[12481],256],13025:[[12484],256],13026:[[12486],256],13027:[[12488],256],13028:[[12490],256],13029:[[12491],256],13030:[[12492],256],13031:[[12493],256],13032:[[12494],256],13033:[[12495],256],13034:[[12498],256],13035:[[12501],256],13036:[[12504],256],13037:[[12507],256],13038:[[12510],256],13039:[[12511],256],13040:[[12512],256],13041:[[12513],256],13042:[[12514],256],13043:[[12516],256],13044:[[12518],256],13045:[[12520],256],13046:[[12521],256],13047:[[12522],256],13048:[[12523],256],13049:[[12524],256],13050:[[12525],256],13051:[[12527],256],13052:[[12528],256],13053:[[12529],256],13054:[[12530],256]},
45
+ 13056:{13056:[[12450,12497,12540,12488],256],13057:[[12450,12523,12501,12449],256],13058:[[12450,12531,12506,12450],256],13059:[[12450,12540,12523],256],13060:[[12452,12491,12531,12464],256],13061:[[12452,12531,12481],256],13062:[[12454,12457,12531],256],13063:[[12456,12473,12463,12540,12489],256],13064:[[12456,12540,12459,12540],256],13065:[[12458,12531,12473],256],13066:[[12458,12540,12512],256],13067:[[12459,12452,12522],256],13068:[[12459,12521,12483,12488],256],13069:[[12459,12525,12522,12540],256],13070:[[12460,12525,12531],256],13071:[[12460,12531,12510],256],13072:[[12462,12460],256],13073:[[12462,12491,12540],256],13074:[[12461,12517,12522,12540],256],13075:[[12462,12523,12480,12540],256],13076:[[12461,12525],256],13077:[[12461,12525,12464,12521,12512],256],13078:[[12461,12525,12513,12540,12488,12523],256],13079:[[12461,12525,12527,12483,12488],256],13080:[[12464,12521,12512],256],13081:[[12464,12521,12512,12488,12531],256],13082:[[12463,12523,12476,12452,12525],256],13083:[[12463,12525,12540,12493],256],13084:[[12465,12540,12473],256],13085:[[12467,12523,12490],256],13086:[[12467,12540,12509],256],13087:[[12469,12452,12463,12523],256],13088:[[12469,12531,12481,12540,12512],256],13089:[[12471,12522,12531,12464],256],13090:[[12475,12531,12481],256],13091:[[12475,12531,12488],256],13092:[[12480,12540,12473],256],13093:[[12487,12471],256],13094:[[12489,12523],256],13095:[[12488,12531],256],13096:[[12490,12494],256],13097:[[12494,12483,12488],256],13098:[[12495,12452,12484],256],13099:[[12497,12540,12475,12531,12488],256],13100:[[12497,12540,12484],256],13101:[[12496,12540,12524,12523],256],13102:[[12500,12450,12473,12488,12523],256],13103:[[12500,12463,12523],256],13104:[[12500,12467],256],13105:[[12499,12523],256],13106:[[12501,12449,12521,12483,12489],256],13107:[[12501,12451,12540,12488],256],13108:[[12502,12483,12471,12455,12523],256],13109:[[12501,12521,12531],256],13110:[[12504,12463,12479,12540,12523],256],13111:[[12506,12477],256],13112:[[12506,12491,12498],256],13113:[[12504,12523,12484],256],13114:[[12506,12531,12473],256],13115:[[12506,12540,12472],256],13116:[[12505,12540,12479],256],13117:[[12509,12452,12531,12488],256],13118:[[12508,12523,12488],256],13119:[[12507,12531],256],13120:[[12509,12531,12489],256],13121:[[12507,12540,12523],256],13122:[[12507,12540,12531],256],13123:[[12510,12452,12463,12525],256],13124:[[12510,12452,12523],256],13125:[[12510,12483,12495],256],13126:[[12510,12523,12463],256],13127:[[12510,12531,12471,12519,12531],256],13128:[[12511,12463,12525,12531],256],13129:[[12511,12522],256],13130:[[12511,12522,12496,12540,12523],256],13131:[[12513,12460],256],13132:[[12513,12460,12488,12531],256],13133:[[12513,12540,12488,12523],256],13134:[[12516,12540,12489],256],13135:[[12516,12540,12523],256],13136:[[12518,12450,12531],256],13137:[[12522,12483,12488,12523],256],13138:[[12522,12521],256],13139:[[12523,12500,12540],256],13140:[[12523,12540,12502,12523],256],13141:[[12524,12512],256],13142:[[12524,12531,12488,12466,12531],256],13143:[[12527,12483,12488],256],13144:[[48,28857],256],13145:[[49,28857],256],13146:[[50,28857],256],13147:[[51,28857],256],13148:[[52,28857],256],13149:[[53,28857],256],13150:[[54,28857],256],13151:[[55,28857],256],13152:[[56,28857],256],13153:[[57,28857],256],13154:[[49,48,28857],256],13155:[[49,49,28857],256],13156:[[49,50,28857],256],13157:[[49,51,28857],256],13158:[[49,52,28857],256],13159:[[49,53,28857],256],13160:[[49,54,28857],256],13161:[[49,55,28857],256],13162:[[49,56,28857],256],13163:[[49,57,28857],256],13164:[[50,48,28857],256],13165:[[50,49,28857],256],13166:[[50,50,28857],256],13167:[[50,51,28857],256],13168:[[50,52,28857],256],13169:[[104,80,97],256],13170:[[100,97],256],13171:[[65,85],256],13172:[[98,97,114],256],13173:[[111,86],256],13174:[[112,99],256],13175:[[100,109],256],13176:[[100,109,178],256],13177:[[100,109,179],256],13178:[[73,85],256],13179:[[24179,25104],256],13180:[[26157,21644],256],13181:[[22823,27491],256],13182:[[26126,27835],256],13183:[[26666,24335,20250,31038],256],13184:[[112,65],256],13185:[[110,65],256],13186:[[956,65],256],13187:[[109,65],256],13188:[[107,65],256],13189:[[75,66],256],13190:[[77,66],256],13191:[[71,66],256],13192:[[99,97,108],256],13193:[[107,99,97,108],256],13194:[[112,70],256],13195:[[110,70],256],13196:[[956,70],256],13197:[[956,103],256],13198:[[109,103],256],13199:[[107,103],256],13200:[[72,122],256],13201:[[107,72,122],256],13202:[[77,72,122],256],13203:[[71,72,122],256],13204:[[84,72,122],256],13205:[[956,8467],256],13206:[[109,8467],256],13207:[[100,8467],256],13208:[[107,8467],256],13209:[[102,109],256],13210:[[110,109],256],13211:[[956,109],256],13212:[[109,109],256],13213:[[99,109],256],13214:[[107,109],256],13215:[[109,109,178],256],13216:[[99,109,178],256],13217:[[109,178],256],13218:[[107,109,178],256],13219:[[109,109,179],256],13220:[[99,109,179],256],13221:[[109,179],256],13222:[[107,109,179],256],13223:[[109,8725,115],256],13224:[[109,8725,115,178],256],13225:[[80,97],256],13226:[[107,80,97],256],13227:[[77,80,97],256],13228:[[71,80,97],256],13229:[[114,97,100],256],13230:[[114,97,100,8725,115],256],13231:[[114,97,100,8725,115,178],256],13232:[[112,115],256],13233:[[110,115],256],13234:[[956,115],256],13235:[[109,115],256],13236:[[112,86],256],13237:[[110,86],256],13238:[[956,86],256],13239:[[109,86],256],13240:[[107,86],256],13241:[[77,86],256],13242:[[112,87],256],13243:[[110,87],256],13244:[[956,87],256],13245:[[109,87],256],13246:[[107,87],256],13247:[[77,87],256],13248:[[107,937],256],13249:[[77,937],256],13250:[[97,46,109,46],256],13251:[[66,113],256],13252:[[99,99],256],13253:[[99,100],256],13254:[[67,8725,107,103],256],13255:[[67,111,46],256],13256:[[100,66],256],13257:[[71,121],256],13258:[[104,97],256],13259:[[72,80],256],13260:[[105,110],256],13261:[[75,75],256],13262:[[75,77],256],13263:[[107,116],256],13264:[[108,109],256],13265:[[108,110],256],13266:[[108,111,103],256],13267:[[108,120],256],13268:[[109,98],256],13269:[[109,105,108],256],13270:[[109,111,108],256],13271:[[80,72],256],13272:[[112,46,109,46],256],13273:[[80,80,77],256],13274:[[80,82],256],13275:[[115,114],256],13276:[[83,118],256],13277:[[87,98],256],13278:[[86,8725,109],256],13279:[[65,8725,109],256],13280:[[49,26085],256],13281:[[50,26085],256],13282:[[51,26085],256],13283:[[52,26085],256],13284:[[53,26085],256],13285:[[54,26085],256],13286:[[55,26085],256],13287:[[56,26085],256],13288:[[57,26085],256],13289:[[49,48,26085],256],13290:[[49,49,26085],256],13291:[[49,50,26085],256],13292:[[49,51,26085],256],13293:[[49,52,26085],256],13294:[[49,53,26085],256],13295:[[49,54,26085],256],13296:[[49,55,26085],256],13297:[[49,56,26085],256],13298:[[49,57,26085],256],13299:[[50,48,26085],256],13300:[[50,49,26085],256],13301:[[50,50,26085],256],13302:[[50,51,26085],256],13303:[[50,52,26085],256],13304:[[50,53,26085],256],13305:[[50,54,26085],256],13306:[[50,55,26085],256],13307:[[50,56,26085],256],13308:[[50,57,26085],256],13309:[[51,48,26085],256],13310:[[51,49,26085],256],13311:[[103,97,108],256]},
46
+ 42496:{42607:[,230],42612:[,230],42613:[,230],42614:[,230],42615:[,230],42616:[,230],42617:[,230],42618:[,230],42619:[,230],42620:[,230],42621:[,230],42655:[,230],42736:[,230],42737:[,230]},
47
+ 42752:{42864:[[42863],256],43000:[[294],256],43001:[[339],256]},
48
+ 43008:{43014:[,9],43204:[,9],43232:[,230],43233:[,230],43234:[,230],43235:[,230],43236:[,230],43237:[,230],43238:[,230],43239:[,230],43240:[,230],43241:[,230],43242:[,230],43243:[,230],43244:[,230],43245:[,230],43246:[,230],43247:[,230],43248:[,230],43249:[,230]},
49
+ 43264:{43307:[,220],43308:[,220],43309:[,220],43347:[,9],43443:[,7],43456:[,9]},
50
+ 43520:{43696:[,230],43698:[,230],43699:[,230],43700:[,220],43703:[,230],43704:[,230],43710:[,230],43711:[,230],43713:[,230],43766:[,9]},
51
+ 43776:{44013:[,9]},
52
+ 53504:{119134:[[119127,119141],512],119135:[[119128,119141],512],119136:[[119135,119150],512],119137:[[119135,119151],512],119138:[[119135,119152],512],119139:[[119135,119153],512],119140:[[119135,119154],512],119141:[,216],119142:[,216],119143:[,1],119144:[,1],119145:[,1],119149:[,226],119150:[,216],119151:[,216],119152:[,216],119153:[,216],119154:[,216],119163:[,220],119164:[,220],119165:[,220],119166:[,220],119167:[,220],119168:[,220],119169:[,220],119170:[,220],119173:[,230],119174:[,230],119175:[,230],119176:[,230],119177:[,230],119178:[,220],119179:[,220],119210:[,230],119211:[,230],119212:[,230],119213:[,230],119227:[[119225,119141],512],119228:[[119226,119141],512],119229:[[119227,119150],512],119230:[[119228,119150],512],119231:[[119227,119151],512],119232:[[119228,119151],512]},
53
+ 53760:{119362:[,230],119363:[,230],119364:[,230]},
54
+ 54272:{119808:[[65],256],119809:[[66],256],119810:[[67],256],119811:[[68],256],119812:[[69],256],119813:[[70],256],119814:[[71],256],119815:[[72],256],119816:[[73],256],119817:[[74],256],119818:[[75],256],119819:[[76],256],119820:[[77],256],119821:[[78],256],119822:[[79],256],119823:[[80],256],119824:[[81],256],119825:[[82],256],119826:[[83],256],119827:[[84],256],119828:[[85],256],119829:[[86],256],119830:[[87],256],119831:[[88],256],119832:[[89],256],119833:[[90],256],119834:[[97],256],119835:[[98],256],119836:[[99],256],119837:[[100],256],119838:[[101],256],119839:[[102],256],119840:[[103],256],119841:[[104],256],119842:[[105],256],119843:[[106],256],119844:[[107],256],119845:[[108],256],119846:[[109],256],119847:[[110],256],119848:[[111],256],119849:[[112],256],119850:[[113],256],119851:[[114],256],119852:[[115],256],119853:[[116],256],119854:[[117],256],119855:[[118],256],119856:[[119],256],119857:[[120],256],119858:[[121],256],119859:[[122],256],119860:[[65],256],119861:[[66],256],119862:[[67],256],119863:[[68],256],119864:[[69],256],119865:[[70],256],119866:[[71],256],119867:[[72],256],119868:[[73],256],119869:[[74],256],119870:[[75],256],119871:[[76],256],119872:[[77],256],119873:[[78],256],119874:[[79],256],119875:[[80],256],119876:[[81],256],119877:[[82],256],119878:[[83],256],119879:[[84],256],119880:[[85],256],119881:[[86],256],119882:[[87],256],119883:[[88],256],119884:[[89],256],119885:[[90],256],119886:[[97],256],119887:[[98],256],119888:[[99],256],119889:[[100],256],119890:[[101],256],119891:[[102],256],119892:[[103],256],119894:[[105],256],119895:[[106],256],119896:[[107],256],119897:[[108],256],119898:[[109],256],119899:[[110],256],119900:[[111],256],119901:[[112],256],119902:[[113],256],119903:[[114],256],119904:[[115],256],119905:[[116],256],119906:[[117],256],119907:[[118],256],119908:[[119],256],119909:[[120],256],119910:[[121],256],119911:[[122],256],119912:[[65],256],119913:[[66],256],119914:[[67],256],119915:[[68],256],119916:[[69],256],119917:[[70],256],119918:[[71],256],119919:[[72],256],119920:[[73],256],119921:[[74],256],119922:[[75],256],119923:[[76],256],119924:[[77],256],119925:[[78],256],119926:[[79],256],119927:[[80],256],119928:[[81],256],119929:[[82],256],119930:[[83],256],119931:[[84],256],119932:[[85],256],119933:[[86],256],119934:[[87],256],119935:[[88],256],119936:[[89],256],119937:[[90],256],119938:[[97],256],119939:[[98],256],119940:[[99],256],119941:[[100],256],119942:[[101],256],119943:[[102],256],119944:[[103],256],119945:[[104],256],119946:[[105],256],119947:[[106],256],119948:[[107],256],119949:[[108],256],119950:[[109],256],119951:[[110],256],119952:[[111],256],119953:[[112],256],119954:[[113],256],119955:[[114],256],119956:[[115],256],119957:[[116],256],119958:[[117],256],119959:[[118],256],119960:[[119],256],119961:[[120],256],119962:[[121],256],119963:[[122],256],119964:[[65],256],119966:[[67],256],119967:[[68],256],119970:[[71],256],119973:[[74],256],119974:[[75],256],119977:[[78],256],119978:[[79],256],119979:[[80],256],119980:[[81],256],119982:[[83],256],119983:[[84],256],119984:[[85],256],119985:[[86],256],119986:[[87],256],119987:[[88],256],119988:[[89],256],119989:[[90],256],119990:[[97],256],119991:[[98],256],119992:[[99],256],119993:[[100],256],119995:[[102],256],119997:[[104],256],119998:[[105],256],119999:[[106],256],120000:[[107],256],120001:[[108],256],120002:[[109],256],120003:[[110],256],120005:[[112],256],120006:[[113],256],120007:[[114],256],120008:[[115],256],120009:[[116],256],120010:[[117],256],120011:[[118],256],120012:[[119],256],120013:[[120],256],120014:[[121],256],120015:[[122],256],120016:[[65],256],120017:[[66],256],120018:[[67],256],120019:[[68],256],120020:[[69],256],120021:[[70],256],120022:[[71],256],120023:[[72],256],120024:[[73],256],120025:[[74],256],120026:[[75],256],120027:[[76],256],120028:[[77],256],120029:[[78],256],120030:[[79],256],120031:[[80],256],120032:[[81],256],120033:[[82],256],120034:[[83],256],120035:[[84],256],120036:[[85],256],120037:[[86],256],120038:[[87],256],120039:[[88],256],120040:[[89],256],120041:[[90],256],120042:[[97],256],120043:[[98],256],120044:[[99],256],120045:[[100],256],120046:[[101],256],120047:[[102],256],120048:[[103],256],120049:[[104],256],120050:[[105],256],120051:[[106],256],120052:[[107],256],120053:[[108],256],120054:[[109],256],120055:[[110],256],120056:[[111],256],120057:[[112],256],120058:[[113],256],120059:[[114],256],120060:[[115],256],120061:[[116],256],120062:[[117],256],120063:[[118],256]},
55
+ 54528:{120064:[[119],256],120065:[[120],256],120066:[[121],256],120067:[[122],256],120068:[[65],256],120069:[[66],256],120071:[[68],256],120072:[[69],256],120073:[[70],256],120074:[[71],256],120077:[[74],256],120078:[[75],256],120079:[[76],256],120080:[[77],256],120081:[[78],256],120082:[[79],256],120083:[[80],256],120084:[[81],256],120086:[[83],256],120087:[[84],256],120088:[[85],256],120089:[[86],256],120090:[[87],256],120091:[[88],256],120092:[[89],256],120094:[[97],256],120095:[[98],256],120096:[[99],256],120097:[[100],256],120098:[[101],256],120099:[[102],256],120100:[[103],256],120101:[[104],256],120102:[[105],256],120103:[[106],256],120104:[[107],256],120105:[[108],256],120106:[[109],256],120107:[[110],256],120108:[[111],256],120109:[[112],256],120110:[[113],256],120111:[[114],256],120112:[[115],256],120113:[[116],256],120114:[[117],256],120115:[[118],256],120116:[[119],256],120117:[[120],256],120118:[[121],256],120119:[[122],256],120120:[[65],256],120121:[[66],256],120123:[[68],256],120124:[[69],256],120125:[[70],256],120126:[[71],256],120128:[[73],256],120129:[[74],256],120130:[[75],256],120131:[[76],256],120132:[[77],256],120134:[[79],256],120138:[[83],256],120139:[[84],256],120140:[[85],256],120141:[[86],256],120142:[[87],256],120143:[[88],256],120144:[[89],256],120146:[[97],256],120147:[[98],256],120148:[[99],256],120149:[[100],256],120150:[[101],256],120151:[[102],256],120152:[[103],256],120153:[[104],256],120154:[[105],256],120155:[[106],256],120156:[[107],256],120157:[[108],256],120158:[[109],256],120159:[[110],256],120160:[[111],256],120161:[[112],256],120162:[[113],256],120163:[[114],256],120164:[[115],256],120165:[[116],256],120166:[[117],256],120167:[[118],256],120168:[[119],256],120169:[[120],256],120170:[[121],256],120171:[[122],256],120172:[[65],256],120173:[[66],256],120174:[[67],256],120175:[[68],256],120176:[[69],256],120177:[[70],256],120178:[[71],256],120179:[[72],256],120180:[[73],256],120181:[[74],256],120182:[[75],256],120183:[[76],256],120184:[[77],256],120185:[[78],256],120186:[[79],256],120187:[[80],256],120188:[[81],256],120189:[[82],256],120190:[[83],256],120191:[[84],256],120192:[[85],256],120193:[[86],256],120194:[[87],256],120195:[[88],256],120196:[[89],256],120197:[[90],256],120198:[[97],256],120199:[[98],256],120200:[[99],256],120201:[[100],256],120202:[[101],256],120203:[[102],256],120204:[[103],256],120205:[[104],256],120206:[[105],256],120207:[[106],256],120208:[[107],256],120209:[[108],256],120210:[[109],256],120211:[[110],256],120212:[[111],256],120213:[[112],256],120214:[[113],256],120215:[[114],256],120216:[[115],256],120217:[[116],256],120218:[[117],256],120219:[[118],256],120220:[[119],256],120221:[[120],256],120222:[[121],256],120223:[[122],256],120224:[[65],256],120225:[[66],256],120226:[[67],256],120227:[[68],256],120228:[[69],256],120229:[[70],256],120230:[[71],256],120231:[[72],256],120232:[[73],256],120233:[[74],256],120234:[[75],256],120235:[[76],256],120236:[[77],256],120237:[[78],256],120238:[[79],256],120239:[[80],256],120240:[[81],256],120241:[[82],256],120242:[[83],256],120243:[[84],256],120244:[[85],256],120245:[[86],256],120246:[[87],256],120247:[[88],256],120248:[[89],256],120249:[[90],256],120250:[[97],256],120251:[[98],256],120252:[[99],256],120253:[[100],256],120254:[[101],256],120255:[[102],256],120256:[[103],256],120257:[[104],256],120258:[[105],256],120259:[[106],256],120260:[[107],256],120261:[[108],256],120262:[[109],256],120263:[[110],256],120264:[[111],256],120265:[[112],256],120266:[[113],256],120267:[[114],256],120268:[[115],256],120269:[[116],256],120270:[[117],256],120271:[[118],256],120272:[[119],256],120273:[[120],256],120274:[[121],256],120275:[[122],256],120276:[[65],256],120277:[[66],256],120278:[[67],256],120279:[[68],256],120280:[[69],256],120281:[[70],256],120282:[[71],256],120283:[[72],256],120284:[[73],256],120285:[[74],256],120286:[[75],256],120287:[[76],256],120288:[[77],256],120289:[[78],256],120290:[[79],256],120291:[[80],256],120292:[[81],256],120293:[[82],256],120294:[[83],256],120295:[[84],256],120296:[[85],256],120297:[[86],256],120298:[[87],256],120299:[[88],256],120300:[[89],256],120301:[[90],256],120302:[[97],256],120303:[[98],256],120304:[[99],256],120305:[[100],256],120306:[[101],256],120307:[[102],256],120308:[[103],256],120309:[[104],256],120310:[[105],256],120311:[[106],256],120312:[[107],256],120313:[[108],256],120314:[[109],256],120315:[[110],256],120316:[[111],256],120317:[[112],256],120318:[[113],256],120319:[[114],256]},
56
+ 54784:{120320:[[115],256],120321:[[116],256],120322:[[117],256],120323:[[118],256],120324:[[119],256],120325:[[120],256],120326:[[121],256],120327:[[122],256],120328:[[65],256],120329:[[66],256],120330:[[67],256],120331:[[68],256],120332:[[69],256],120333:[[70],256],120334:[[71],256],120335:[[72],256],120336:[[73],256],120337:[[74],256],120338:[[75],256],120339:[[76],256],120340:[[77],256],120341:[[78],256],120342:[[79],256],120343:[[80],256],120344:[[81],256],120345:[[82],256],120346:[[83],256],120347:[[84],256],120348:[[85],256],120349:[[86],256],120350:[[87],256],120351:[[88],256],120352:[[89],256],120353:[[90],256],120354:[[97],256],120355:[[98],256],120356:[[99],256],120357:[[100],256],120358:[[101],256],120359:[[102],256],120360:[[103],256],120361:[[104],256],120362:[[105],256],120363:[[106],256],120364:[[107],256],120365:[[108],256],120366:[[109],256],120367:[[110],256],120368:[[111],256],120369:[[112],256],120370:[[113],256],120371:[[114],256],120372:[[115],256],120373:[[116],256],120374:[[117],256],120375:[[118],256],120376:[[119],256],120377:[[120],256],120378:[[121],256],120379:[[122],256],120380:[[65],256],120381:[[66],256],120382:[[67],256],120383:[[68],256],120384:[[69],256],120385:[[70],256],120386:[[71],256],120387:[[72],256],120388:[[73],256],120389:[[74],256],120390:[[75],256],120391:[[76],256],120392:[[77],256],120393:[[78],256],120394:[[79],256],120395:[[80],256],120396:[[81],256],120397:[[82],256],120398:[[83],256],120399:[[84],256],120400:[[85],256],120401:[[86],256],120402:[[87],256],120403:[[88],256],120404:[[89],256],120405:[[90],256],120406:[[97],256],120407:[[98],256],120408:[[99],256],120409:[[100],256],120410:[[101],256],120411:[[102],256],120412:[[103],256],120413:[[104],256],120414:[[105],256],120415:[[106],256],120416:[[107],256],120417:[[108],256],120418:[[109],256],120419:[[110],256],120420:[[111],256],120421:[[112],256],120422:[[113],256],120423:[[114],256],120424:[[115],256],120425:[[116],256],120426:[[117],256],120427:[[118],256],120428:[[119],256],120429:[[120],256],120430:[[121],256],120431:[[122],256],120432:[[65],256],120433:[[66],256],120434:[[67],256],120435:[[68],256],120436:[[69],256],120437:[[70],256],120438:[[71],256],120439:[[72],256],120440:[[73],256],120441:[[74],256],120442:[[75],256],120443:[[76],256],120444:[[77],256],120445:[[78],256],120446:[[79],256],120447:[[80],256],120448:[[81],256],120449:[[82],256],120450:[[83],256],120451:[[84],256],120452:[[85],256],120453:[[86],256],120454:[[87],256],120455:[[88],256],120456:[[89],256],120457:[[90],256],120458:[[97],256],120459:[[98],256],120460:[[99],256],120461:[[100],256],120462:[[101],256],120463:[[102],256],120464:[[103],256],120465:[[104],256],120466:[[105],256],120467:[[106],256],120468:[[107],256],120469:[[108],256],120470:[[109],256],120471:[[110],256],120472:[[111],256],120473:[[112],256],120474:[[113],256],120475:[[114],256],120476:[[115],256],120477:[[116],256],120478:[[117],256],120479:[[118],256],120480:[[119],256],120481:[[120],256],120482:[[121],256],120483:[[122],256],120484:[[305],256],120485:[[567],256],120488:[[913],256],120489:[[914],256],120490:[[915],256],120491:[[916],256],120492:[[917],256],120493:[[918],256],120494:[[919],256],120495:[[920],256],120496:[[921],256],120497:[[922],256],120498:[[923],256],120499:[[924],256],120500:[[925],256],120501:[[926],256],120502:[[927],256],120503:[[928],256],120504:[[929],256],120505:[[1012],256],120506:[[931],256],120507:[[932],256],120508:[[933],256],120509:[[934],256],120510:[[935],256],120511:[[936],256],120512:[[937],256],120513:[[8711],256],120514:[[945],256],120515:[[946],256],120516:[[947],256],120517:[[948],256],120518:[[949],256],120519:[[950],256],120520:[[951],256],120521:[[952],256],120522:[[953],256],120523:[[954],256],120524:[[955],256],120525:[[956],256],120526:[[957],256],120527:[[958],256],120528:[[959],256],120529:[[960],256],120530:[[961],256],120531:[[962],256],120532:[[963],256],120533:[[964],256],120534:[[965],256],120535:[[966],256],120536:[[967],256],120537:[[968],256],120538:[[969],256],120539:[[8706],256],120540:[[1013],256],120541:[[977],256],120542:[[1008],256],120543:[[981],256],120544:[[1009],256],120545:[[982],256],120546:[[913],256],120547:[[914],256],120548:[[915],256],120549:[[916],256],120550:[[917],256],120551:[[918],256],120552:[[919],256],120553:[[920],256],120554:[[921],256],120555:[[922],256],120556:[[923],256],120557:[[924],256],120558:[[925],256],120559:[[926],256],120560:[[927],256],120561:[[928],256],120562:[[929],256],120563:[[1012],256],120564:[[931],256],120565:[[932],256],120566:[[933],256],120567:[[934],256],120568:[[935],256],120569:[[936],256],120570:[[937],256],120571:[[8711],256],120572:[[945],256],120573:[[946],256],120574:[[947],256],120575:[[948],256]},
57
+ 55040:{120576:[[949],256],120577:[[950],256],120578:[[951],256],120579:[[952],256],120580:[[953],256],120581:[[954],256],120582:[[955],256],120583:[[956],256],120584:[[957],256],120585:[[958],256],120586:[[959],256],120587:[[960],256],120588:[[961],256],120589:[[962],256],120590:[[963],256],120591:[[964],256],120592:[[965],256],120593:[[966],256],120594:[[967],256],120595:[[968],256],120596:[[969],256],120597:[[8706],256],120598:[[1013],256],120599:[[977],256],120600:[[1008],256],120601:[[981],256],120602:[[1009],256],120603:[[982],256],120604:[[913],256],120605:[[914],256],120606:[[915],256],120607:[[916],256],120608:[[917],256],120609:[[918],256],120610:[[919],256],120611:[[920],256],120612:[[921],256],120613:[[922],256],120614:[[923],256],120615:[[924],256],120616:[[925],256],120617:[[926],256],120618:[[927],256],120619:[[928],256],120620:[[929],256],120621:[[1012],256],120622:[[931],256],120623:[[932],256],120624:[[933],256],120625:[[934],256],120626:[[935],256],120627:[[936],256],120628:[[937],256],120629:[[8711],256],120630:[[945],256],120631:[[946],256],120632:[[947],256],120633:[[948],256],120634:[[949],256],120635:[[950],256],120636:[[951],256],120637:[[952],256],120638:[[953],256],120639:[[954],256],120640:[[955],256],120641:[[956],256],120642:[[957],256],120643:[[958],256],120644:[[959],256],120645:[[960],256],120646:[[961],256],120647:[[962],256],120648:[[963],256],120649:[[964],256],120650:[[965],256],120651:[[966],256],120652:[[967],256],120653:[[968],256],120654:[[969],256],120655:[[8706],256],120656:[[1013],256],120657:[[977],256],120658:[[1008],256],120659:[[981],256],120660:[[1009],256],120661:[[982],256],120662:[[913],256],120663:[[914],256],120664:[[915],256],120665:[[916],256],120666:[[917],256],120667:[[918],256],120668:[[919],256],120669:[[920],256],120670:[[921],256],120671:[[922],256],120672:[[923],256],120673:[[924],256],120674:[[925],256],120675:[[926],256],120676:[[927],256],120677:[[928],256],120678:[[929],256],120679:[[1012],256],120680:[[931],256],120681:[[932],256],120682:[[933],256],120683:[[934],256],120684:[[935],256],120685:[[936],256],120686:[[937],256],120687:[[8711],256],120688:[[945],256],120689:[[946],256],120690:[[947],256],120691:[[948],256],120692:[[949],256],120693:[[950],256],120694:[[951],256],120695:[[952],256],120696:[[953],256],120697:[[954],256],120698:[[955],256],120699:[[956],256],120700:[[957],256],120701:[[958],256],120702:[[959],256],120703:[[960],256],120704:[[961],256],120705:[[962],256],120706:[[963],256],120707:[[964],256],120708:[[965],256],120709:[[966],256],120710:[[967],256],120711:[[968],256],120712:[[969],256],120713:[[8706],256],120714:[[1013],256],120715:[[977],256],120716:[[1008],256],120717:[[981],256],120718:[[1009],256],120719:[[982],256],120720:[[913],256],120721:[[914],256],120722:[[915],256],120723:[[916],256],120724:[[917],256],120725:[[918],256],120726:[[919],256],120727:[[920],256],120728:[[921],256],120729:[[922],256],120730:[[923],256],120731:[[924],256],120732:[[925],256],120733:[[926],256],120734:[[927],256],120735:[[928],256],120736:[[929],256],120737:[[1012],256],120738:[[931],256],120739:[[932],256],120740:[[933],256],120741:[[934],256],120742:[[935],256],120743:[[936],256],120744:[[937],256],120745:[[8711],256],120746:[[945],256],120747:[[946],256],120748:[[947],256],120749:[[948],256],120750:[[949],256],120751:[[950],256],120752:[[951],256],120753:[[952],256],120754:[[953],256],120755:[[954],256],120756:[[955],256],120757:[[956],256],120758:[[957],256],120759:[[958],256],120760:[[959],256],120761:[[960],256],120762:[[961],256],120763:[[962],256],120764:[[963],256],120765:[[964],256],120766:[[965],256],120767:[[966],256],120768:[[967],256],120769:[[968],256],120770:[[969],256],120771:[[8706],256],120772:[[1013],256],120773:[[977],256],120774:[[1008],256],120775:[[981],256],120776:[[1009],256],120777:[[982],256],120778:[[988],256],120779:[[989],256],120782:[[48],256],120783:[[49],256],120784:[[50],256],120785:[[51],256],120786:[[52],256],120787:[[53],256],120788:[[54],256],120789:[[55],256],120790:[[56],256],120791:[[57],256],120792:[[48],256],120793:[[49],256],120794:[[50],256],120795:[[51],256],120796:[[52],256],120797:[[53],256],120798:[[54],256],120799:[[55],256],120800:[[56],256],120801:[[57],256],120802:[[48],256],120803:[[49],256],120804:[[50],256],120805:[[51],256],120806:[[52],256],120807:[[53],256],120808:[[54],256],120809:[[55],256],120810:[[56],256],120811:[[57],256],120812:[[48],256],120813:[[49],256],120814:[[50],256],120815:[[51],256],120816:[[52],256],120817:[[53],256],120818:[[54],256],120819:[[55],256],120820:[[56],256],120821:[[57],256],120822:[[48],256],120823:[[49],256],120824:[[50],256],120825:[[51],256],120826:[[52],256],120827:[[53],256],120828:[[54],256],120829:[[55],256],120830:[[56],256],120831:[[57],256]},
58
+ 60928:{126464:[[1575],256],126465:[[1576],256],126466:[[1580],256],126467:[[1583],256],126469:[[1608],256],126470:[[1586],256],126471:[[1581],256],126472:[[1591],256],126473:[[1610],256],126474:[[1603],256],126475:[[1604],256],126476:[[1605],256],126477:[[1606],256],126478:[[1587],256],126479:[[1593],256],126480:[[1601],256],126481:[[1589],256],126482:[[1602],256],126483:[[1585],256],126484:[[1588],256],126485:[[1578],256],126486:[[1579],256],126487:[[1582],256],126488:[[1584],256],126489:[[1590],256],126490:[[1592],256],126491:[[1594],256],126492:[[1646],256],126493:[[1722],256],126494:[[1697],256],126495:[[1647],256],126497:[[1576],256],126498:[[1580],256],126500:[[1607],256],126503:[[1581],256],126505:[[1610],256],126506:[[1603],256],126507:[[1604],256],126508:[[1605],256],126509:[[1606],256],126510:[[1587],256],126511:[[1593],256],126512:[[1601],256],126513:[[1589],256],126514:[[1602],256],126516:[[1588],256],126517:[[1578],256],126518:[[1579],256],126519:[[1582],256],126521:[[1590],256],126523:[[1594],256],126530:[[1580],256],126535:[[1581],256],126537:[[1610],256],126539:[[1604],256],126541:[[1606],256],126542:[[1587],256],126543:[[1593],256],126545:[[1589],256],126546:[[1602],256],126548:[[1588],256],126551:[[1582],256],126553:[[1590],256],126555:[[1594],256],126557:[[1722],256],126559:[[1647],256],126561:[[1576],256],126562:[[1580],256],126564:[[1607],256],126567:[[1581],256],126568:[[1591],256],126569:[[1610],256],126570:[[1603],256],126572:[[1605],256],126573:[[1606],256],126574:[[1587],256],126575:[[1593],256],126576:[[1601],256],126577:[[1589],256],126578:[[1602],256],126580:[[1588],256],126581:[[1578],256],126582:[[1579],256],126583:[[1582],256],126585:[[1590],256],126586:[[1592],256],126587:[[1594],256],126588:[[1646],256],126590:[[1697],256],126592:[[1575],256],126593:[[1576],256],126594:[[1580],256],126595:[[1583],256],126596:[[1607],256],126597:[[1608],256],126598:[[1586],256],126599:[[1581],256],126600:[[1591],256],126601:[[1610],256],126603:[[1604],256],126604:[[1605],256],126605:[[1606],256],126606:[[1587],256],126607:[[1593],256],126608:[[1601],256],126609:[[1589],256],126610:[[1602],256],126611:[[1585],256],126612:[[1588],256],126613:[[1578],256],126614:[[1579],256],126615:[[1582],256],126616:[[1584],256],126617:[[1590],256],126618:[[1592],256],126619:[[1594],256],126625:[[1576],256],126626:[[1580],256],126627:[[1583],256],126629:[[1608],256],126630:[[1586],256],126631:[[1581],256],126632:[[1591],256],126633:[[1610],256],126635:[[1604],256],126636:[[1605],256],126637:[[1606],256],126638:[[1587],256],126639:[[1593],256],126640:[[1601],256],126641:[[1589],256],126642:[[1602],256],126643:[[1585],256],126644:[[1588],256],126645:[[1578],256],126646:[[1579],256],126647:[[1582],256],126648:[[1584],256],126649:[[1590],256],126650:[[1592],256],126651:[[1594],256]},
59
+ 61696:{127232:[[48,46],256],127233:[[48,44],256],127234:[[49,44],256],127235:[[50,44],256],127236:[[51,44],256],127237:[[52,44],256],127238:[[53,44],256],127239:[[54,44],256],127240:[[55,44],256],127241:[[56,44],256],127242:[[57,44],256],127248:[[40,65,41],256],127249:[[40,66,41],256],127250:[[40,67,41],256],127251:[[40,68,41],256],127252:[[40,69,41],256],127253:[[40,70,41],256],127254:[[40,71,41],256],127255:[[40,72,41],256],127256:[[40,73,41],256],127257:[[40,74,41],256],127258:[[40,75,41],256],127259:[[40,76,41],256],127260:[[40,77,41],256],127261:[[40,78,41],256],127262:[[40,79,41],256],127263:[[40,80,41],256],127264:[[40,81,41],256],127265:[[40,82,41],256],127266:[[40,83,41],256],127267:[[40,84,41],256],127268:[[40,85,41],256],127269:[[40,86,41],256],127270:[[40,87,41],256],127271:[[40,88,41],256],127272:[[40,89,41],256],127273:[[40,90,41],256],127274:[[12308,83,12309],256],127275:[[67],256],127276:[[82],256],127277:[[67,68],256],127278:[[87,90],256],127280:[[65],256],127281:[[66],256],127282:[[67],256],127283:[[68],256],127284:[[69],256],127285:[[70],256],127286:[[71],256],127287:[[72],256],127288:[[73],256],127289:[[74],256],127290:[[75],256],127291:[[76],256],127292:[[77],256],127293:[[78],256],127294:[[79],256],127295:[[80],256],127296:[[81],256],127297:[[82],256],127298:[[83],256],127299:[[84],256],127300:[[85],256],127301:[[86],256],127302:[[87],256],127303:[[88],256],127304:[[89],256],127305:[[90],256],127306:[[72,86],256],127307:[[77,86],256],127308:[[83,68],256],127309:[[83,83],256],127310:[[80,80,86],256],127311:[[87,67],256],127338:[[77,67],256],127339:[[77,68],256],127376:[[68,74],256]},
60
+ 61952:{127488:[[12411,12363],256],127489:[[12467,12467],256],127490:[[12469],256],127504:[[25163],256],127505:[[23383],256],127506:[[21452],256],127507:[[12487],256],127508:[[20108],256],127509:[[22810],256],127510:[[35299],256],127511:[[22825],256],127512:[[20132],256],127513:[[26144],256],127514:[[28961],256],127515:[[26009],256],127516:[[21069],256],127517:[[24460],256],127518:[[20877],256],127519:[[26032],256],127520:[[21021],256],127521:[[32066],256],127522:[[29983],256],127523:[[36009],256],127524:[[22768],256],127525:[[21561],256],127526:[[28436],256],127527:[[25237],256],127528:[[25429],256],127529:[[19968],256],127530:[[19977],256],127531:[[36938],256],127532:[[24038],256],127533:[[20013],256],127534:[[21491],256],127535:[[25351],256],127536:[[36208],256],127537:[[25171],256],127538:[[31105],256],127539:[[31354],256],127540:[[21512],256],127541:[[28288],256],127542:[[26377],256],127543:[[26376],256],127544:[[30003],256],127545:[[21106],256],127546:[[21942],256],127552:[[12308,26412,12309],256],127553:[[12308,19977,12309],256],127554:[[12308,20108,12309],256],127555:[[12308,23433,12309],256],127556:[[12308,28857,12309],256],127557:[[12308,25171,12309],256],127558:[[12308,30423,12309],256],127559:[[12308,21213,12309],256],127560:[[12308,25943,12309],256],127568:[[24471],256],127569:[[21487],256]},
61
+ 63488:{194560:[[20029]],194561:[[20024]],194562:[[20033]],194563:[[131362]],194564:[[20320]],194565:[[20398]],194566:[[20411]],194567:[[20482]],194568:[[20602]],194569:[[20633]],194570:[[20711]],194571:[[20687]],194572:[[13470]],194573:[[132666]],194574:[[20813]],194575:[[20820]],194576:[[20836]],194577:[[20855]],194578:[[132380]],194579:[[13497]],194580:[[20839]],194581:[[20877]],194582:[[132427]],194583:[[20887]],194584:[[20900]],194585:[[20172]],194586:[[20908]],194587:[[20917]],194588:[[168415]],194589:[[20981]],194590:[[20995]],194591:[[13535]],194592:[[21051]],194593:[[21062]],194594:[[21106]],194595:[[21111]],194596:[[13589]],194597:[[21191]],194598:[[21193]],194599:[[21220]],194600:[[21242]],194601:[[21253]],194602:[[21254]],194603:[[21271]],194604:[[21321]],194605:[[21329]],194606:[[21338]],194607:[[21363]],194608:[[21373]],194609:[[21375]],194610:[[21375]],194611:[[21375]],194612:[[133676]],194613:[[28784]],194614:[[21450]],194615:[[21471]],194616:[[133987]],194617:[[21483]],194618:[[21489]],194619:[[21510]],194620:[[21662]],194621:[[21560]],194622:[[21576]],194623:[[21608]],194624:[[21666]],194625:[[21750]],194626:[[21776]],194627:[[21843]],194628:[[21859]],194629:[[21892]],194630:[[21892]],194631:[[21913]],194632:[[21931]],194633:[[21939]],194634:[[21954]],194635:[[22294]],194636:[[22022]],194637:[[22295]],194638:[[22097]],194639:[[22132]],194640:[[20999]],194641:[[22766]],194642:[[22478]],194643:[[22516]],194644:[[22541]],194645:[[22411]],194646:[[22578]],194647:[[22577]],194648:[[22700]],194649:[[136420]],194650:[[22770]],194651:[[22775]],194652:[[22790]],194653:[[22810]],194654:[[22818]],194655:[[22882]],194656:[[136872]],194657:[[136938]],194658:[[23020]],194659:[[23067]],194660:[[23079]],194661:[[23000]],194662:[[23142]],194663:[[14062]],194664:[[14076]],194665:[[23304]],194666:[[23358]],194667:[[23358]],194668:[[137672]],194669:[[23491]],194670:[[23512]],194671:[[23527]],194672:[[23539]],194673:[[138008]],194674:[[23551]],194675:[[23558]],194676:[[24403]],194677:[[23586]],194678:[[14209]],194679:[[23648]],194680:[[23662]],194681:[[23744]],194682:[[23693]],194683:[[138724]],194684:[[23875]],194685:[[138726]],194686:[[23918]],194687:[[23915]],194688:[[23932]],194689:[[24033]],194690:[[24034]],194691:[[14383]],194692:[[24061]],194693:[[24104]],194694:[[24125]],194695:[[24169]],194696:[[14434]],194697:[[139651]],194698:[[14460]],194699:[[24240]],194700:[[24243]],194701:[[24246]],194702:[[24266]],194703:[[172946]],194704:[[24318]],194705:[[140081]],194706:[[140081]],194707:[[33281]],194708:[[24354]],194709:[[24354]],194710:[[14535]],194711:[[144056]],194712:[[156122]],194713:[[24418]],194714:[[24427]],194715:[[14563]],194716:[[24474]],194717:[[24525]],194718:[[24535]],194719:[[24569]],194720:[[24705]],194721:[[14650]],194722:[[14620]],194723:[[24724]],194724:[[141012]],194725:[[24775]],194726:[[24904]],194727:[[24908]],194728:[[24910]],194729:[[24908]],194730:[[24954]],194731:[[24974]],194732:[[25010]],194733:[[24996]],194734:[[25007]],194735:[[25054]],194736:[[25074]],194737:[[25078]],194738:[[25104]],194739:[[25115]],194740:[[25181]],194741:[[25265]],194742:[[25300]],194743:[[25424]],194744:[[142092]],194745:[[25405]],194746:[[25340]],194747:[[25448]],194748:[[25475]],194749:[[25572]],194750:[[142321]],194751:[[25634]],194752:[[25541]],194753:[[25513]],194754:[[14894]],194755:[[25705]],194756:[[25726]],194757:[[25757]],194758:[[25719]],194759:[[14956]],194760:[[25935]],194761:[[25964]],194762:[[143370]],194763:[[26083]],194764:[[26360]],194765:[[26185]],194766:[[15129]],194767:[[26257]],194768:[[15112]],194769:[[15076]],194770:[[20882]],194771:[[20885]],194772:[[26368]],194773:[[26268]],194774:[[32941]],194775:[[17369]],194776:[[26391]],194777:[[26395]],194778:[[26401]],194779:[[26462]],194780:[[26451]],194781:[[144323]],194782:[[15177]],194783:[[26618]],194784:[[26501]],194785:[[26706]],194786:[[26757]],194787:[[144493]],194788:[[26766]],194789:[[26655]],194790:[[26900]],194791:[[15261]],194792:[[26946]],194793:[[27043]],194794:[[27114]],194795:[[27304]],194796:[[145059]],194797:[[27355]],194798:[[15384]],194799:[[27425]],194800:[[145575]],194801:[[27476]],194802:[[15438]],194803:[[27506]],194804:[[27551]],194805:[[27578]],194806:[[27579]],194807:[[146061]],194808:[[138507]],194809:[[146170]],194810:[[27726]],194811:[[146620]],194812:[[27839]],194813:[[27853]],194814:[[27751]],194815:[[27926]]},
62
+ 63744:{63744:[[35912]],63745:[[26356]],63746:[[36554]],63747:[[36040]],63748:[[28369]],63749:[[20018]],63750:[[21477]],63751:[[40860]],63752:[[40860]],63753:[[22865]],63754:[[37329]],63755:[[21895]],63756:[[22856]],63757:[[25078]],63758:[[30313]],63759:[[32645]],63760:[[34367]],63761:[[34746]],63762:[[35064]],63763:[[37007]],63764:[[27138]],63765:[[27931]],63766:[[28889]],63767:[[29662]],63768:[[33853]],63769:[[37226]],63770:[[39409]],63771:[[20098]],63772:[[21365]],63773:[[27396]],63774:[[29211]],63775:[[34349]],63776:[[40478]],63777:[[23888]],63778:[[28651]],63779:[[34253]],63780:[[35172]],63781:[[25289]],63782:[[33240]],63783:[[34847]],63784:[[24266]],63785:[[26391]],63786:[[28010]],63787:[[29436]],63788:[[37070]],63789:[[20358]],63790:[[20919]],63791:[[21214]],63792:[[25796]],63793:[[27347]],63794:[[29200]],63795:[[30439]],63796:[[32769]],63797:[[34310]],63798:[[34396]],63799:[[36335]],63800:[[38706]],63801:[[39791]],63802:[[40442]],63803:[[30860]],63804:[[31103]],63805:[[32160]],63806:[[33737]],63807:[[37636]],63808:[[40575]],63809:[[35542]],63810:[[22751]],63811:[[24324]],63812:[[31840]],63813:[[32894]],63814:[[29282]],63815:[[30922]],63816:[[36034]],63817:[[38647]],63818:[[22744]],63819:[[23650]],63820:[[27155]],63821:[[28122]],63822:[[28431]],63823:[[32047]],63824:[[32311]],63825:[[38475]],63826:[[21202]],63827:[[32907]],63828:[[20956]],63829:[[20940]],63830:[[31260]],63831:[[32190]],63832:[[33777]],63833:[[38517]],63834:[[35712]],63835:[[25295]],63836:[[27138]],63837:[[35582]],63838:[[20025]],63839:[[23527]],63840:[[24594]],63841:[[29575]],63842:[[30064]],63843:[[21271]],63844:[[30971]],63845:[[20415]],63846:[[24489]],63847:[[19981]],63848:[[27852]],63849:[[25976]],63850:[[32034]],63851:[[21443]],63852:[[22622]],63853:[[30465]],63854:[[33865]],63855:[[35498]],63856:[[27578]],63857:[[36784]],63858:[[27784]],63859:[[25342]],63860:[[33509]],63861:[[25504]],63862:[[30053]],63863:[[20142]],63864:[[20841]],63865:[[20937]],63866:[[26753]],63867:[[31975]],63868:[[33391]],63869:[[35538]],63870:[[37327]],63871:[[21237]],63872:[[21570]],63873:[[22899]],63874:[[24300]],63875:[[26053]],63876:[[28670]],63877:[[31018]],63878:[[38317]],63879:[[39530]],63880:[[40599]],63881:[[40654]],63882:[[21147]],63883:[[26310]],63884:[[27511]],63885:[[36706]],63886:[[24180]],63887:[[24976]],63888:[[25088]],63889:[[25754]],63890:[[28451]],63891:[[29001]],63892:[[29833]],63893:[[31178]],63894:[[32244]],63895:[[32879]],63896:[[36646]],63897:[[34030]],63898:[[36899]],63899:[[37706]],63900:[[21015]],63901:[[21155]],63902:[[21693]],63903:[[28872]],63904:[[35010]],63905:[[35498]],63906:[[24265]],63907:[[24565]],63908:[[25467]],63909:[[27566]],63910:[[31806]],63911:[[29557]],63912:[[20196]],63913:[[22265]],63914:[[23527]],63915:[[23994]],63916:[[24604]],63917:[[29618]],63918:[[29801]],63919:[[32666]],63920:[[32838]],63921:[[37428]],63922:[[38646]],63923:[[38728]],63924:[[38936]],63925:[[20363]],63926:[[31150]],63927:[[37300]],63928:[[38584]],63929:[[24801]],63930:[[20102]],63931:[[20698]],63932:[[23534]],63933:[[23615]],63934:[[26009]],63935:[[27138]],63936:[[29134]],63937:[[30274]],63938:[[34044]],63939:[[36988]],63940:[[40845]],63941:[[26248]],63942:[[38446]],63943:[[21129]],63944:[[26491]],63945:[[26611]],63946:[[27969]],63947:[[28316]],63948:[[29705]],63949:[[30041]],63950:[[30827]],63951:[[32016]],63952:[[39006]],63953:[[20845]],63954:[[25134]],63955:[[38520]],63956:[[20523]],63957:[[23833]],63958:[[28138]],63959:[[36650]],63960:[[24459]],63961:[[24900]],63962:[[26647]],63963:[[29575]],63964:[[38534]],63965:[[21033]],63966:[[21519]],63967:[[23653]],63968:[[26131]],63969:[[26446]],63970:[[26792]],63971:[[27877]],63972:[[29702]],63973:[[30178]],63974:[[32633]],63975:[[35023]],63976:[[35041]],63977:[[37324]],63978:[[38626]],63979:[[21311]],63980:[[28346]],63981:[[21533]],63982:[[29136]],63983:[[29848]],63984:[[34298]],63985:[[38563]],63986:[[40023]],63987:[[40607]],63988:[[26519]],63989:[[28107]],63990:[[33256]],63991:[[31435]],63992:[[31520]],63993:[[31890]],63994:[[29376]],63995:[[28825]],63996:[[35672]],63997:[[20160]],63998:[[33590]],63999:[[21050]],194816:[[27966]],194817:[[28023]],194818:[[27969]],194819:[[28009]],194820:[[28024]],194821:[[28037]],194822:[[146718]],194823:[[27956]],194824:[[28207]],194825:[[28270]],194826:[[15667]],194827:[[28363]],194828:[[28359]],194829:[[147153]],194830:[[28153]],194831:[[28526]],194832:[[147294]],194833:[[147342]],194834:[[28614]],194835:[[28729]],194836:[[28702]],194837:[[28699]],194838:[[15766]],194839:[[28746]],194840:[[28797]],194841:[[28791]],194842:[[28845]],194843:[[132389]],194844:[[28997]],194845:[[148067]],194846:[[29084]],194847:[[148395]],194848:[[29224]],194849:[[29237]],194850:[[29264]],194851:[[149000]],194852:[[29312]],194853:[[29333]],194854:[[149301]],194855:[[149524]],194856:[[29562]],194857:[[29579]],194858:[[16044]],194859:[[29605]],194860:[[16056]],194861:[[16056]],194862:[[29767]],194863:[[29788]],194864:[[29809]],194865:[[29829]],194866:[[29898]],194867:[[16155]],194868:[[29988]],194869:[[150582]],194870:[[30014]],194871:[[150674]],194872:[[30064]],194873:[[139679]],194874:[[30224]],194875:[[151457]],194876:[[151480]],194877:[[151620]],194878:[[16380]],194879:[[16392]],194880:[[30452]],194881:[[151795]],194882:[[151794]],194883:[[151833]],194884:[[151859]],194885:[[30494]],194886:[[30495]],194887:[[30495]],194888:[[30538]],194889:[[16441]],194890:[[30603]],194891:[[16454]],194892:[[16534]],194893:[[152605]],194894:[[30798]],194895:[[30860]],194896:[[30924]],194897:[[16611]],194898:[[153126]],194899:[[31062]],194900:[[153242]],194901:[[153285]],194902:[[31119]],194903:[[31211]],194904:[[16687]],194905:[[31296]],194906:[[31306]],194907:[[31311]],194908:[[153980]],194909:[[154279]],194910:[[154279]],194911:[[31470]],194912:[[16898]],194913:[[154539]],194914:[[31686]],194915:[[31689]],194916:[[16935]],194917:[[154752]],194918:[[31954]],194919:[[17056]],194920:[[31976]],194921:[[31971]],194922:[[32000]],194923:[[155526]],194924:[[32099]],194925:[[17153]],194926:[[32199]],194927:[[32258]],194928:[[32325]],194929:[[17204]],194930:[[156200]],194931:[[156231]],194932:[[17241]],194933:[[156377]],194934:[[32634]],194935:[[156478]],194936:[[32661]],194937:[[32762]],194938:[[32773]],194939:[[156890]],194940:[[156963]],194941:[[32864]],194942:[[157096]],194943:[[32880]],194944:[[144223]],194945:[[17365]],194946:[[32946]],194947:[[33027]],194948:[[17419]],194949:[[33086]],194950:[[23221]],194951:[[157607]],194952:[[157621]],194953:[[144275]],194954:[[144284]],194955:[[33281]],194956:[[33284]],194957:[[36766]],194958:[[17515]],194959:[[33425]],194960:[[33419]],194961:[[33437]],194962:[[21171]],194963:[[33457]],194964:[[33459]],194965:[[33469]],194966:[[33510]],194967:[[158524]],194968:[[33509]],194969:[[33565]],194970:[[33635]],194971:[[33709]],194972:[[33571]],194973:[[33725]],194974:[[33767]],194975:[[33879]],194976:[[33619]],194977:[[33738]],194978:[[33740]],194979:[[33756]],194980:[[158774]],194981:[[159083]],194982:[[158933]],194983:[[17707]],194984:[[34033]],194985:[[34035]],194986:[[34070]],194987:[[160714]],194988:[[34148]],194989:[[159532]],194990:[[17757]],194991:[[17761]],194992:[[159665]],194993:[[159954]],194994:[[17771]],194995:[[34384]],194996:[[34396]],194997:[[34407]],194998:[[34409]],194999:[[34473]],195000:[[34440]],195001:[[34574]],195002:[[34530]],195003:[[34681]],195004:[[34600]],195005:[[34667]],195006:[[34694]],195007:[[17879]],195008:[[34785]],195009:[[34817]],195010:[[17913]],195011:[[34912]],195012:[[34915]],195013:[[161383]],195014:[[35031]],195015:[[35038]],195016:[[17973]],195017:[[35066]],195018:[[13499]],195019:[[161966]],195020:[[162150]],195021:[[18110]],195022:[[18119]],195023:[[35488]],195024:[[35565]],195025:[[35722]],195026:[[35925]],195027:[[162984]],195028:[[36011]],195029:[[36033]],195030:[[36123]],195031:[[36215]],195032:[[163631]],195033:[[133124]],195034:[[36299]],195035:[[36284]],195036:[[36336]],195037:[[133342]],195038:[[36564]],195039:[[36664]],195040:[[165330]],195041:[[165357]],195042:[[37012]],195043:[[37105]],195044:[[37137]],195045:[[165678]],195046:[[37147]],195047:[[37432]],195048:[[37591]],195049:[[37592]],195050:[[37500]],195051:[[37881]],195052:[[37909]],195053:[[166906]],195054:[[38283]],195055:[[18837]],195056:[[38327]],195057:[[167287]],195058:[[18918]],195059:[[38595]],195060:[[23986]],195061:[[38691]],195062:[[168261]],195063:[[168474]],195064:[[19054]],195065:[[19062]],195066:[[38880]],195067:[[168970]],195068:[[19122]],195069:[[169110]],195070:[[38923]],195071:[[38923]]},
63
+ 64000:{64000:[[20999]],64001:[[24230]],64002:[[25299]],64003:[[31958]],64004:[[23429]],64005:[[27934]],64006:[[26292]],64007:[[36667]],64008:[[34892]],64009:[[38477]],64010:[[35211]],64011:[[24275]],64012:[[20800]],64013:[[21952]],64016:[[22618]],64018:[[26228]],64021:[[20958]],64022:[[29482]],64023:[[30410]],64024:[[31036]],64025:[[31070]],64026:[[31077]],64027:[[31119]],64028:[[38742]],64029:[[31934]],64030:[[32701]],64032:[[34322]],64034:[[35576]],64037:[[36920]],64038:[[37117]],64042:[[39151]],64043:[[39164]],64044:[[39208]],64045:[[40372]],64046:[[37086]],64047:[[38583]],64048:[[20398]],64049:[[20711]],64050:[[20813]],64051:[[21193]],64052:[[21220]],64053:[[21329]],64054:[[21917]],64055:[[22022]],64056:[[22120]],64057:[[22592]],64058:[[22696]],64059:[[23652]],64060:[[23662]],64061:[[24724]],64062:[[24936]],64063:[[24974]],64064:[[25074]],64065:[[25935]],64066:[[26082]],64067:[[26257]],64068:[[26757]],64069:[[28023]],64070:[[28186]],64071:[[28450]],64072:[[29038]],64073:[[29227]],64074:[[29730]],64075:[[30865]],64076:[[31038]],64077:[[31049]],64078:[[31048]],64079:[[31056]],64080:[[31062]],64081:[[31069]],64082:[[31117]],64083:[[31118]],64084:[[31296]],64085:[[31361]],64086:[[31680]],64087:[[32244]],64088:[[32265]],64089:[[32321]],64090:[[32626]],64091:[[32773]],64092:[[33261]],64093:[[33401]],64094:[[33401]],64095:[[33879]],64096:[[35088]],64097:[[35222]],64098:[[35585]],64099:[[35641]],64100:[[36051]],64101:[[36104]],64102:[[36790]],64103:[[36920]],64104:[[38627]],64105:[[38911]],64106:[[38971]],64107:[[24693]],64108:[[148206]],64109:[[33304]],64112:[[20006]],64113:[[20917]],64114:[[20840]],64115:[[20352]],64116:[[20805]],64117:[[20864]],64118:[[21191]],64119:[[21242]],64120:[[21917]],64121:[[21845]],64122:[[21913]],64123:[[21986]],64124:[[22618]],64125:[[22707]],64126:[[22852]],64127:[[22868]],64128:[[23138]],64129:[[23336]],64130:[[24274]],64131:[[24281]],64132:[[24425]],64133:[[24493]],64134:[[24792]],64135:[[24910]],64136:[[24840]],64137:[[24974]],64138:[[24928]],64139:[[25074]],64140:[[25140]],64141:[[25540]],64142:[[25628]],64143:[[25682]],64144:[[25942]],64145:[[26228]],64146:[[26391]],64147:[[26395]],64148:[[26454]],64149:[[27513]],64150:[[27578]],64151:[[27969]],64152:[[28379]],64153:[[28363]],64154:[[28450]],64155:[[28702]],64156:[[29038]],64157:[[30631]],64158:[[29237]],64159:[[29359]],64160:[[29482]],64161:[[29809]],64162:[[29958]],64163:[[30011]],64164:[[30237]],64165:[[30239]],64166:[[30410]],64167:[[30427]],64168:[[30452]],64169:[[30538]],64170:[[30528]],64171:[[30924]],64172:[[31409]],64173:[[31680]],64174:[[31867]],64175:[[32091]],64176:[[32244]],64177:[[32574]],64178:[[32773]],64179:[[33618]],64180:[[33775]],64181:[[34681]],64182:[[35137]],64183:[[35206]],64184:[[35222]],64185:[[35519]],64186:[[35576]],64187:[[35531]],64188:[[35585]],64189:[[35582]],64190:[[35565]],64191:[[35641]],64192:[[35722]],64193:[[36104]],64194:[[36664]],64195:[[36978]],64196:[[37273]],64197:[[37494]],64198:[[38524]],64199:[[38627]],64200:[[38742]],64201:[[38875]],64202:[[38911]],64203:[[38923]],64204:[[38971]],64205:[[39698]],64206:[[40860]],64207:[[141386]],64208:[[141380]],64209:[[144341]],64210:[[15261]],64211:[[16408]],64212:[[16441]],64213:[[152137]],64214:[[154832]],64215:[[163539]],64216:[[40771]],64217:[[40846]],195072:[[38953]],195073:[[169398]],195074:[[39138]],195075:[[19251]],195076:[[39209]],195077:[[39335]],195078:[[39362]],195079:[[39422]],195080:[[19406]],195081:[[170800]],195082:[[39698]],195083:[[40000]],195084:[[40189]],195085:[[19662]],195086:[[19693]],195087:[[40295]],195088:[[172238]],195089:[[19704]],195090:[[172293]],195091:[[172558]],195092:[[172689]],195093:[[40635]],195094:[[19798]],195095:[[40697]],195096:[[40702]],195097:[[40709]],195098:[[40719]],195099:[[40726]],195100:[[40763]],195101:[[173568]]},
64
+ 64256:{64256:[[102,102],256],64257:[[102,105],256],64258:[[102,108],256],64259:[[102,102,105],256],64260:[[102,102,108],256],64261:[[383,116],256],64262:[[115,116],256],64275:[[1396,1398],256],64276:[[1396,1381],256],64277:[[1396,1387],256],64278:[[1406,1398],256],64279:[[1396,1389],256],64285:[[1497,1460],512],64286:[,26],64287:[[1522,1463],512],64288:[[1506],256],64289:[[1488],256],64290:[[1491],256],64291:[[1492],256],64292:[[1499],256],64293:[[1500],256],64294:[[1501],256],64295:[[1512],256],64296:[[1514],256],64297:[[43],256],64298:[[1513,1473],512],64299:[[1513,1474],512],64300:[[64329,1473],512],64301:[[64329,1474],512],64302:[[1488,1463],512],64303:[[1488,1464],512],64304:[[1488,1468],512],64305:[[1489,1468],512],64306:[[1490,1468],512],64307:[[1491,1468],512],64308:[[1492,1468],512],64309:[[1493,1468],512],64310:[[1494,1468],512],64312:[[1496,1468],512],64313:[[1497,1468],512],64314:[[1498,1468],512],64315:[[1499,1468],512],64316:[[1500,1468],512],64318:[[1502,1468],512],64320:[[1504,1468],512],64321:[[1505,1468],512],64323:[[1507,1468],512],64324:[[1508,1468],512],64326:[[1510,1468],512],64327:[[1511,1468],512],64328:[[1512,1468],512],64329:[[1513,1468],512],64330:[[1514,1468],512],64331:[[1493,1465],512],64332:[[1489,1471],512],64333:[[1499,1471],512],64334:[[1508,1471],512],64335:[[1488,1500],256],64336:[[1649],256],64337:[[1649],256],64338:[[1659],256],64339:[[1659],256],64340:[[1659],256],64341:[[1659],256],64342:[[1662],256],64343:[[1662],256],64344:[[1662],256],64345:[[1662],256],64346:[[1664],256],64347:[[1664],256],64348:[[1664],256],64349:[[1664],256],64350:[[1658],256],64351:[[1658],256],64352:[[1658],256],64353:[[1658],256],64354:[[1663],256],64355:[[1663],256],64356:[[1663],256],64357:[[1663],256],64358:[[1657],256],64359:[[1657],256],64360:[[1657],256],64361:[[1657],256],64362:[[1700],256],64363:[[1700],256],64364:[[1700],256],64365:[[1700],256],64366:[[1702],256],64367:[[1702],256],64368:[[1702],256],64369:[[1702],256],64370:[[1668],256],64371:[[1668],256],64372:[[1668],256],64373:[[1668],256],64374:[[1667],256],64375:[[1667],256],64376:[[1667],256],64377:[[1667],256],64378:[[1670],256],64379:[[1670],256],64380:[[1670],256],64381:[[1670],256],64382:[[1671],256],64383:[[1671],256],64384:[[1671],256],64385:[[1671],256],64386:[[1677],256],64387:[[1677],256],64388:[[1676],256],64389:[[1676],256],64390:[[1678],256],64391:[[1678],256],64392:[[1672],256],64393:[[1672],256],64394:[[1688],256],64395:[[1688],256],64396:[[1681],256],64397:[[1681],256],64398:[[1705],256],64399:[[1705],256],64400:[[1705],256],64401:[[1705],256],64402:[[1711],256],64403:[[1711],256],64404:[[1711],256],64405:[[1711],256],64406:[[1715],256],64407:[[1715],256],64408:[[1715],256],64409:[[1715],256],64410:[[1713],256],64411:[[1713],256],64412:[[1713],256],64413:[[1713],256],64414:[[1722],256],64415:[[1722],256],64416:[[1723],256],64417:[[1723],256],64418:[[1723],256],64419:[[1723],256],64420:[[1728],256],64421:[[1728],256],64422:[[1729],256],64423:[[1729],256],64424:[[1729],256],64425:[[1729],256],64426:[[1726],256],64427:[[1726],256],64428:[[1726],256],64429:[[1726],256],64430:[[1746],256],64431:[[1746],256],64432:[[1747],256],64433:[[1747],256],64467:[[1709],256],64468:[[1709],256],64469:[[1709],256],64470:[[1709],256],64471:[[1735],256],64472:[[1735],256],64473:[[1734],256],64474:[[1734],256],64475:[[1736],256],64476:[[1736],256],64477:[[1655],256],64478:[[1739],256],64479:[[1739],256],64480:[[1733],256],64481:[[1733],256],64482:[[1737],256],64483:[[1737],256],64484:[[1744],256],64485:[[1744],256],64486:[[1744],256],64487:[[1744],256],64488:[[1609],256],64489:[[1609],256],64490:[[1574,1575],256],64491:[[1574,1575],256],64492:[[1574,1749],256],64493:[[1574,1749],256],64494:[[1574,1608],256],64495:[[1574,1608],256],64496:[[1574,1735],256],64497:[[1574,1735],256],64498:[[1574,1734],256],64499:[[1574,1734],256],64500:[[1574,1736],256],64501:[[1574,1736],256],64502:[[1574,1744],256],64503:[[1574,1744],256],64504:[[1574,1744],256],64505:[[1574,1609],256],64506:[[1574,1609],256],64507:[[1574,1609],256],64508:[[1740],256],64509:[[1740],256],64510:[[1740],256],64511:[[1740],256]},
65
+ 64512:{64512:[[1574,1580],256],64513:[[1574,1581],256],64514:[[1574,1605],256],64515:[[1574,1609],256],64516:[[1574,1610],256],64517:[[1576,1580],256],64518:[[1576,1581],256],64519:[[1576,1582],256],64520:[[1576,1605],256],64521:[[1576,1609],256],64522:[[1576,1610],256],64523:[[1578,1580],256],64524:[[1578,1581],256],64525:[[1578,1582],256],64526:[[1578,1605],256],64527:[[1578,1609],256],64528:[[1578,1610],256],64529:[[1579,1580],256],64530:[[1579,1605],256],64531:[[1579,1609],256],64532:[[1579,1610],256],64533:[[1580,1581],256],64534:[[1580,1605],256],64535:[[1581,1580],256],64536:[[1581,1605],256],64537:[[1582,1580],256],64538:[[1582,1581],256],64539:[[1582,1605],256],64540:[[1587,1580],256],64541:[[1587,1581],256],64542:[[1587,1582],256],64543:[[1587,1605],256],64544:[[1589,1581],256],64545:[[1589,1605],256],64546:[[1590,1580],256],64547:[[1590,1581],256],64548:[[1590,1582],256],64549:[[1590,1605],256],64550:[[1591,1581],256],64551:[[1591,1605],256],64552:[[1592,1605],256],64553:[[1593,1580],256],64554:[[1593,1605],256],64555:[[1594,1580],256],64556:[[1594,1605],256],64557:[[1601,1580],256],64558:[[1601,1581],256],64559:[[1601,1582],256],64560:[[1601,1605],256],64561:[[1601,1609],256],64562:[[1601,1610],256],64563:[[1602,1581],256],64564:[[1602,1605],256],64565:[[1602,1609],256],64566:[[1602,1610],256],64567:[[1603,1575],256],64568:[[1603,1580],256],64569:[[1603,1581],256],64570:[[1603,1582],256],64571:[[1603,1604],256],64572:[[1603,1605],256],64573:[[1603,1609],256],64574:[[1603,1610],256],64575:[[1604,1580],256],64576:[[1604,1581],256],64577:[[1604,1582],256],64578:[[1604,1605],256],64579:[[1604,1609],256],64580:[[1604,1610],256],64581:[[1605,1580],256],64582:[[1605,1581],256],64583:[[1605,1582],256],64584:[[1605,1605],256],64585:[[1605,1609],256],64586:[[1605,1610],256],64587:[[1606,1580],256],64588:[[1606,1581],256],64589:[[1606,1582],256],64590:[[1606,1605],256],64591:[[1606,1609],256],64592:[[1606,1610],256],64593:[[1607,1580],256],64594:[[1607,1605],256],64595:[[1607,1609],256],64596:[[1607,1610],256],64597:[[1610,1580],256],64598:[[1610,1581],256],64599:[[1610,1582],256],64600:[[1610,1605],256],64601:[[1610,1609],256],64602:[[1610,1610],256],64603:[[1584,1648],256],64604:[[1585,1648],256],64605:[[1609,1648],256],64606:[[32,1612,1617],256],64607:[[32,1613,1617],256],64608:[[32,1614,1617],256],64609:[[32,1615,1617],256],64610:[[32,1616,1617],256],64611:[[32,1617,1648],256],64612:[[1574,1585],256],64613:[[1574,1586],256],64614:[[1574,1605],256],64615:[[1574,1606],256],64616:[[1574,1609],256],64617:[[1574,1610],256],64618:[[1576,1585],256],64619:[[1576,1586],256],64620:[[1576,1605],256],64621:[[1576,1606],256],64622:[[1576,1609],256],64623:[[1576,1610],256],64624:[[1578,1585],256],64625:[[1578,1586],256],64626:[[1578,1605],256],64627:[[1578,1606],256],64628:[[1578,1609],256],64629:[[1578,1610],256],64630:[[1579,1585],256],64631:[[1579,1586],256],64632:[[1579,1605],256],64633:[[1579,1606],256],64634:[[1579,1609],256],64635:[[1579,1610],256],64636:[[1601,1609],256],64637:[[1601,1610],256],64638:[[1602,1609],256],64639:[[1602,1610],256],64640:[[1603,1575],256],64641:[[1603,1604],256],64642:[[1603,1605],256],64643:[[1603,1609],256],64644:[[1603,1610],256],64645:[[1604,1605],256],64646:[[1604,1609],256],64647:[[1604,1610],256],64648:[[1605,1575],256],64649:[[1605,1605],256],64650:[[1606,1585],256],64651:[[1606,1586],256],64652:[[1606,1605],256],64653:[[1606,1606],256],64654:[[1606,1609],256],64655:[[1606,1610],256],64656:[[1609,1648],256],64657:[[1610,1585],256],64658:[[1610,1586],256],64659:[[1610,1605],256],64660:[[1610,1606],256],64661:[[1610,1609],256],64662:[[1610,1610],256],64663:[[1574,1580],256],64664:[[1574,1581],256],64665:[[1574,1582],256],64666:[[1574,1605],256],64667:[[1574,1607],256],64668:[[1576,1580],256],64669:[[1576,1581],256],64670:[[1576,1582],256],64671:[[1576,1605],256],64672:[[1576,1607],256],64673:[[1578,1580],256],64674:[[1578,1581],256],64675:[[1578,1582],256],64676:[[1578,1605],256],64677:[[1578,1607],256],64678:[[1579,1605],256],64679:[[1580,1581],256],64680:[[1580,1605],256],64681:[[1581,1580],256],64682:[[1581,1605],256],64683:[[1582,1580],256],64684:[[1582,1605],256],64685:[[1587,1580],256],64686:[[1587,1581],256],64687:[[1587,1582],256],64688:[[1587,1605],256],64689:[[1589,1581],256],64690:[[1589,1582],256],64691:[[1589,1605],256],64692:[[1590,1580],256],64693:[[1590,1581],256],64694:[[1590,1582],256],64695:[[1590,1605],256],64696:[[1591,1581],256],64697:[[1592,1605],256],64698:[[1593,1580],256],64699:[[1593,1605],256],64700:[[1594,1580],256],64701:[[1594,1605],256],64702:[[1601,1580],256],64703:[[1601,1581],256],64704:[[1601,1582],256],64705:[[1601,1605],256],64706:[[1602,1581],256],64707:[[1602,1605],256],64708:[[1603,1580],256],64709:[[1603,1581],256],64710:[[1603,1582],256],64711:[[1603,1604],256],64712:[[1603,1605],256],64713:[[1604,1580],256],64714:[[1604,1581],256],64715:[[1604,1582],256],64716:[[1604,1605],256],64717:[[1604,1607],256],64718:[[1605,1580],256],64719:[[1605,1581],256],64720:[[1605,1582],256],64721:[[1605,1605],256],64722:[[1606,1580],256],64723:[[1606,1581],256],64724:[[1606,1582],256],64725:[[1606,1605],256],64726:[[1606,1607],256],64727:[[1607,1580],256],64728:[[1607,1605],256],64729:[[1607,1648],256],64730:[[1610,1580],256],64731:[[1610,1581],256],64732:[[1610,1582],256],64733:[[1610,1605],256],64734:[[1610,1607],256],64735:[[1574,1605],256],64736:[[1574,1607],256],64737:[[1576,1605],256],64738:[[1576,1607],256],64739:[[1578,1605],256],64740:[[1578,1607],256],64741:[[1579,1605],256],64742:[[1579,1607],256],64743:[[1587,1605],256],64744:[[1587,1607],256],64745:[[1588,1605],256],64746:[[1588,1607],256],64747:[[1603,1604],256],64748:[[1603,1605],256],64749:[[1604,1605],256],64750:[[1606,1605],256],64751:[[1606,1607],256],64752:[[1610,1605],256],64753:[[1610,1607],256],64754:[[1600,1614,1617],256],64755:[[1600,1615,1617],256],64756:[[1600,1616,1617],256],64757:[[1591,1609],256],64758:[[1591,1610],256],64759:[[1593,1609],256],64760:[[1593,1610],256],64761:[[1594,1609],256],64762:[[1594,1610],256],64763:[[1587,1609],256],64764:[[1587,1610],256],64765:[[1588,1609],256],64766:[[1588,1610],256],64767:[[1581,1609],256]},
66
+ 64768:{64768:[[1581,1610],256],64769:[[1580,1609],256],64770:[[1580,1610],256],64771:[[1582,1609],256],64772:[[1582,1610],256],64773:[[1589,1609],256],64774:[[1589,1610],256],64775:[[1590,1609],256],64776:[[1590,1610],256],64777:[[1588,1580],256],64778:[[1588,1581],256],64779:[[1588,1582],256],64780:[[1588,1605],256],64781:[[1588,1585],256],64782:[[1587,1585],256],64783:[[1589,1585],256],64784:[[1590,1585],256],64785:[[1591,1609],256],64786:[[1591,1610],256],64787:[[1593,1609],256],64788:[[1593,1610],256],64789:[[1594,1609],256],64790:[[1594,1610],256],64791:[[1587,1609],256],64792:[[1587,1610],256],64793:[[1588,1609],256],64794:[[1588,1610],256],64795:[[1581,1609],256],64796:[[1581,1610],256],64797:[[1580,1609],256],64798:[[1580,1610],256],64799:[[1582,1609],256],64800:[[1582,1610],256],64801:[[1589,1609],256],64802:[[1589,1610],256],64803:[[1590,1609],256],64804:[[1590,1610],256],64805:[[1588,1580],256],64806:[[1588,1581],256],64807:[[1588,1582],256],64808:[[1588,1605],256],64809:[[1588,1585],256],64810:[[1587,1585],256],64811:[[1589,1585],256],64812:[[1590,1585],256],64813:[[1588,1580],256],64814:[[1588,1581],256],64815:[[1588,1582],256],64816:[[1588,1605],256],64817:[[1587,1607],256],64818:[[1588,1607],256],64819:[[1591,1605],256],64820:[[1587,1580],256],64821:[[1587,1581],256],64822:[[1587,1582],256],64823:[[1588,1580],256],64824:[[1588,1581],256],64825:[[1588,1582],256],64826:[[1591,1605],256],64827:[[1592,1605],256],64828:[[1575,1611],256],64829:[[1575,1611],256],64848:[[1578,1580,1605],256],64849:[[1578,1581,1580],256],64850:[[1578,1581,1580],256],64851:[[1578,1581,1605],256],64852:[[1578,1582,1605],256],64853:[[1578,1605,1580],256],64854:[[1578,1605,1581],256],64855:[[1578,1605,1582],256],64856:[[1580,1605,1581],256],64857:[[1580,1605,1581],256],64858:[[1581,1605,1610],256],64859:[[1581,1605,1609],256],64860:[[1587,1581,1580],256],64861:[[1587,1580,1581],256],64862:[[1587,1580,1609],256],64863:[[1587,1605,1581],256],64864:[[1587,1605,1581],256],64865:[[1587,1605,1580],256],64866:[[1587,1605,1605],256],64867:[[1587,1605,1605],256],64868:[[1589,1581,1581],256],64869:[[1589,1581,1581],256],64870:[[1589,1605,1605],256],64871:[[1588,1581,1605],256],64872:[[1588,1581,1605],256],64873:[[1588,1580,1610],256],64874:[[1588,1605,1582],256],64875:[[1588,1605,1582],256],64876:[[1588,1605,1605],256],64877:[[1588,1605,1605],256],64878:[[1590,1581,1609],256],64879:[[1590,1582,1605],256],64880:[[1590,1582,1605],256],64881:[[1591,1605,1581],256],64882:[[1591,1605,1581],256],64883:[[1591,1605,1605],256],64884:[[1591,1605,1610],256],64885:[[1593,1580,1605],256],64886:[[1593,1605,1605],256],64887:[[1593,1605,1605],256],64888:[[1593,1605,1609],256],64889:[[1594,1605,1605],256],64890:[[1594,1605,1610],256],64891:[[1594,1605,1609],256],64892:[[1601,1582,1605],256],64893:[[1601,1582,1605],256],64894:[[1602,1605,1581],256],64895:[[1602,1605,1605],256],64896:[[1604,1581,1605],256],64897:[[1604,1581,1610],256],64898:[[1604,1581,1609],256],64899:[[1604,1580,1580],256],64900:[[1604,1580,1580],256],64901:[[1604,1582,1605],256],64902:[[1604,1582,1605],256],64903:[[1604,1605,1581],256],64904:[[1604,1605,1581],256],64905:[[1605,1581,1580],256],64906:[[1605,1581,1605],256],64907:[[1605,1581,1610],256],64908:[[1605,1580,1581],256],64909:[[1605,1580,1605],256],64910:[[1605,1582,1580],256],64911:[[1605,1582,1605],256],64914:[[1605,1580,1582],256],64915:[[1607,1605,1580],256],64916:[[1607,1605,1605],256],64917:[[1606,1581,1605],256],64918:[[1606,1581,1609],256],64919:[[1606,1580,1605],256],64920:[[1606,1580,1605],256],64921:[[1606,1580,1609],256],64922:[[1606,1605,1610],256],64923:[[1606,1605,1609],256],64924:[[1610,1605,1605],256],64925:[[1610,1605,1605],256],64926:[[1576,1582,1610],256],64927:[[1578,1580,1610],256],64928:[[1578,1580,1609],256],64929:[[1578,1582,1610],256],64930:[[1578,1582,1609],256],64931:[[1578,1605,1610],256],64932:[[1578,1605,1609],256],64933:[[1580,1605,1610],256],64934:[[1580,1581,1609],256],64935:[[1580,1605,1609],256],64936:[[1587,1582,1609],256],64937:[[1589,1581,1610],256],64938:[[1588,1581,1610],256],64939:[[1590,1581,1610],256],64940:[[1604,1580,1610],256],64941:[[1604,1605,1610],256],64942:[[1610,1581,1610],256],64943:[[1610,1580,1610],256],64944:[[1610,1605,1610],256],64945:[[1605,1605,1610],256],64946:[[1602,1605,1610],256],64947:[[1606,1581,1610],256],64948:[[1602,1605,1581],256],64949:[[1604,1581,1605],256],64950:[[1593,1605,1610],256],64951:[[1603,1605,1610],256],64952:[[1606,1580,1581],256],64953:[[1605,1582,1610],256],64954:[[1604,1580,1605],256],64955:[[1603,1605,1605],256],64956:[[1604,1580,1605],256],64957:[[1606,1580,1581],256],64958:[[1580,1581,1610],256],64959:[[1581,1580,1610],256],64960:[[1605,1580,1610],256],64961:[[1601,1605,1610],256],64962:[[1576,1581,1610],256],64963:[[1603,1605,1605],256],64964:[[1593,1580,1605],256],64965:[[1589,1605,1605],256],64966:[[1587,1582,1610],256],64967:[[1606,1580,1610],256],65008:[[1589,1604,1746],256],65009:[[1602,1604,1746],256],65010:[[1575,1604,1604,1607],256],65011:[[1575,1603,1576,1585],256],65012:[[1605,1581,1605,1583],256],65013:[[1589,1604,1593,1605],256],65014:[[1585,1587,1608,1604],256],65015:[[1593,1604,1610,1607],256],65016:[[1608,1587,1604,1605],256],65017:[[1589,1604,1609],256],65018:[[1589,1604,1609,32,1575,1604,1604,1607,32,1593,1604,1610,1607,32,1608,1587,1604,1605],256],65019:[[1580,1604,32,1580,1604,1575,1604,1607],256],65020:[[1585,1740,1575,1604],256]},
67
+ 65024:{65040:[[44],256],65041:[[12289],256],65042:[[12290],256],65043:[[58],256],65044:[[59],256],65045:[[33],256],65046:[[63],256],65047:[[12310],256],65048:[[12311],256],65049:[[8230],256],65056:[,230],65057:[,230],65058:[,230],65059:[,230],65060:[,230],65061:[,230],65062:[,230],65072:[[8229],256],65073:[[8212],256],65074:[[8211],256],65075:[[95],256],65076:[[95],256],65077:[[40],256],65078:[[41],256],65079:[[123],256],65080:[[125],256],65081:[[12308],256],65082:[[12309],256],65083:[[12304],256],65084:[[12305],256],65085:[[12298],256],65086:[[12299],256],65087:[[12296],256],65088:[[12297],256],65089:[[12300],256],65090:[[12301],256],65091:[[12302],256],65092:[[12303],256],65095:[[91],256],65096:[[93],256],65097:[[8254],256],65098:[[8254],256],65099:[[8254],256],65100:[[8254],256],65101:[[95],256],65102:[[95],256],65103:[[95],256],65104:[[44],256],65105:[[12289],256],65106:[[46],256],65108:[[59],256],65109:[[58],256],65110:[[63],256],65111:[[33],256],65112:[[8212],256],65113:[[40],256],65114:[[41],256],65115:[[123],256],65116:[[125],256],65117:[[12308],256],65118:[[12309],256],65119:[[35],256],65120:[[38],256],65121:[[42],256],65122:[[43],256],65123:[[45],256],65124:[[60],256],65125:[[62],256],65126:[[61],256],65128:[[92],256],65129:[[36],256],65130:[[37],256],65131:[[64],256],65136:[[32,1611],256],65137:[[1600,1611],256],65138:[[32,1612],256],65140:[[32,1613],256],65142:[[32,1614],256],65143:[[1600,1614],256],65144:[[32,1615],256],65145:[[1600,1615],256],65146:[[32,1616],256],65147:[[1600,1616],256],65148:[[32,1617],256],65149:[[1600,1617],256],65150:[[32,1618],256],65151:[[1600,1618],256],65152:[[1569],256],65153:[[1570],256],65154:[[1570],256],65155:[[1571],256],65156:[[1571],256],65157:[[1572],256],65158:[[1572],256],65159:[[1573],256],65160:[[1573],256],65161:[[1574],256],65162:[[1574],256],65163:[[1574],256],65164:[[1574],256],65165:[[1575],256],65166:[[1575],256],65167:[[1576],256],65168:[[1576],256],65169:[[1576],256],65170:[[1576],256],65171:[[1577],256],65172:[[1577],256],65173:[[1578],256],65174:[[1578],256],65175:[[1578],256],65176:[[1578],256],65177:[[1579],256],65178:[[1579],256],65179:[[1579],256],65180:[[1579],256],65181:[[1580],256],65182:[[1580],256],65183:[[1580],256],65184:[[1580],256],65185:[[1581],256],65186:[[1581],256],65187:[[1581],256],65188:[[1581],256],65189:[[1582],256],65190:[[1582],256],65191:[[1582],256],65192:[[1582],256],65193:[[1583],256],65194:[[1583],256],65195:[[1584],256],65196:[[1584],256],65197:[[1585],256],65198:[[1585],256],65199:[[1586],256],65200:[[1586],256],65201:[[1587],256],65202:[[1587],256],65203:[[1587],256],65204:[[1587],256],65205:[[1588],256],65206:[[1588],256],65207:[[1588],256],65208:[[1588],256],65209:[[1589],256],65210:[[1589],256],65211:[[1589],256],65212:[[1589],256],65213:[[1590],256],65214:[[1590],256],65215:[[1590],256],65216:[[1590],256],65217:[[1591],256],65218:[[1591],256],65219:[[1591],256],65220:[[1591],256],65221:[[1592],256],65222:[[1592],256],65223:[[1592],256],65224:[[1592],256],65225:[[1593],256],65226:[[1593],256],65227:[[1593],256],65228:[[1593],256],65229:[[1594],256],65230:[[1594],256],65231:[[1594],256],65232:[[1594],256],65233:[[1601],256],65234:[[1601],256],65235:[[1601],256],65236:[[1601],256],65237:[[1602],256],65238:[[1602],256],65239:[[1602],256],65240:[[1602],256],65241:[[1603],256],65242:[[1603],256],65243:[[1603],256],65244:[[1603],256],65245:[[1604],256],65246:[[1604],256],65247:[[1604],256],65248:[[1604],256],65249:[[1605],256],65250:[[1605],256],65251:[[1605],256],65252:[[1605],256],65253:[[1606],256],65254:[[1606],256],65255:[[1606],256],65256:[[1606],256],65257:[[1607],256],65258:[[1607],256],65259:[[1607],256],65260:[[1607],256],65261:[[1608],256],65262:[[1608],256],65263:[[1609],256],65264:[[1609],256],65265:[[1610],256],65266:[[1610],256],65267:[[1610],256],65268:[[1610],256],65269:[[1604,1570],256],65270:[[1604,1570],256],65271:[[1604,1571],256],65272:[[1604,1571],256],65273:[[1604,1573],256],65274:[[1604,1573],256],65275:[[1604,1575],256],65276:[[1604,1575],256]},
68
+ 65280:{65281:[[33],256],65282:[[34],256],65283:[[35],256],65284:[[36],256],65285:[[37],256],65286:[[38],256],65287:[[39],256],65288:[[40],256],65289:[[41],256],65290:[[42],256],65291:[[43],256],65292:[[44],256],65293:[[45],256],65294:[[46],256],65295:[[47],256],65296:[[48],256],65297:[[49],256],65298:[[50],256],65299:[[51],256],65300:[[52],256],65301:[[53],256],65302:[[54],256],65303:[[55],256],65304:[[56],256],65305:[[57],256],65306:[[58],256],65307:[[59],256],65308:[[60],256],65309:[[61],256],65310:[[62],256],65311:[[63],256],65312:[[64],256],65313:[[65],256],65314:[[66],256],65315:[[67],256],65316:[[68],256],65317:[[69],256],65318:[[70],256],65319:[[71],256],65320:[[72],256],65321:[[73],256],65322:[[74],256],65323:[[75],256],65324:[[76],256],65325:[[77],256],65326:[[78],256],65327:[[79],256],65328:[[80],256],65329:[[81],256],65330:[[82],256],65331:[[83],256],65332:[[84],256],65333:[[85],256],65334:[[86],256],65335:[[87],256],65336:[[88],256],65337:[[89],256],65338:[[90],256],65339:[[91],256],65340:[[92],256],65341:[[93],256],65342:[[94],256],65343:[[95],256],65344:[[96],256],65345:[[97],256],65346:[[98],256],65347:[[99],256],65348:[[100],256],65349:[[101],256],65350:[[102],256],65351:[[103],256],65352:[[104],256],65353:[[105],256],65354:[[106],256],65355:[[107],256],65356:[[108],256],65357:[[109],256],65358:[[110],256],65359:[[111],256],65360:[[112],256],65361:[[113],256],65362:[[114],256],65363:[[115],256],65364:[[116],256],65365:[[117],256],65366:[[118],256],65367:[[119],256],65368:[[120],256],65369:[[121],256],65370:[[122],256],65371:[[123],256],65372:[[124],256],65373:[[125],256],65374:[[126],256],65375:[[10629],256],65376:[[10630],256],65377:[[12290],256],65378:[[12300],256],65379:[[12301],256],65380:[[12289],256],65381:[[12539],256],65382:[[12530],256],65383:[[12449],256],65384:[[12451],256],65385:[[12453],256],65386:[[12455],256],65387:[[12457],256],65388:[[12515],256],65389:[[12517],256],65390:[[12519],256],65391:[[12483],256],65392:[[12540],256],65393:[[12450],256],65394:[[12452],256],65395:[[12454],256],65396:[[12456],256],65397:[[12458],256],65398:[[12459],256],65399:[[12461],256],65400:[[12463],256],65401:[[12465],256],65402:[[12467],256],65403:[[12469],256],65404:[[12471],256],65405:[[12473],256],65406:[[12475],256],65407:[[12477],256],65408:[[12479],256],65409:[[12481],256],65410:[[12484],256],65411:[[12486],256],65412:[[12488],256],65413:[[12490],256],65414:[[12491],256],65415:[[12492],256],65416:[[12493],256],65417:[[12494],256],65418:[[12495],256],65419:[[12498],256],65420:[[12501],256],65421:[[12504],256],65422:[[12507],256],65423:[[12510],256],65424:[[12511],256],65425:[[12512],256],65426:[[12513],256],65427:[[12514],256],65428:[[12516],256],65429:[[12518],256],65430:[[12520],256],65431:[[12521],256],65432:[[12522],256],65433:[[12523],256],65434:[[12524],256],65435:[[12525],256],65436:[[12527],256],65437:[[12531],256],65438:[[12441],256],65439:[[12442],256],65440:[[12644],256],65441:[[12593],256],65442:[[12594],256],65443:[[12595],256],65444:[[12596],256],65445:[[12597],256],65446:[[12598],256],65447:[[12599],256],65448:[[12600],256],65449:[[12601],256],65450:[[12602],256],65451:[[12603],256],65452:[[12604],256],65453:[[12605],256],65454:[[12606],256],65455:[[12607],256],65456:[[12608],256],65457:[[12609],256],65458:[[12610],256],65459:[[12611],256],65460:[[12612],256],65461:[[12613],256],65462:[[12614],256],65463:[[12615],256],65464:[[12616],256],65465:[[12617],256],65466:[[12618],256],65467:[[12619],256],65468:[[12620],256],65469:[[12621],256],65470:[[12622],256],65474:[[12623],256],65475:[[12624],256],65476:[[12625],256],65477:[[12626],256],65478:[[12627],256],65479:[[12628],256],65482:[[12629],256],65483:[[12630],256],65484:[[12631],256],65485:[[12632],256],65486:[[12633],256],65487:[[12634],256],65490:[[12635],256],65491:[[12636],256],65492:[[12637],256],65493:[[12638],256],65494:[[12639],256],65495:[[12640],256],65498:[[12641],256],65499:[[12642],256],65500:[[12643],256],65504:[[162],256],65505:[[163],256],65506:[[172],256],65507:[[175],256],65508:[[166],256],65509:[[165],256],65510:[[8361],256],65512:[[9474],256],65513:[[8592],256],65514:[[8593],256],65515:[[8594],256],65516:[[8595],256],65517:[[9632],256],65518:[[9675],256]}
69
+ };
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ if (!require('./is-implemented')()) {
4
+ Object.defineProperty(String.prototype, 'normalize',
5
+ { value: require('./shim'), configurable: true, enumerable: false,
6
+ writable: true });
7
+ }
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('./is-implemented')()
4
+ ? String.prototype.normalize
5
+ : require('./shim');
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ var str = 'æøåäüö';
4
+
5
+ module.exports = function () {
6
+ if (typeof str.normalize !== 'function') return false;
7
+ return str.normalize('NFKD') === 'æøåäüö';
8
+ };
@@ -0,0 +1,289 @@
1
+ // Taken from: https://github.com/walling/unorm/blob/master/lib/unorm.js
2
+
3
+ /*
4
+ * UnicodeNormalizer 1.0.0
5
+ * Copyright (c) 2008 Matsuza
6
+ * Dual licensed under the MIT (MIT-LICENSE.txt) and
7
+ * GPL (GPL-LICENSE.txt) licenses.
8
+ * $Date: 2008-06-05 16:44:17 +0200 (Thu, 05 Jun 2008) $
9
+ * $Rev: 13309 $
10
+ */
11
+
12
+ 'use strict';
13
+
14
+ var primitiveSet = require('../../../object/primitive-set')
15
+ , validValue = require('../../../object/valid-value')
16
+ , data = require('./_data')
17
+
18
+ , floor = Math.floor
19
+ , forms = primitiveSet('NFC', 'NFD', 'NFKC', 'NFKD')
20
+
21
+ , DEFAULT_FEATURE = [null, 0, {}], CACHE_THRESHOLD = 10, SBase = 0xAC00
22
+ , LBase = 0x1100, VBase = 0x1161, TBase = 0x11A7, LCount = 19, VCount = 21
23
+ , TCount = 28, NCount = VCount * TCount, SCount = LCount * NCount
24
+ , UChar, cache = {}, cacheCounter = [], i, fromCache, fromData, fromCpOnly
25
+ , fromRuleBasedJamo, fromCpFilter, strategies, UCharIterator
26
+ , RecursDecompIterator, DecompIterator, CompIterator, createIterator
27
+ , normalize;
28
+
29
+ UChar = function (cp, feature) {
30
+ this.codepoint = cp;
31
+ this.feature = feature;
32
+ };
33
+
34
+ // Strategies
35
+ for (i = 0; i <= 0xFF; ++i) cacheCounter[i] = 0;
36
+
37
+ fromCache = function (next, cp, needFeature) {
38
+ var ret = cache[cp];
39
+ if (!ret) {
40
+ ret = next(cp, needFeature);
41
+ if (!!ret.feature && ++cacheCounter[(cp >> 8) & 0xFF] > CACHE_THRESHOLD) {
42
+ cache[cp] = ret;
43
+ }
44
+ }
45
+ return ret;
46
+ };
47
+
48
+ fromData = function (next, cp, needFeature) {
49
+ var hash = cp & 0xFF00, dunit = UChar.udata[hash] || {}, f = dunit[cp];
50
+ return f ? new UChar(cp, f) : new UChar(cp, DEFAULT_FEATURE);
51
+ };
52
+ fromCpOnly = function (next, cp, needFeature) {
53
+ return !!needFeature ? next(cp, needFeature) : new UChar(cp, null);
54
+ };
55
+
56
+ fromRuleBasedJamo = function (next, cp, needFeature) {
57
+ var c, base, i, arr, SIndex, TIndex, feature, j;
58
+ if (cp < LBase || (LBase + LCount <= cp && cp < SBase) ||
59
+ (SBase + SCount < cp)) {
60
+ return next(cp, needFeature);
61
+ }
62
+ if (LBase <= cp && cp < LBase + LCount) {
63
+ c = {};
64
+ base = (cp - LBase) * VCount;
65
+ for (i = 0; i < VCount; ++i) {
66
+ c[VBase + i] = SBase + TCount * (i + base);
67
+ }
68
+ arr = new Array(3);
69
+ arr[2] = c;
70
+ return new UChar(cp, arr);
71
+ }
72
+
73
+ SIndex = cp - SBase;
74
+ TIndex = SIndex % TCount;
75
+ feature = [];
76
+ if (TIndex !== 0) {
77
+ feature[0] = [SBase + SIndex - TIndex, TBase + TIndex];
78
+ } else {
79
+ feature[0] = [LBase + floor(SIndex / NCount), VBase +
80
+ floor((SIndex % NCount) / TCount)];
81
+ feature[2] = {};
82
+ for (j = 1; j < TCount; ++j) {
83
+ feature[2][TBase + j] = cp + j;
84
+ }
85
+ }
86
+ return new UChar(cp, feature);
87
+ };
88
+
89
+ fromCpFilter = function (next, cp, needFeature) {
90
+ return (cp < 60) || ((13311 < cp) && (cp < 42607))
91
+ ? new UChar(cp, DEFAULT_FEATURE) : next(cp, needFeature);
92
+ };
93
+
94
+ strategies = [fromCpFilter, fromCache, fromCpOnly, fromRuleBasedJamo, fromData];
95
+
96
+ UChar.fromCharCode = strategies.reduceRight(function (next, strategy) {
97
+ return function (cp, needFeature) { return strategy(next, cp, needFeature); };
98
+ }, null);
99
+
100
+ UChar.isHighSurrogate = function (cp) { return cp >= 0xD800 && cp <= 0xDBFF; };
101
+ UChar.isLowSurrogate = function (cp) { return cp >= 0xDC00 && cp <= 0xDFFF; };
102
+
103
+ UChar.prototype.prepFeature = function () {
104
+ if (!this.feature) {
105
+ this.feature = UChar.fromCharCode(this.codepoint, true).feature;
106
+ }
107
+ };
108
+
109
+ UChar.prototype.toString = function () {
110
+ var x;
111
+ if (this.codepoint < 0x10000) return String.fromCharCode(this.codepoint);
112
+ x = this.codepoint - 0x10000;
113
+ return String.fromCharCode(floor(x / 0x400) + 0xD800, x % 0x400 + 0xDC00);
114
+ };
115
+
116
+ UChar.prototype.getDecomp = function () {
117
+ this.prepFeature();
118
+ return this.feature[0] || null;
119
+ };
120
+
121
+ UChar.prototype.isCompatibility = function () {
122
+ this.prepFeature();
123
+ return !!this.feature[1] && (this.feature[1] & (1 << 8));
124
+ };
125
+ UChar.prototype.isExclude = function () {
126
+ this.prepFeature();
127
+ return !!this.feature[1] && (this.feature[1] & (1 << 9));
128
+ };
129
+ UChar.prototype.getCanonicalClass = function () {
130
+ this.prepFeature();
131
+ return !!this.feature[1] ? (this.feature[1] & 0xff) : 0;
132
+ };
133
+ UChar.prototype.getComposite = function (following) {
134
+ var cp;
135
+ this.prepFeature();
136
+ if (!this.feature[2]) return null;
137
+ cp = this.feature[2][following.codepoint];
138
+ return cp ? UChar.fromCharCode(cp) : null;
139
+ };
140
+
141
+ UCharIterator = function (str) {
142
+ this.str = str;
143
+ this.cursor = 0;
144
+ };
145
+ UCharIterator.prototype.next = function () {
146
+ if (!!this.str && this.cursor < this.str.length) {
147
+ var cp = this.str.charCodeAt(this.cursor++), d;
148
+ if (UChar.isHighSurrogate(cp) && this.cursor < this.str.length &&
149
+ UChar.isLowSurrogate((d = this.str.charCodeAt(this.cursor)))) {
150
+ cp = (cp - 0xD800) * 0x400 + (d - 0xDC00) + 0x10000;
151
+ ++this.cursor;
152
+ }
153
+ return UChar.fromCharCode(cp);
154
+ }
155
+ this.str = null;
156
+ return null;
157
+ };
158
+
159
+ RecursDecompIterator = function (it, cano) {
160
+ this.it = it;
161
+ this.canonical = cano;
162
+ this.resBuf = [];
163
+ };
164
+
165
+ RecursDecompIterator.prototype.next = function () {
166
+ var recursiveDecomp, uchar;
167
+ recursiveDecomp = function (cano, uchar) {
168
+ var decomp = uchar.getDecomp(), ret, i, a, j;
169
+ if (!!decomp && !(cano && uchar.isCompatibility())) {
170
+ ret = [];
171
+ for (i = 0; i < decomp.length; ++i) {
172
+ a = recursiveDecomp(cano, UChar.fromCharCode(decomp[i]));
173
+ //ret.concat(a); //<-why does not this work?
174
+ //following block is a workaround.
175
+ for (j = 0; j < a.length; ++j) ret.push(a[j]);
176
+ }
177
+ return ret;
178
+ }
179
+ return [uchar];
180
+ };
181
+ if (this.resBuf.length === 0) {
182
+ uchar = this.it.next();
183
+ if (!uchar) return null;
184
+ this.resBuf = recursiveDecomp(this.canonical, uchar);
185
+ }
186
+ return this.resBuf.shift();
187
+ };
188
+
189
+ DecompIterator = function (it) {
190
+ this.it = it;
191
+ this.resBuf = [];
192
+ };
193
+
194
+ DecompIterator.prototype.next = function () {
195
+ var cc, uchar, inspt, uchar2, cc2;
196
+ if (this.resBuf.length === 0) {
197
+ do {
198
+ uchar = this.it.next();
199
+ if (!uchar) break;
200
+ cc = uchar.getCanonicalClass();
201
+ inspt = this.resBuf.length;
202
+ if (cc !== 0) {
203
+ for (inspt; inspt > 0; --inspt) {
204
+ uchar2 = this.resBuf[inspt - 1];
205
+ cc2 = uchar2.getCanonicalClass();
206
+ if (cc2 <= cc) break;
207
+ }
208
+ }
209
+ this.resBuf.splice(inspt, 0, uchar);
210
+ } while (cc !== 0);
211
+ }
212
+ return this.resBuf.shift();
213
+ };
214
+
215
+ CompIterator = function (it) {
216
+ this.it = it;
217
+ this.procBuf = [];
218
+ this.resBuf = [];
219
+ this.lastClass = null;
220
+ };
221
+
222
+ CompIterator.prototype.next = function () {
223
+ var uchar, starter, composite, cc;
224
+ while (this.resBuf.length === 0) {
225
+ uchar = this.it.next();
226
+ if (!uchar) {
227
+ this.resBuf = this.procBuf;
228
+ this.procBuf = [];
229
+ break;
230
+ }
231
+ if (this.procBuf.length === 0) {
232
+ this.lastClass = uchar.getCanonicalClass();
233
+ this.procBuf.push(uchar);
234
+ } else {
235
+ starter = this.procBuf[0];
236
+ composite = starter.getComposite(uchar);
237
+ cc = uchar.getCanonicalClass();
238
+ if (!!composite && (this.lastClass < cc || this.lastClass === 0)) {
239
+ this.procBuf[0] = composite;
240
+ } else {
241
+ if (cc === 0) {
242
+ this.resBuf = this.procBuf;
243
+ this.procBuf = [];
244
+ }
245
+ this.lastClass = cc;
246
+ this.procBuf.push(uchar);
247
+ }
248
+ }
249
+ }
250
+ return this.resBuf.shift();
251
+ };
252
+
253
+ createIterator = function (mode, str) {
254
+ switch (mode) {
255
+ case "NFD":
256
+ return new DecompIterator(
257
+ new RecursDecompIterator(new UCharIterator(str), true)
258
+ );
259
+ case "NFKD":
260
+ return new DecompIterator(
261
+ new RecursDecompIterator(new UCharIterator(str), false)
262
+ );
263
+ case "NFC":
264
+ return new CompIterator(new DecompIterator(
265
+ new RecursDecompIterator(new UCharIterator(str), true)
266
+ ));
267
+ case "NFKC":
268
+ return new CompIterator(new DecompIterator(
269
+ new RecursDecompIterator(new UCharIterator(str), false)
270
+ ));
271
+ }
272
+ throw mode + " is invalid";
273
+ };
274
+ normalize = function (mode, str) {
275
+ var it = createIterator(mode, str), ret = "", uchar;
276
+ while (!!(uchar = it.next())) ret += uchar.toString();
277
+ return ret;
278
+ };
279
+
280
+ /* Unicode data */
281
+ UChar.udata = data;
282
+
283
+ module.exports = function (/*form*/) {
284
+ var str = String(validValue(this)), form = arguments[0];
285
+ if (form === undefined) form = 'NFC';
286
+ else form = String(form);
287
+ if (!forms[form]) throw new RangeError('Invalid normalization form: ' + form);
288
+ return normalize(form, str);
289
+ };