laag-harfbuzz 1.7.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (876) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +57 -0
  3. data/LICENSE.txt +36 -0
  4. data/README.org +34 -0
  5. data/ext/laag/harfbuzz/extconf.rb +16 -0
  6. data/laag-harfbuzz.gemspec +20 -0
  7. data/lib/laag/harfbuzz.rb +29 -0
  8. data/vendor/github.com/harfbuzz/harfbuzz/.ci/deploy-docs.sh +36 -0
  9. data/vendor/github.com/harfbuzz/harfbuzz/.ci/fail.sh +18 -0
  10. data/vendor/github.com/harfbuzz/harfbuzz/.ci/run-coveralls.sh +14 -0
  11. data/vendor/github.com/harfbuzz/harfbuzz/.ci/trigger-coverity.sh +11 -0
  12. data/vendor/github.com/harfbuzz/harfbuzz/.circleci/config.yml +190 -0
  13. data/vendor/github.com/harfbuzz/harfbuzz/.editorconfig +18 -0
  14. data/vendor/github.com/harfbuzz/harfbuzz/.travis.yml +89 -0
  15. data/vendor/github.com/harfbuzz/harfbuzz/AUTHORS +9 -0
  16. data/vendor/github.com/harfbuzz/harfbuzz/BUILD.md +50 -0
  17. data/vendor/github.com/harfbuzz/harfbuzz/CMakeLists.txt +848 -0
  18. data/vendor/github.com/harfbuzz/harfbuzz/COPYING +36 -0
  19. data/vendor/github.com/harfbuzz/harfbuzz/Makefile.am +85 -0
  20. data/vendor/github.com/harfbuzz/harfbuzz/NEWS +1832 -0
  21. data/vendor/github.com/harfbuzz/harfbuzz/README +16 -0
  22. data/vendor/github.com/harfbuzz/harfbuzz/README.md +1 -0
  23. data/vendor/github.com/harfbuzz/harfbuzz/README.python +30 -0
  24. data/vendor/github.com/harfbuzz/harfbuzz/RELEASING.md +99 -0
  25. data/vendor/github.com/harfbuzz/harfbuzz/THANKS +7 -0
  26. data/vendor/github.com/harfbuzz/harfbuzz/TODO +42 -0
  27. data/vendor/github.com/harfbuzz/harfbuzz/appveyor.yml +61 -0
  28. data/vendor/github.com/harfbuzz/harfbuzz/autogen.sh +48 -0
  29. data/vendor/github.com/harfbuzz/harfbuzz/configure.ac +542 -0
  30. data/vendor/github.com/harfbuzz/harfbuzz/docs/HarfBuzz.png +0 -0
  31. data/vendor/github.com/harfbuzz/harfbuzz/docs/HarfBuzz.svg +277 -0
  32. data/vendor/github.com/harfbuzz/harfbuzz/docs/Makefile.am +123 -0
  33. data/vendor/github.com/harfbuzz/harfbuzz/docs/harfbuzz-docs.xml +210 -0
  34. data/vendor/github.com/harfbuzz/harfbuzz/docs/harfbuzz-overrides.txt +0 -0
  35. data/vendor/github.com/harfbuzz/harfbuzz/docs/harfbuzz-sections.txt +627 -0
  36. data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-buffers-language-script-and-direction.xml +77 -0
  37. data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-clusters.xml +304 -0
  38. data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-fonts-and-faces.xml +18 -0
  39. data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-glyph-information.xml +8 -0
  40. data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-hello-harfbuzz.xml +183 -0
  41. data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-install-harfbuzz.xml +70 -0
  42. data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-opentype-features.xml +13 -0
  43. data/vendor/github.com/harfbuzz/harfbuzz/docs/usermanual-what-is-harfbuzz.xml +115 -0
  44. data/vendor/github.com/harfbuzz/harfbuzz/docs/version.xml.in +1 -0
  45. data/vendor/github.com/harfbuzz/harfbuzz/git.mk +400 -0
  46. data/vendor/github.com/harfbuzz/harfbuzz/harfbuzz.doap +24 -0
  47. data/vendor/github.com/harfbuzz/harfbuzz/m4/ax_code_coverage.m4 +264 -0
  48. data/vendor/github.com/harfbuzz/harfbuzz/m4/ax_cxx_compile_stdcxx.m4 +982 -0
  49. data/vendor/github.com/harfbuzz/harfbuzz/m4/ax_pthread.m4 +485 -0
  50. data/vendor/github.com/harfbuzz/harfbuzz/m4/pkg.m4 +157 -0
  51. data/vendor/github.com/harfbuzz/harfbuzz/mingw32.sh +22 -0
  52. data/vendor/github.com/harfbuzz/harfbuzz/mingw64.sh +22 -0
  53. data/vendor/github.com/harfbuzz/harfbuzz/replace-enum-strings.cmake +21 -0
  54. data/vendor/github.com/harfbuzz/harfbuzz/src/Makefile.am +445 -0
  55. data/vendor/github.com/harfbuzz/harfbuzz/src/Makefile.sources +214 -0
  56. data/vendor/github.com/harfbuzz/harfbuzz/src/check-c-linkage-decls.sh +27 -0
  57. data/vendor/github.com/harfbuzz/harfbuzz/src/check-externs.sh +22 -0
  58. data/vendor/github.com/harfbuzz/harfbuzz/src/check-header-guards.sh +24 -0
  59. data/vendor/github.com/harfbuzz/harfbuzz/src/check-includes.sh +44 -0
  60. data/vendor/github.com/harfbuzz/harfbuzz/src/check-libstdc++.sh +44 -0
  61. data/vendor/github.com/harfbuzz/harfbuzz/src/check-static-inits.sh +40 -0
  62. data/vendor/github.com/harfbuzz/harfbuzz/src/check-symbols.sh +62 -0
  63. data/vendor/github.com/harfbuzz/harfbuzz/src/dev-run.sh +98 -0
  64. data/vendor/github.com/harfbuzz/harfbuzz/src/dump-indic-data.cc +43 -0
  65. data/vendor/github.com/harfbuzz/harfbuzz/src/dump-khmer-data.cc +43 -0
  66. data/vendor/github.com/harfbuzz/harfbuzz/src/dump-myanmar-data.cc +43 -0
  67. data/vendor/github.com/harfbuzz/harfbuzz/src/dump-use-data.cc +38 -0
  68. data/vendor/github.com/harfbuzz/harfbuzz/src/gen-arabic-table.py +269 -0
  69. data/vendor/github.com/harfbuzz/harfbuzz/src/gen-def.py +19 -0
  70. data/vendor/github.com/harfbuzz/harfbuzz/src/gen-indic-table.py +260 -0
  71. data/vendor/github.com/harfbuzz/harfbuzz/src/gen-unicode-ranges.py +52 -0
  72. data/vendor/github.com/harfbuzz/harfbuzz/src/gen-use-table.py +484 -0
  73. data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz-config.cmake.in +82 -0
  74. data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz-gobject.pc.in +12 -0
  75. data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz-icu.pc.in +13 -0
  76. data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz-subset.pc.in +12 -0
  77. data/vendor/github.com/harfbuzz/harfbuzz/src/harfbuzz.pc.in +13 -0
  78. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-ankr-table.hh +80 -0
  79. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-common-private.hh +728 -0
  80. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-kerx-table.hh +339 -0
  81. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-morx-table.hh +728 -0
  82. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-private.hh +43 -0
  83. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout-trak-table.hh +201 -0
  84. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-aat-layout.cc +143 -0
  85. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-atomic-private.hh +189 -0
  86. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-blob.cc +504 -0
  87. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-blob.h +129 -0
  88. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-deserialize-json.hh +643 -0
  89. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-deserialize-json.rl +132 -0
  90. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-deserialize-text.hh +571 -0
  91. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-deserialize-text.rl +126 -0
  92. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-private.hh +388 -0
  93. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer-serialize.cc +486 -0
  94. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer.cc +2010 -0
  95. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-buffer.h +562 -0
  96. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-common.cc +1050 -0
  97. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-common.h +397 -0
  98. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-coretext.cc +1401 -0
  99. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-coretext.h +64 -0
  100. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-debug.hh +444 -0
  101. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-deprecated.h +65 -0
  102. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-directwrite.cc +931 -0
  103. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-directwrite.h +38 -0
  104. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-dsalgs.hh +161 -0
  105. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-face-private.hh +111 -0
  106. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-face.cc +506 -0
  107. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-face.h +121 -0
  108. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-fallback-shape.cc +149 -0
  109. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-font-private.hh +561 -0
  110. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-font.cc +1846 -0
  111. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-font.h +641 -0
  112. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ft.cc +783 -0
  113. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ft.h +132 -0
  114. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-glib.cc +431 -0
  115. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-glib.h +56 -0
  116. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject-enums.cc.tmpl +73 -0
  117. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject-enums.h.tmpl +56 -0
  118. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject-structs.cc +83 -0
  119. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject-structs.h +138 -0
  120. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-gobject.h +40 -0
  121. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-graphite2.cc +421 -0
  122. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-graphite2.h +52 -0
  123. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-icu.cc +394 -0
  124. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-icu.h +52 -0
  125. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-mutex-private.hh +141 -0
  126. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-object-private.hh +196 -0
  127. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-open-file-private.hh +372 -0
  128. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-open-type-private.hh +1238 -0
  129. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-cmap-table.hh +789 -0
  130. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-color-cbdt-table.hh +471 -0
  131. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-color-colr-table.hh +142 -0
  132. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-color-cpal-table.hh +208 -0
  133. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-color.cc +183 -0
  134. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-font.cc +281 -0
  135. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-font.h +45 -0
  136. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-glyf-table.hh +473 -0
  137. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-hdmx-table.hh +198 -0
  138. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-head-table.hh +154 -0
  139. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-hhea-table.hh +98 -0
  140. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-hmtx-table.hh +328 -0
  141. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-kern-table.hh +394 -0
  142. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-base-table.hh +655 -0
  143. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-common-private.hh +1773 -0
  144. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-gdef-table.hh +459 -0
  145. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-gpos-table.hh +1654 -0
  146. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-gsub-table.hh +1364 -0
  147. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-gsubgpos-private.hh +2374 -0
  148. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-jstf-table.hh +234 -0
  149. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout-private.hh +683 -0
  150. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout.cc +1313 -0
  151. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-layout.h +338 -0
  152. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-map-private.hh +250 -0
  153. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-map.cc +336 -0
  154. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-math-table.hh +722 -0
  155. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-math.cc +253 -0
  156. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-math.h +209 -0
  157. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-maxp-table.hh +148 -0
  158. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-name-table.hh +138 -0
  159. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-os2-table.hh +181 -0
  160. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-os2-unicode-ranges.hh +247 -0
  161. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-post-macroman.hh +294 -0
  162. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-post-table.hh +282 -0
  163. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic-fallback.hh +354 -0
  164. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic-private.hh +50 -0
  165. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic-table.hh +398 -0
  166. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic-win1256.hh +323 -0
  167. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-arabic.cc +721 -0
  168. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-default.cc +46 -0
  169. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-hangul.cc +431 -0
  170. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-hebrew.cc +186 -0
  171. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic-machine.hh +1319 -0
  172. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic-machine.rl +125 -0
  173. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic-private.hh +401 -0
  174. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic-table.cc +486 -0
  175. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-indic.cc +1569 -0
  176. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-khmer-machine.hh +294 -0
  177. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-khmer-machine.rl +107 -0
  178. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-khmer-private.hh +124 -0
  179. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-khmer.cc +835 -0
  180. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-myanmar-machine.hh +413 -0
  181. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-myanmar-machine.rl +129 -0
  182. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-myanmar-private.hh +171 -0
  183. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-myanmar.cc +401 -0
  184. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-private.hh +397 -0
  185. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-thai.cc +383 -0
  186. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-tibetan.cc +63 -0
  187. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use-machine.hh +502 -0
  188. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use-machine.rl +176 -0
  189. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use-private.hh +97 -0
  190. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use-table.cc +788 -0
  191. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-complex-use.cc +612 -0
  192. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-fallback-private.hh +53 -0
  193. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-fallback.cc +559 -0
  194. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-normalize-private.hh +69 -0
  195. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-normalize.cc +433 -0
  196. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape-private.hh +108 -0
  197. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape.cc +970 -0
  198. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-shape.h +53 -0
  199. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-tag.cc +1094 -0
  200. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-tag.h +59 -0
  201. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var-avar-table.hh +149 -0
  202. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var-fvar-table.hh +209 -0
  203. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var-hvar-table.hh +165 -0
  204. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var-mvar-table.hh +114 -0
  205. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var.cc +159 -0
  206. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot-var.h +105 -0
  207. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ot.h +45 -0
  208. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-private.hh +1073 -0
  209. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-set-digest-private.hh +179 -0
  210. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-set-private.hh +658 -0
  211. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-set.cc +519 -0
  212. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-set.h +165 -0
  213. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape-plan-private.hh +67 -0
  214. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape-plan.cc +578 -0
  215. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape-plan.h +108 -0
  216. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape.cc +161 -0
  217. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shape.h +62 -0
  218. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shaper-impl-private.hh +43 -0
  219. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shaper-list.hh +58 -0
  220. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shaper-private.hh +124 -0
  221. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-shaper.cc +111 -0
  222. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-string-array.hh +81 -0
  223. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-glyf.cc +307 -0
  224. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-glyf.hh +40 -0
  225. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-input.cc +119 -0
  226. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-plan.cc +227 -0
  227. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-plan.hh +85 -0
  228. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset-private.hh +62 -0
  229. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset.cc +339 -0
  230. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-subset.h +83 -0
  231. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn.cc +273 -0
  232. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/COPYING +13 -0
  233. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/Makefile.am +16 -0
  234. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/Makefile.sources +7 -0
  235. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/README +40 -0
  236. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/ucdn.c +360 -0
  237. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/ucdn.h +453 -0
  238. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-ucdn/ucdn_db.h +5540 -0
  239. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-unicode-private.hh +371 -0
  240. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-unicode.cc +563 -0
  241. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-unicode.h +471 -0
  242. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-uniscribe.cc +1039 -0
  243. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-uniscribe.h +46 -0
  244. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-utf-private.hh +282 -0
  245. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-version.h +66 -0
  246. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-version.h.in +66 -0
  247. data/vendor/github.com/harfbuzz/harfbuzz/src/hb-warning.cc +39 -0
  248. data/vendor/github.com/harfbuzz/harfbuzz/src/hb.h +51 -0
  249. data/vendor/github.com/harfbuzz/harfbuzz/src/main.cc +201 -0
  250. data/vendor/github.com/harfbuzz/harfbuzz/src/sample.py +78 -0
  251. data/vendor/github.com/harfbuzz/harfbuzz/src/test-buffer-serialize.cc +129 -0
  252. data/vendor/github.com/harfbuzz/harfbuzz/src/test-size-params.cc +94 -0
  253. data/vendor/github.com/harfbuzz/harfbuzz/src/test-unicode-ranges.cc +67 -0
  254. data/vendor/github.com/harfbuzz/harfbuzz/src/test-would-substitute.cc +104 -0
  255. data/vendor/github.com/harfbuzz/harfbuzz/src/test.cc +134 -0
  256. data/vendor/github.com/harfbuzz/harfbuzz/test/CMakeLists.txt +4 -0
  257. data/vendor/github.com/harfbuzz/harfbuzz/test/Makefile.am +15 -0
  258. data/vendor/github.com/harfbuzz/harfbuzz/test/api/.valgrind-suppressions +0 -0
  259. data/vendor/github.com/harfbuzz/harfbuzz/test/api/CMakeLists.txt +29 -0
  260. data/vendor/github.com/harfbuzz/harfbuzz/test/api/Makefile.am +169 -0
  261. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.ab.ttf +0 -0
  262. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.abc.ttf +0 -0
  263. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.abc.widerc.ttf +0 -0
  264. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.ac.ttf +0 -0
  265. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Inconsolata-Regular.ac.widerc.ttf +0 -0
  266. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontEmpty.otf +0 -0
  267. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontFull.otf +0 -0
  268. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontNone.otf +0 -0
  269. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontPartial1.otf +0 -0
  270. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontPartial2.otf +0 -0
  271. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontPartial3.otf +0 -0
  272. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/MathTestFontPartial4.otf +0 -0
  273. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/README +3 -0
  274. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.abc.cmap-format12-only.ttf +0 -0
  275. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.abc.ttf +0 -0
  276. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.ac.cmap-format12-only.ttf +0 -0
  277. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.ac.nohints.ttf +0 -0
  278. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.ac.ttf +0 -0
  279. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.b.ttf +0 -0
  280. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.components.1fc.nohints.ttf +0 -0
  281. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.components.subset.ttf +0 -0
  282. data/vendor/github.com/harfbuzz/harfbuzz/test/api/fonts/Roboto-Regular.components.ttf +0 -0
  283. data/vendor/github.com/harfbuzz/harfbuzz/test/api/hb-subset-test.h +136 -0
  284. data/vendor/github.com/harfbuzz/harfbuzz/test/api/hb-test.h +314 -0
  285. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-blob.c +349 -0
  286. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-buffer.c +884 -0
  287. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-c.c +64 -0
  288. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-common.c +225 -0
  289. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-cplusplus.cc +30 -0
  290. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-font.c +550 -0
  291. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-object.c +375 -0
  292. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-ot-color.c +319 -0
  293. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-ot-math.c +712 -0
  294. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-ot-tag.c +320 -0
  295. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-set.c +399 -0
  296. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-shape.c +208 -0
  297. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-cmap.c +82 -0
  298. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-glyf.c +183 -0
  299. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-hdmx.c +81 -0
  300. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-hmtx.c +162 -0
  301. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-subset-os2.c +59 -0
  302. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-unicode.c +937 -0
  303. data/vendor/github.com/harfbuzz/harfbuzz/test/api/test-version.c +81 -0
  304. data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/CMakeLists.txt +18 -0
  305. data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/Makefile.am +52 -0
  306. data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/README +21 -0
  307. data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/hb-fuzzer.cc +52 -0
  308. data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/hb-fuzzer.hh +4 -0
  309. data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/main.cc +21 -0
  310. data/vendor/github.com/harfbuzz/harfbuzz/test/fuzzing/run-fuzzer-tests.py +32 -0
  311. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/CMakeLists.txt +17 -0
  312. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/Makefile.am +35 -0
  313. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/README.md +41 -0
  314. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/Makefile.am +13 -0
  315. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/COPYING +95 -0
  316. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/Makefile.am +20 -0
  317. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/Makefile.sources +47 -0
  318. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/0509e80afb379d16560e9e47bdd7d888bebdebc6.ttf +0 -0
  319. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/051d92f8bc6ff724511b296c27623f824de256e9.ttf +0 -0
  320. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/074a5ae6b19de8f29772fdd5df2d3d833f81f5e6.ttf +0 -0
  321. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/07f054357ff8638bac3711b422a1e31180bba863.ttf +0 -0
  322. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/15dfc433a135a658b9f4b1a861b5cdd9658ccbb9.ttf +0 -0
  323. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1735326da89f0818cd8c51a0600e9789812c0f94.ttf +0 -0
  324. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/191826b9643e3f124d865d617ae609db6a2ce203.ttf +0 -0
  325. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1a3d8f381387dd29be1e897e4b5100ac8b4829e1.ttf +0 -0
  326. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1a6f1687b7a221f9f2c834b0b360d3c8463b6daf.ttf +0 -0
  327. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1c04a16f32a39c26c851b7fc014d2e8d298ba2b8.ttf +0 -0
  328. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1c2c3fc37b2d4c3cb2ef726c6cdaaabd4b7f3eb9.ttf +0 -0
  329. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1c2fb74c1b2aa173262734c1f616148f1648cfd6.ttf +0 -0
  330. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/1ed7e9064f008f62de6ff0207bb4dd29409597a5.ttf +0 -0
  331. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/205edd09bd3d141cc9580f650109556cc28b22cb.ttf +0 -0
  332. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/217a934cfe15c548b572c203dceb2befdf026462.ttf +0 -0
  333. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/21b7fb9c1eeae260473809fbc1fe330f66a507cd.ttf +0 -0
  334. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/226bc2deab3846f1a682085f70c67d0421014144.ttf +0 -0
  335. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/233c1e252e737ca79e03a9fd56b71aaa4a230f2b.ttf +0 -0
  336. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/243798dd281c1c77c065958e1ff467420faa9bde.ttf +0 -0
  337. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/24b8d24d00ae86f49791b746da4c9d3f717a51a8.ttf +0 -0
  338. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/270b89df543a7e48e206a2d830c0e10e5265c630.ttf +0 -0
  339. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/298c9e1d955f10f6f72c6915c3c6ff9bf9695cec.ttf +0 -0
  340. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/2de1ab4907ab688c0cfc236b0bf51151db38bf2e.ttf +0 -0
  341. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/319f5d7ebffbefc5c5e6569f8cea73444d7a7268.ttf +0 -0
  342. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/341421e629668b1a1242245d39238ca48432d35d.ttf +0 -0
  343. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/3493e92eaded2661cadde752a39f9d58b11f0326.ttf +0 -0
  344. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/3511ff5c1647150595846ac414c595cccac34f18.ttf +0 -0
  345. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/37033cc5cf37bb223d7355153016b6ccece93b28.ttf +0 -0
  346. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/373e67bf41ca264e260a9716162b71a23549e885.ttf +0 -0
  347. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/375d6ae32a3cbe52fbf81a4e5777e3377675d5a3.ttf +0 -0
  348. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/3cae6bfe5b57c07ba81ddbd54c02fe4f3a1e3bf6.ttf +0 -0
  349. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/3d0b77a2360aa6faa1385aaa510509ab70dfbeff.ttf +0 -0
  350. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/43979b90b2dd929723cf4fe1715990bcb9c9a56b.ttf +0 -0
  351. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/43ef465752be9af900745f72fe29cb853a1401a5.ttf +0 -0
  352. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/45855bc8d46332b39c4ab9e2ee1a26b1f896da6b.ttf +0 -0
  353. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/49c9f7485c1392fa09a1b801bc2ffea79275f22e.ttf +0 -0
  354. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/4cce528e99f600ed9c25a2b69e32eb94a03b4ae8.ttf +0 -0
  355. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/4fac3929fc3332834e93673780ec0fe94342d193.ttf +0 -0
  356. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/5028afb650b1bb718ed2131e872fbcce57828fff.ttf +0 -0
  357. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/53374c7ca3657be37efde7ed02ae34229a56ae1f.ttf +0 -0
  358. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/54674a3111d209fb6be0ed31745314b7a8d2c244.ttf +0 -0
  359. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/558661aa659912f4d30ecd27bd09835171a8e2b0.ttf +0 -0
  360. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/55c88ebbe938680b08f92c3de20713183e0c7481.ttf +0 -0
  361. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/56cfd0e18d07f41c38e9598545a6d369127fc6f9.ttf +0 -0
  362. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/573d3a3177c9a8646e94c8a0d7b224334340946a.ttf +0 -0
  363. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/57a9d9f83020155cbb1d2be1f43d82388cbecc88.ttf +0 -0
  364. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/59a585a63b3df608fbeef00956c8c108deec7de6.ttf +0 -0
  365. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/5a5daf5eb5a4db77a2baa3ad9c7a6ed6e0655fa8.ttf +0 -0
  366. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/5dfad7735c6a67085f1b90d4d497e32907db4c78.ttf +0 -0
  367. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/641bd9db850193064d17575053ae2bf8ec149ddc.ttf +0 -0
  368. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/663aef6b019dbf45ffd74089e2b5f2496ceceb18.ttf +0 -0
  369. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/6991b13ce889466be6de3f66e891de2bc0f117ee.ttf +0 -0
  370. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/6ff0fbead4462d9f229167b4e6839eceb8465058.ttf +0 -0
  371. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/706c5d7b625f207bc0d874c67237aad6f1e9cd6f.ttf +0 -0
  372. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/757ebd573617a24aa9dfbf0b885c54875c6fe06b.ttf +0 -0
  373. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/7a37dc4d5bf018456aea291cee06daf004c0221c.ttf +0 -0
  374. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/7e14e7883ed152baa158b80e207b66114c823a8b.ttf +0 -0
  375. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8099955657a54e9ee38a6ba1d6f950ce58e3cc25.ttf +0 -0
  376. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/813c2f8e5512187fd982417a7fb4286728e6f4a8.ttf +0 -0
  377. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/81c368a33816fb20e9f647e8f24e2180f4720263.ttf +0 -0
  378. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8228d035fcd65d62ec9728fb34f42c63be93a5d3.ttf +0 -0
  379. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8240789f6d12d4cfc4b5e8e6f246c3701bcf861f.ttf +0 -0
  380. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/82f4f3b57bb55344e72e70231380202a52af5805.ttf +0 -0
  381. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8454d22037f892e76614e1645d066689a0200e61.ttf +0 -0
  382. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/85414f2552b654585b7a8d13dcc3e8fd9f7970a3.ttf +0 -0
  383. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/856ff9562451293cbeff6f396d4e3877c4f0a436.ttf +0 -0
  384. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/85fe0be440c64ac77699e21c2f1bd933a919167e.ttf +0 -0
  385. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/87f85d17d26f1fe9ad28d7365101958edaefb967.ttf +0 -0
  386. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/8a9fea2a7384f2116e5b84a9b31f83be7850ce21.ttf +0 -0
  387. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/94a5d6fb15a27521fba9ea4aee9cb39b2d03322a.ttf +0 -0
  388. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/96490dd2ff81233b335a650e7eb660e0e7b2eeea.ttf +0 -0
  389. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/98b7887cff91f722b92a8ff800120954606354f9.ttf +0 -0
  390. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/9d8a94a67932a3ab75a596fc8b5c6d0392ca9e49.ttf +0 -0
  391. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a014549f766436cf55b2ceb40e462038938ee899.ttf +0 -0
  392. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a02a7f0ad42c2922cb37ad1358c9df4eb81f1bca.ttf +0 -0
  393. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a34a7b00f22ffb5fd7eef6933b81c7e71bc2cdfb.ttf +0 -0
  394. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a34a9191d9376bda419836effeef7e75c1386016.ttf +0 -0
  395. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a69118c2c2ada48ff803d9149daa54c9ebdae30e.ttf +0 -0
  396. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a6c76d1bafde4a0b1026ebcc932d2e5c6fd02442.ttf +0 -0
  397. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a919b33197965846f21074b24e30250d67277bce.ttf +0 -0
  398. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/a98e908e2ed21b22228ea59ebcc0f05034c86f2e.ttf +0 -0
  399. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/af3086380b743099c54a3b11b96766039ea62fcd.ttf +0 -0
  400. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/b151cfcdaa77585d77f17a42158e0873fc8e2633.ttf +0 -0
  401. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/b6acef662e0beb8d5fcf5b61c6b0ca69537b7402.ttf +0 -0
  402. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/b9e2aaa0d75fcef6971ec3a96d806ba4a6b31fe2.ttf +0 -0
  403. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bb0c53752e85c3d28973ebc913287b8987d3dfe8.ttf +0 -0
  404. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bb29ce50df2bdba2d10726427c6b7609bf460e04.ttf +0 -0
  405. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bb9473d2403488714043bcfb946c9f78b86ad627.ttf +0 -0
  406. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bbf4a308c402f0678c3e82844892a4da2ebe598f.ttf +0 -0
  407. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bf39b0e91ef9807f15a9e283a21a14a209fd2cfc.ttf +0 -0
  408. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/bf962d3202883a820aed019d9b5c1838c2ff69c6.ttf +0 -0
  409. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/c4e48b0886ef460f532fb49f00047ec92c432ec0.ttf +0 -0
  410. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/cc5f3d2d717fb6bd4dfae1c16d48a2cb8e12233b.ttf +0 -0
  411. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/d23d76ea0909c14972796937ba072b5a40c1e257.ttf +0 -0
  412. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/d629e7fedc0b350222d7987345fe61613fa3929a.ttf +0 -0
  413. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/d9b8bc10985f24796826c29f7ccba3d0ae11ec02.ttf +0 -0
  414. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/dd9f0c7c7c36f75a18be0cab1cddf8f3ab0f366b.ttf +0 -0
  415. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/df768b9c257e0c9c35786c47cae15c46571d56be.ttf +0 -0
  416. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/e207635780b42f898d58654b65098763e340f5c7.ttf +0 -0
  417. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/e68a88939e0f06e34d2bc911f09b70890289c8fd.ttf +0 -0
  418. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/e88c339237f52d21e01c55f01b9c1b4cc14a0467.ttf +0 -0
  419. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/e90374e5e439e00725b4fe7a8d73db57c5a97f82.ttf +0 -0
  420. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/ee39587d13b2afa5499cc79e45780aa79293bbd4.ttf +0 -0
  421. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/ef2511f215aa3ca847cbfffbf861793b42170875.ttf +0 -0
  422. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/ef86fe710cfea877bbe0dbb6946a1f88d0661031.ttf +0 -0
  423. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f22416c692720a7d46fadf4af99f4c9e094f00b9.ttf +0 -0
  424. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f443753e8ffe8e8aae606cfba158e00334b6efb1.ttf +0 -0
  425. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f499fbc23865022234775c43503bba2e63978fe1.ttf +0 -0
  426. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f518eb6f6b5eec2946c9fbbbde44e45d46f5e2ac.ttf +0 -0
  427. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/f9b1dd4dcb515e757789a22cb4241107746fd3d0.ttf +0 -0
  428. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/fab39d60d758cb586db5a504f218442cd1395725.ttf +0 -0
  429. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/fbb6c84c9e1fe0c39e152fbe845e51fd81f6748e.ttf +0 -0
  430. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/fcdcffbdf1c4c97c05308d7600e4c283eb47dbca.ttf +0 -0
  431. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/fonts/ffa0f5d2d9025486d8469d8b1fdd983e7632499b.ttf +0 -0
  432. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-fallback-shaping.tests +1 -0
  433. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-feature-order.tests +4 -0
  434. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-like-joining.tests +1 -0
  435. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-mark-order.tests +6 -0
  436. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/arabic-stch.tests +1 -0
  437. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/automatic-fractions.tests +3 -0
  438. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/cluster.tests +2 -0
  439. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/color-fonts.tests +1 -0
  440. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/context-matching.tests +3 -0
  441. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/cursive-positioning.tests +4 -0
  442. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/default-ignorables.tests +2 -0
  443. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/emoji-flag-tags.tests +2 -0
  444. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/fallback-positioning.tests +2 -0
  445. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/fuzzed.tests +23 -0
  446. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/hangul-jamo.tests +2 -0
  447. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/hyphens.tests +2 -0
  448. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-consonant-with-stacker.tests +4 -0
  449. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-init.tests +1 -0
  450. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-joiner-candrabindu.tests +2 -0
  451. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-joiners.tests +2 -0
  452. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-old-spec.tests +2 -0
  453. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-pref-blocking.tests +2 -0
  454. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-script-extensions.tests +2 -0
  455. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-special-cases.tests +3 -0
  456. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/indic-syllable.tests +8 -0
  457. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/language-tags.tests +12 -0
  458. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/ligature-id.tests +36 -0
  459. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/mark-attachment.tests +1 -0
  460. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/mark-filtering-sets.tests +5 -0
  461. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/mongolian-variation-selector.tests +4 -0
  462. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/myanmar-syllable.tests +1 -0
  463. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/simple.tests +2 -0
  464. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/spaces.tests +17 -0
  465. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/tibetan-contractions-1.tests +60 -0
  466. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/tibetan-contractions-2.tests +53 -0
  467. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/tibetan-vowels.tests +11 -0
  468. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/use-marchen.tests +35 -0
  469. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/use-syllable.tests +8 -0
  470. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/use.tests +5 -0
  471. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/variations-rvrn.tests +100 -0
  472. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/vertical.tests +3 -0
  473. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/in-house/tests/zero-width-marks.tests +11 -0
  474. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/COPYING +13 -0
  475. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/DISABLED +35 -0
  476. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/Makefile.am +26 -0
  477. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/Makefile.sources +66 -0
  478. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/README +7 -0
  479. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/extract-tests.py +49 -0
  480. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/AdobeVFPrototype-Subset.otf +0 -0
  481. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/FDArrayTest257.otf +0 -0
  482. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/FDArrayTest65535.otf +0 -0
  483. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/NotoSansBalinese-Regular.ttf +0 -0
  484. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/NotoSansKannada-Regular.ttf +0 -0
  485. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/NotoSerifKannada-Regular.ttf +0 -0
  486. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/Selawik-README.md +60 -0
  487. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/Selawik-variable.ttf +0 -0
  488. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestAVAR.ttf +0 -0
  489. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestCMAP14.otf +0 -0
  490. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestCMAPMacTurkish.ttf +0 -0
  491. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestCVARGVAROne.ttf +0 -0
  492. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestCVARGVARTwo.ttf +0 -0
  493. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGLYFOne.ttf +0 -0
  494. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGPOSFour.ttf +0 -0
  495. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGPOSOne.ttf +0 -0
  496. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGPOSThree.ttf +0 -0
  497. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGPOSTwo.otf +0 -0
  498. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGSUBOne.otf +0 -0
  499. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVAREight.ttf +0 -0
  500. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVARFour.ttf +0 -0
  501. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVARNine.ttf +0 -0
  502. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVAROne.ttf +0 -0
  503. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVARThree.ttf +0 -0
  504. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestGVARTwo.ttf +0 -0
  505. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestHVAROne.otf +0 -0
  506. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestHVARTwo.ttf +0 -0
  507. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestKERNOne.otf +0 -0
  508. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXEight.ttf +0 -0
  509. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXEighteen.ttf +0 -0
  510. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXEleven.ttf +0 -0
  511. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXFour.ttf +0 -0
  512. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXFourteen.ttf +0 -0
  513. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXNine.ttf +0 -0
  514. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXOne.ttf +0 -0
  515. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXSeventeen.ttf +0 -0
  516. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXSixteen.ttf +0 -0
  517. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTen.ttf +0 -0
  518. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXThirteen.ttf +0 -0
  519. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXThree.ttf +0 -0
  520. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwelve.ttf +0 -0
  521. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwenty.ttf +0 -0
  522. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentyfive.ttf +0 -0
  523. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentyone.ttf +0 -0
  524. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentysix.ttf +0 -0
  525. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentythree.ttf +0 -0
  526. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwentytwo.ttf +0 -0
  527. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestMORXTwo.ttf +0 -0
  528. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestShapeAran.ttf +0 -0
  529. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/TestShapeEthi.ttf +0 -0
  530. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/fonts/Zycon.ttf +0 -0
  531. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/AVAR-1.tests +17 -0
  532. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CFF-1.tests +13 -0
  533. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CFF-2.tests +13 -0
  534. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CFF2-1.tests +9 -0
  535. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CMAP-1.tests +4 -0
  536. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CMAP-2.tests +2 -0
  537. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CMAP-3.tests +20 -0
  538. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CVAR-1.tests +3 -0
  539. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/CVAR-2.tests +3 -0
  540. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GLYF-1.tests +1 -0
  541. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-1.tests +19 -0
  542. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-2.tests +3 -0
  543. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-3.tests +4 -0
  544. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-4.tests +4 -0
  545. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GPOS-5.tests +5 -0
  546. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GSUB-1.tests +1 -0
  547. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GSUB-2.tests +11 -0
  548. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-1.tests +9 -0
  549. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-2.tests +9 -0
  550. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-3.tests +9 -0
  551. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-4.tests +11 -0
  552. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-5.tests +11 -0
  553. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-6.tests +11 -0
  554. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-7.tests +7 -0
  555. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-8.tests +6 -0
  556. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/GVAR-9.tests +10 -0
  557. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/HVAR-1.tests +6 -0
  558. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/HVAR-2.tests +6 -0
  559. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/KERN-1.tests +1 -0
  560. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/KERN-2.tests +1 -0
  561. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-1.tests +1 -0
  562. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-10.tests +1 -0
  563. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-11.tests +1 -0
  564. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-12.tests +3 -0
  565. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-13.tests +1 -0
  566. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-14.tests +2 -0
  567. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-16.tests +1 -0
  568. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-17.tests +1 -0
  569. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-18.tests +4 -0
  570. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-19.tests +2 -0
  571. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-2.tests +16 -0
  572. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-20.tests +7 -0
  573. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-21.tests +1 -0
  574. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-22.tests +1 -0
  575. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-23.tests +1 -0
  576. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-25.tests +9 -0
  577. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-26.tests +2 -0
  578. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-3.tests +16 -0
  579. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-4.tests +15 -0
  580. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-5.tests +25 -0
  581. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-6.tests +1 -0
  582. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-7.tests +1 -0
  583. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-8.tests +3 -0
  584. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/MORX-9.tests +1 -0
  585. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHARAN-1.tests +6 -0
  586. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHBALI-1.tests +22 -0
  587. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHBALI-2.tests +12 -0
  588. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHBALI-3.tests +9 -0
  589. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHKNDA-1.tests +34 -0
  590. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHKNDA-2.tests +16 -0
  591. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/tests/SHKNDA-3.tests +31 -0
  592. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/data/text-rendering-tests/update.sh +46 -0
  593. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-diff +10 -0
  594. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-diff-colorize +7 -0
  595. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-diff-filter-failures +5 -0
  596. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-diff-stat +5 -0
  597. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-unicode-decode +5 -0
  598. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-unicode-encode +5 -0
  599. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb-unicode-prettyname +6 -0
  600. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/hb_test_tools.py +571 -0
  601. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/record-test.sh +107 -0
  602. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/run-tests.py +98 -0
  603. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-persian/mehran.txt +8 -0
  604. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/2grams.txt +601 -0
  605. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/3grams.txt +3415 -0
  606. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/4grams.txt +6316 -0
  607. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/5grams.txt +5029 -0
  608. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/6grams.txt +1542 -0
  609. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/7grams.txt +354 -0
  610. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/8grams.txt +26 -0
  611. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/LICENSE +3 -0
  612. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/README +16 -0
  613. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/language-urdu/crulp/ligatures/SOURCES +4 -0
  614. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/lam-alef.txt +28 -0
  615. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/language-arabic.txt +695 -0
  616. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/language-persian.txt +48 -0
  617. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/language-urdu.txt +188 -0
  618. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/ligature-components.txt +18 -0
  619. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/ligature-diacritics.txt +1 -0
  620. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-arabic/misc/diacritics/mark-skipping.txt +10 -0
  621. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-mongolian/misc/misc.txt +6 -0
  622. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-mongolian/misc/non-joining.txt +8 -0
  623. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-mongolian/misc/poem.txt +4 -0
  624. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-mongolian/misc/variation-selectors.txt +8 -0
  625. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-nko/misc/misc.txt +5 -0
  626. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-phags-pa/misc/misc.txt +14 -0
  627. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-syriac/misc/abbreviation-mark.txt +11 -0
  628. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-arabic/script-syriac/misc/alaph.txt +98 -0
  629. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-ethiopic/misc/misc.txt +1 -0
  630. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-han/misc/cjk-compat.txt +3 -0
  631. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-hiragana/misc/kazuraki-liga-lines.txt +8 -0
  632. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-hiragana/misc/kazuraki-liga.txt +53 -0
  633. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-linear-b/misc/misc.txt +1 -0
  634. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-default/script-tifinagh/misc/misc.txt +10 -0
  635. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-hangul/script-hangul/misc/misc.txt +4 -0
  636. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-hebrew/script-hebrew/misc/diacritics.txt +16 -0
  637. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/LICENSE +19 -0
  638. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/README +13 -0
  639. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/SOURCES +2 -0
  640. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +4 -0
  641. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +40 -0
  642. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +10 -0
  643. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  644. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +11 -0
  645. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
  646. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +6 -0
  647. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +59 -0
  648. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +131 -0
  649. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-assamese/utrrs/gsub/IndicFontFeatureGSUB.txt +139 -0
  650. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/misc/misc.txt +53 -0
  651. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/misc/reph.txt +14 -0
  652. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/LICENSE +19 -0
  653. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/README +13 -0
  654. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/SOURCES +2 -0
  655. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +1 -0
  656. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +36 -0
  657. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +10 -0
  658. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  659. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +12 -0
  660. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
  661. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +6 -0
  662. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +58 -0
  663. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +119 -0
  664. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-bengali/utrrs/gsub/IndicFontFeatureGSUB.txt +215 -0
  665. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/dottedcircle.txt +8 -0
  666. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/eyelash.txt +3 -0
  667. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/joiners.txt +19 -0
  668. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/misc.txt +36 -0
  669. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/spec-deviations.txt +1 -0
  670. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/misc/tricky-reordering.txt +5 -0
  671. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/LICENSE +19 -0
  672. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/README +13 -0
  673. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/SOURCES +2 -0
  674. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalConsonants.txt +8 -0
  675. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +4 -0
  676. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +45 -0
  677. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +14 -0
  678. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-DevnagariSpecificAddition.txt +1 -0
  679. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  680. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-GenericPunctuation.txt +2 -0
  681. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +16 -0
  682. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +10 -0
  683. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +185 -0
  684. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +185 -0
  685. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-devanagari/utrrs/gsub/IndicFontFeatureGSUB.txt +1367 -0
  686. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/LICENSE +19 -0
  687. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/README +13 -0
  688. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/SOURCES +2 -0
  689. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +1 -0
  690. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +34 -0
  691. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +12 -0
  692. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  693. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +13 -0
  694. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
  695. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +7 -0
  696. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +170 -0
  697. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +170 -0
  698. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gujarati/utrrs/gsub/IndicFontFeatureGSUB.txt +1156 -0
  699. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/misc/misc.txt +2 -0
  700. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/LICENSE +19 -0
  701. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/README +13 -0
  702. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/SOURCES +2 -0
  703. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +38 -0
  704. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +9 -0
  705. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  706. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-GurmukhiSpecific.txt +6 -0
  707. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +10 -0
  708. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
  709. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +6 -0
  710. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +22 -0
  711. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +2 -0
  712. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-gurmukhi/utrrs/gsub/IndicFontFeatureGSUB.txt +152 -0
  713. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/misc/misc.txt +20 -0
  714. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/misc/right-matras.txt +7 -0
  715. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/LICENSE +19 -0
  716. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/README +13 -0
  717. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/SOURCES +2 -0
  718. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalConsonants.txt +1 -0
  719. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +4 -0
  720. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +40 -0
  721. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +13 -0
  722. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  723. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +14 -0
  724. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
  725. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +9 -0
  726. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +188 -0
  727. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-kannada/utrrs/gsub/IndicFontFeatureGSUB.txt +306 -0
  728. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/misc/cibu.txt +188 -0
  729. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/misc/dot-reph.txt +15 -0
  730. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/misc/misc.txt +65 -0
  731. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/LICENSE +19 -0
  732. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/README +13 -0
  733. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/SOURCES +2 -0
  734. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +2 -0
  735. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +36 -0
  736. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +12 -0
  737. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  738. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +14 -0
  739. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
  740. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +4 -0
  741. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-malayalam/utrrs/gsub/IndicFontFeatureGSUB.txt +254 -0
  742. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/misc/bindu.txt +2 -0
  743. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/misc/misc.txt +28 -0
  744. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/LICENSE +19 -0
  745. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/README +13 -0
  746. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/SOURCES +2 -0
  747. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalConsonants.txt +3 -0
  748. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +2 -0
  749. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +34 -0
  750. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +12 -0
  751. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  752. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +12 -0
  753. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-OriyaSpecific.txt +2 -0
  754. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
  755. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +8 -0
  756. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-oriya/utrrs/gsub/IndicFontFeatureGSUB.txt +170 -0
  757. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/misc/extensive.txt +4390 -0
  758. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/misc/misc.txt +41 -0
  759. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/misc/reph.txt +3 -0
  760. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/misc/split-matras.txt +4 -0
  761. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/LICENSE +19 -0
  762. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/README +13 -0
  763. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/SOURCES +2 -0
  764. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +41 -0
  765. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +17 -0
  766. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +18 -0
  767. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-Punctuation.txt +1 -0
  768. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +3 -0
  769. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gpos/IndicFontFeatureGPOS.txt +162 -0
  770. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Conjunct.txt +1 -0
  771. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Rakaaraansaya.txt +41 -0
  772. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Repaya.txt +42 -0
  773. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Special-Cases.txt +2 -0
  774. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-TouchingLetters.txt +1 -0
  775. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB-Yansaya.txt +41 -0
  776. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-sinhala/utrrs/gsub/IndicFontFeatureGSUB.txt +1 -0
  777. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/misc/misc.txt +43 -0
  778. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/LICENSE +19 -0
  779. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/README +13 -0
  780. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/SOURCES +2 -0
  781. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +23 -0
  782. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-CurrencySymbols.txt +1 -0
  783. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +11 -0
  784. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  785. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +12 -0
  786. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Numerics.txt +3 -0
  787. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
  788. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-Symbols.txt +6 -0
  789. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-TamilSymbol.txt +1 -0
  790. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +4 -0
  791. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +64 -0
  792. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/gpos/IndicFontFeatureGPOS-BelowBase.txt +44 -0
  793. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-tamil/utrrs/gsub/IndicFontFeatureGSUB.txt +4 -0
  794. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/misc/misc.txt +12 -0
  795. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/LICENSE +19 -0
  796. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/README +13 -0
  797. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/SOURCES +2 -0
  798. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-AdditionalVowels.txt +2 -0
  799. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-Consonants.txt +38 -0
  800. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-DependentVowels.txt +13 -0
  801. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-Digits.txt +10 -0
  802. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-IndependentVowels.txt +14 -0
  803. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-Reserved.txt +2 -0
  804. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/codepoint/IndicFontFeatureCodepoint-VariousSigns.txt +6 -0
  805. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/gpos/IndicFontFeatureGPOS-AboveBase.txt +385 -0
  806. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/indic/script-telugu/utrrs/gsub/IndicFontFeatureGSUB.txt +287 -0
  807. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/south-east-asian/script-javanese/misc.txt +54 -0
  808. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/south-east-asian/script-khmer/misc/misc.txt +23 -0
  809. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/south-east-asian/script-khmer/misc/other-marks-invalid.txt +4 -0
  810. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-indic/south-east-asian/script-khmer/misc/other-marks.txt +7 -0
  811. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-myanmar/script-myanmar/misc/misc.txt +7 -0
  812. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-myanmar/script-myanmar/misc/otspec.txt +1 -0
  813. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-myanmar/script-myanmar/misc/utn11.txt +34 -0
  814. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-lao/misc/sara-am.txt +20 -0
  815. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-thai/misc/misc.txt +11 -0
  816. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-thai/misc/phinthu.txt +16 -0
  817. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-thai/misc/pua-shaping.txt +11 -0
  818. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-thai/script-thai/misc/sara-am.txt +20 -0
  819. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-tibetan/script-tibetan/misc/contractions.txt +612 -0
  820. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-tibetan/script-tibetan/misc/misc.txt +2 -0
  821. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-batak/misc.txt +9 -0
  822. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-buginese/misc.txt +70 -0
  823. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-cham/misc.txt +3 -0
  824. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-kaithi/misc.txt +6 -0
  825. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-kharoshti/misc.txt +36 -0
  826. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-tai-tham/misc.txt +2 -0
  827. data/vendor/github.com/harfbuzz/harfbuzz/test/shaping/texts/in-house/shaper-use/script-tai-tham/torture.txt +23 -0
  828. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/CMakeLists.txt +10 -0
  829. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/Makefile.am +22 -0
  830. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/Makefile.am +24 -0
  831. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/Makefile.sources +10 -0
  832. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.61,62,63.ttf +0 -0
  833. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.61,63.ttf +0 -0
  834. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.61.ttf +0 -0
  835. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.62.ttf +0 -0
  836. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.default.63.ttf +0 -0
  837. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.61,62,63.ttf +0 -0
  838. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.61,63.ttf +0 -0
  839. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.61.ttf +0 -0
  840. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.62.ttf +0 -0
  841. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/basics/Roboto-Regular.abc.drop-hints.63.ttf +0 -0
  842. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/full-font/Roboto-Regular.default.1FC,21,41,20,62,63.ttf +0 -0
  843. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/full-font/Roboto-Regular.default.61,62,63.ttf +0 -0
  844. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/full-font/Roboto-Regular.drop-hints.1FC,21,41,20,62,63.ttf +0 -0
  845. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/expected/full-font/Roboto-Regular.drop-hints.61,62,63.ttf +0 -0
  846. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/fonts/Roboto-Regular.abc.ttf +0 -0
  847. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/fonts/Roboto-Regular.ttf +0 -0
  848. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/profiles/default.txt +0 -0
  849. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/profiles/drop-hints.txt +1 -0
  850. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/tests/basics.tests +13 -0
  851. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/data/tests/full-font.tests +11 -0
  852. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/generate-expected-outputs.py +47 -0
  853. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/run-tests.py +133 -0
  854. data/vendor/github.com/harfbuzz/harfbuzz/test/subset/subset_test_suite.py +87 -0
  855. data/vendor/github.com/harfbuzz/harfbuzz/util/Makefile.am +75 -0
  856. data/vendor/github.com/harfbuzz/harfbuzz/util/Makefile.sources +37 -0
  857. data/vendor/github.com/harfbuzz/harfbuzz/util/ansi-print.cc +427 -0
  858. data/vendor/github.com/harfbuzz/harfbuzz/util/ansi-print.hh +40 -0
  859. data/vendor/github.com/harfbuzz/harfbuzz/util/hb-fc-list.c +222 -0
  860. data/vendor/github.com/harfbuzz/harfbuzz/util/hb-fc.cc +149 -0
  861. data/vendor/github.com/harfbuzz/harfbuzz/util/hb-fc.h +46 -0
  862. data/vendor/github.com/harfbuzz/harfbuzz/util/hb-ot-shape-closure.cc +119 -0
  863. data/vendor/github.com/harfbuzz/harfbuzz/util/hb-shape.cc +165 -0
  864. data/vendor/github.com/harfbuzz/harfbuzz/util/hb-subset.cc +127 -0
  865. data/vendor/github.com/harfbuzz/harfbuzz/util/hb-view.cc +40 -0
  866. data/vendor/github.com/harfbuzz/harfbuzz/util/helper-cairo-ansi.cc +102 -0
  867. data/vendor/github.com/harfbuzz/harfbuzz/util/helper-cairo-ansi.hh +40 -0
  868. data/vendor/github.com/harfbuzz/harfbuzz/util/helper-cairo.cc +553 -0
  869. data/vendor/github.com/harfbuzz/harfbuzz/util/helper-cairo.hh +86 -0
  870. data/vendor/github.com/harfbuzz/harfbuzz/util/main-font-text.hh +96 -0
  871. data/vendor/github.com/harfbuzz/harfbuzz/util/options.cc +1026 -0
  872. data/vendor/github.com/harfbuzz/harfbuzz/util/options.hh +690 -0
  873. data/vendor/github.com/harfbuzz/harfbuzz/util/shape-consumer.hh +101 -0
  874. data/vendor/github.com/harfbuzz/harfbuzz/util/view-cairo.cc +133 -0
  875. data/vendor/github.com/harfbuzz/harfbuzz/util/view-cairo.hh +102 -0
  876. metadata +939 -0
@@ -0,0 +1,5029 @@
1
+ ببیسا
2
+ بپتنا
3
+ بتکتا
4
+ بتیسا
5
+ بتیلا
6
+ بتھلا
7
+ بجبجا
8
+ بجلیا
9
+ بجھتا
10
+ بجھیا
11
+ بچپنا
12
+ بچکتا
13
+ بچلتا
14
+ بچھتا
15
+ بچھیا
16
+ بحثیا
17
+ بختیا
18
+ بخشتا
19
+ بستگا
20
+ بستیا
21
+ بسیما
22
+ بطگیا
23
+ بغچیا
24
+ بقچیا
25
+ بکبکا
26
+ بکستا
27
+ بکسلا
28
+ بکسیا
29
+ بکیلا
30
+ بگستا
31
+ بگھیا
32
+ بلبلا
33
+ بلٹتا
34
+ بلٹیا
35
+ بلکتا
36
+ بللا
37
+ بلنگا
38
+ بلیسا
39
+ بلیغا
40
+ بلیلا
41
+ بنٹتا
42
+ بنجتا
43
+ بنگلا
44
+ بیتتا
45
+ بیتلا
46
+ بیتیا
47
+ بیٹھا
48
+ بیجتا
49
+ بیچتا
50
+ بیسیا
51
+ بیشما
52
+ بیکسا
53
+ بیکلا
54
+ بیگما
55
+ بیلتا
56
+ بینتا
57
+ بینکا
58
+ بیننا
59
+ بھبھا
60
+ بہکتا
61
+ بہلتا
62
+ بہنیا
63
+ بہئیا
64
+ بہیما
65
+ بھبکا
66
+ بھبھا
67
+ بھلتا
68
+ بھپکا
69
+ بھتنا
70
+ بھٹکا
71
+ بھٹیا
72
+ بھجتا
73
+ بھجیا
74
+ بھچتا
75
+ بھچکا
76
+ بھچنا
77
+ بھسکا
78
+ بھکتا
79
+ بھکیا
80
+ بھگتا
81
+ بھگیا
82
+ بھلیا
83
+ بھینا
84
+ پپلیا
85
+ پپیتا
86
+ پپیہا
87
+ پتلیا
88
+ پتنگا
89
+ پتنیا
90
+ پتیلا
91
+ پتھتا
92
+ پتھنا
93
+ پٹپٹا
94
+ پٹختا
95
+ پٹخیا
96
+ پٹکتا
97
+ پٹیلا
98
+ پٹیما
99
+ پٹھیا
100
+ پچپچا
101
+ پچکتا
102
+ پچھتا
103
+ پچلج
104
+ پچیا
105
+ پستیا
106
+ پسلیا
107
+ پسنگا
108
+ پسیجا
109
+ پسینا
110
+ پشیما
111
+ پکپکا
112
+ پگلتا
113
+ پگلیا
114
+ پگھلا
115
+ پلپلا
116
+ پلٹتا
117
+ پلٹیا
118
+ پلیتا
119
+ پنپتا
120
+ پنجتا
121
+ پنجسا
122
+ پنجنا
123
+ پنچسا
124
+ پنکھا
125
+ پنیلا
126
+ پنیھا
127
+ پنھیا
128
+ پیپٹا
129
+ پیپگا
130
+ پیپلا
131
+ پیٹتا
132
+ پیٹیا
133
+ پیٹھا
134
+ پیچھا
135
+ پیستا
136
+ پیشتا
137
+ پیشکا
138
+ پیشیا
139
+ پیلبا
140
+ پیلپا
141
+ پیلتا
142
+ پیلیا
143
+ پینتا
144
+ پہنتا
145
+ پہنچا
146
+ پہننا
147
+ پھبتا
148
+ پھبکا
149
+ پھبنا
150
+ پھپسا
151
+ پھپکا
152
+ پھپیا
153
+ پھپھا
154
+ پھٹتا
155
+ پھٹکا
156
+ پھٹگا
157
+ پھٹنا
158
+ پھسکا
159
+ پھسلا
160
+ پھکتا
161
+ پھلتا
162
+ پھلکا
163
+ پھلنا
164
+ پھنتا
165
+ پھنسا
166
+ پھنکا
167
+ پھننا
168
+ پھنیا
169
+ پھیکا
170
+ پھیلا
171
+ تپسیا
172
+ تپکتا
173
+ تتلیا
174
+ تتئیا
175
+ تثینا
176
+ تجلیا
177
+ تجملا
178
+ تحفظا
179
+ تحکما
180
+ تختیا
181
+ تسلیا
182
+ تشنگا
183
+ تعصبا
184
+ تعلقا
185
+ تعلا
186
+ تعیشا
187
+ تعینا
188
+ تکتکا
189
+ تکلفا
190
+ تکلیا
191
+ تلتلا
192
+ تلخیا
193
+ تلملا
194
+ تلنگا
195
+ تمتما
196
+ تمسکا
197
+ تمکنا
198
+ تنبیا
199
+ تنتنا
200
+ تنکتا
201
+ تنگیا
202
+ تیجتا
203
+ تیکھا
204
+ تیلیا
205
+ تینتا
206
+ تھپتا
207
+ تھپکا
208
+ تھپنا
209
+ تھتکا
210
+ تھتھا
211
+ تھجتا
212
+ تھکتا
213
+ تھلتا
214
+ تھلکا
215
+ تھلنا
216
+ تھلیا
217
+ تھمتا
218
+ تھنچا
219
+ تھیا
220
+ تھیلا
221
+ ٹپٹپا
222
+ ٹپکتا
223
+ ٹپیلا
224
+ ٹخنیا
225
+ ٹکٹکا
226
+ ٹکسٹا
227
+ ٹکسلا
228
+ ٹکلیا
229
+ ٹگھلا
230
+ ٹلٹلا
231
+ ٹمٹما
232
+ ٹنٹنا
233
+ ٹنگتا
234
+ ٹیپتا
235
+ ٹیکتا
236
+ ٹیکسا
237
+ ٹیکنا
238
+ ٹیکتا
239
+ ٹینٹا
240
+ ٹہلتا
241
+ ٹہلیا
242
+ ٹہنیا
243
+ ٹھپنا
244
+ ٹھٹکا
245
+ ٹھٹھا
246
+ ٹھستا
247
+ ٹھسکا
248
+ ٹھسنا
249
+ ٹھکتا
250
+ ٹھگتا
251
+ ٹھگیا
252
+ ٹھلتا
253
+ ٹھلیا
254
+ ٹھمکا
255
+ ٹھنتا
256
+ ٹھنسا
257
+ ٹھنکا
258
+ ٹھننا
259
+ ٹھیبا
260
+ ٹھیکا
261
+ ٹھیگا
262
+ ٹھیلا
263
+ جیتتا
264
+ جستھا
265
+ جسیلا
266
+ جعلسا
267
+ جعلیا
268
+ جگتیا
269
+ جگجگا
270
+ جگمگا
271
+ جلبلا
272
+ جلیبا
273
+ جمیکا
274
+ جنٹیا
275
+ جنجنا
276
+ جنسیا
277
+ جنگلا
278
+ جیتتا
279
+ جیٹھا
280
+ جینیا
281
+ جھپٹا
282
+ جھپکا
283
+ جھٹکا
284
+ جھٹلا
285
+ جھٹنا
286
+ جھجکا
287
+ جھجلا
288
+ جھجنا
289
+ جھکتا
290
+ جھکیا
291
+ جھگیا
292
+ جھلتا
293
+ جھلسا
294
+ جھلکا
295
+ جھلما
296
+ جھلنا
297
+ جھلیا
298
+ جھمکا
299
+ جھجنا
300
+ جھنکا
301
+ جھنگا
302
+ جھیلا
303
+ جھینا
304
+ چبکتا
305
+ چبینا
306
+ چبھتا
307
+ چپتیا
308
+ چپٹتا
309
+ چپچپا
310
+ چپکتا
311
+ چپکیا
312
+ چپیٹا
313
+ چتھلا
314
+ چٹختا
315
+ چٹکتا
316
+ چٹکلا
317
+ چٹکیا
318
+ چٹنیا
319
+ چٹیلا
320
+ چٹھیا
321
+ چسکتا
322
+ چسکیا
323
+ چسنیا
324
+ چشتیا
325
+ چغلیا
326
+ چکٹتا
327
+ چکلتا
328
+ چکنیا
329
+ چکھتا
330
+ چلبلا
331
+ چلچلا
332
+ چلکنا
333
+ چلیپا
334
+ چمٹتا
335
+ چمٹیا
336
+ چمچما
337
+ چمچیا
338
+ چمکتا
339
+ چمنیا
340
+ چنبھا
341
+ چنچنا
342
+ چنکیا
343
+ چنگلا
344
+ چنگنا
345
+ چنگیا
346
+ چنگھا
347
+ چیپتا
348
+ چیتپا
349
+ چیختا
350
+ چیستا
351
+ چیلکا
352
+ چینٹا
353
+ چینگا
354
+ چہچہا
355
+ چہکتا
356
+ چہیتا
357
+ چھپتا
358
+ چھپکا
359
+ چھپنا
360
+ چھتیا
361
+ چھٹتا
362
+ چھٹکا
363
+ چھٹنا
364
+ چھٹیا
365
+ چھچکا
366
+ چھلتا
367
+ چھلکا
368
+ چھلیا
369
+ چھنتا
370
+ چھنگا
371
+ چھننا
372
+ چھیجا
373
+ چھیکا
374
+ چھیلا
375
+ چھینا
376
+ حتینا
377
+ حسینا
378
+ حکیما
379
+ حنفیا
380
+ حیتنا
381
+ حیثیا
382
+ خصتیا
383
+ خطیبا
384
+ خفتگا
385
+ خلفشا
386
+ خمچیا
387
+ خمیسا
388
+ خنخنا
389
+ سبکسا
390
+ سبکنا
391
+ سبکیا
392
+ سبلیا
393
+ سبیتا
394
+ ستبصا
395
+ ستبعا
396
+ ستثنا
397
+ ستحسا
398
+ ستحصا
399
+ ستحقا
400
+ ستحکا
401
+ ستخفا
402
+ ستخلا
403
+ ستسقا
404
+ ستشہا
405
+ ستعجا
406
+ ستعقا
407
+ ستعلا
408
+ ستعما
409
+ ستغفا
410
+ ستغنا
411
+ ستفتا
412
+ ستفسا
413
+ ستفہا
414
+ ستقبا
415
+ ستقلا
416
+ ستکبا
417
+ ستکشا
418
+ ستکما
419
+ ستلیا
420
+ ستنبا
421
+ ستنجا
422
+ ستیصا
423
+ ستیعا
424
+ ستیلا
425
+ ستیہا
426
+ ستھیا
427
+ سٹکتا
428
+ سٹنہا
429
+ سٹھیا
430
+ سجنیا
431
+ سجیلا
432
+ سختیا
433
+ سسکتا
434
+ سسکیا
435
+ سکیلا
436
+ سکھلا
437
+ سکھیا
438
+ سلٹنا
439
+ سلجھا
440
+ سلسلا
441
+ سلگتا
442
+ سلمہا
443
+ سلنگا
444
+ سلیکا
445
+ سلیما
446
+ سمٹتا
447
+ سمجھا
448
+ سمیٹا
449
+ سنبھا
450
+ سنجتا
451
+ سنجھا
452
+ سنچکا
453
+ سنسنا
454
+ سنکتا
455
+ سنکیا
456
+ سنگسا
457
+ سنگلا
458
+ سنگھا
459
+ سنیگا
460
+ سنیما
461
+ سیپیا
462
+ سیتلا
463
+ سیٹھا
464
+ سیستا
465
+ سیکھا
466
+ سیلتا
467
+ سیمیا
468
+ سینتا
469
+ سینچا
470
+ سینکا
471
+ سینگا
472
+ سینما
473
+ سینیا
474
+ سہلتا
475
+ سہمتا
476
+ شتیہا
477
+ شخصیا
478
+ شطحیا
479
+ شکیبا
480
+ شگنیا
481
+ شلنگا
482
+ شلیتا
483
+ شمنیا
484
+ شنگھا
485
+ شیخیا
486
+ شیشیا
487
+ شہنشا
488
+ ضعیفا
489
+ ضمحلا
490
+ طبیعا
491
+ طلبگا
492
+ طلسما
493
+ طمینا
494
+ طیلسا
495
+ عسقلا
496
+ عصبیا
497
+ عملیا
498
+ عنہما
499
+ غسلخا
500
+ غصیلا
501
+ غضبنا
502
+ غلبلا
503
+ غلطیا
504
+ غمگسا
505
+ غنغنا
506
+ فتحیا
507
+ فتینا
508
+ فسنجا
509
+ فضیتا
510
+ فعلیا
511
+ فلکیا
512
+ فلمسا
513
+ فلیپا
514
+ فیضیا
515
+ فیلبا
516
+ فیلپا
517
+ فہمیا
518
+ قلتیا
519
+ قلفیا
520
+ قلمکا
521
+ قلیما
522
+ کپکپا
523
+ کٹکتا
524
+ کٹنیا
525
+ کٹیکا
526
+ کٹیلا
527
+ کٹھلا
528
+ کٹھنا
529
+ کچکچا
530
+ کچلتا
531
+ کچیلا
532
+ کچھنا
533
+ کسبیا
534
+ کسلتا
535
+ کسلیا
536
+ کسنبا
537
+ کسیلا
538
+ کشتگا
539
+ کشتیا
540
+ ککھلا
541
+ کلبلا
542
+ کلپنا
543
+ کلتکا
544
+ کلٹیا
545
+ کلچیا
546
+ کلسنا
547
+ کلغیا
548
+ کلکتا
549
+ کلکلا
550
+ کلکنا
551
+ کلیجا
552
+ کلیسا
553
+ کلھیا
554
+ کمٹھا
555
+ کملتا
556
+ کمیسا
557
+ کمیلا
558
+ کمھلا
559
+ کنٹھا
560
+ کنجیا
561
+ کنکتا
562
+ کنکیا
563
+ کنگلا
564
+ کنگنا
565
+ کنگھا
566
+ کنلیا
567
+ کنمنا
568
+ کنہیا
569
+ کیتیا
570
+ کیتھا
571
+ کیٹلا
572
+ کیخلا
573
+ کیسیا
574
+ کیشیا
575
+ کیفیا
576
+ کیقبا
577
+ کیکبا
578
+ کیکتا
579
+ کیلتا
580
+ کیمیا
581
+ کینیا
582
+ کیہلا
583
+ کہکشا
584
+ کھپٹا
585
+ کھپلا
586
+ کھپنا
587
+ کھتیا
588
+ کھٹکا
589
+ کھٹلا
590
+ کھٹنا
591
+ کھٹیا
592
+ کھجلا
593
+ کھستا
594
+ کھسکا
595
+ کھسلا
596
+ کھسنا
597
+ کھسیا
598
+ کھکھا
599
+ کھلتا
600
+ کھلگا
601
+ کھلنا
602
+ کھلیا
603
+ کھمبا
604
+ کھما
605
+ کھنچا
606
+ کھنسا
607
+ کھنگا
608
+ کھتیا
609
+ کھیسا
610
+ کھیلا
611
+ کھینا
612
+ گپکتا
613
+ گتھتا
614
+ گتھیا
615
+ گٹکتا
616
+ گٹکیا
617
+ گٹھتا
618
+ گٹھیا
619
+ گجگجا
620
+ گچھیا
621
+ گشتپا
622
+ گلبہا
623
+ گلٹیا
624
+ گلستا
625
+ گلگلا
626
+ گنتیا
627
+ گنٹھا
628
+ گنجیا
629
+ گنگنا
630
+ گنہگا
631
+ گیگلا
632
+ گہکتا
633
+ گھپتا
634
+ گھپلا
635
+ گھپنا
636
+ گھٹتا
637
+ گھٹکا
638
+ گھٹنا
639
+ گھٹیا
640
+ گھچلا
641
+ گھستا
642
+ گھسیا
643
+ گھگیا
644
+ گھلتا
645
+ گھلیا
646
+ گھمسا
647
+ گھنٹا
648
+ گھنسا
649
+ گھنیا
650
+ گھیگا
651
+ گھیلا
652
+ لبلبا
653
+ لبیلا
654
+ لپٹتا
655
+ لپکتا
656
+ لپلپا
657
+ لپیٹا
658
+ لٹکتا
659
+ لیٹنا
660
+ لٹھیا
661
+ لجلجا
662
+ لجھتا
663
+ لجھیا
664
+ لچکتا
665
+ لچلچا
666
+ لچھتا
667
+ لچھیا
668
+ لحمقا
669
+ لحمیا
670
+ لخلخا
671
+ لسبحا
672
+ لسلسا
673
+ لشعشا
674
+ لشہبا
675
+ لطلا
676
+ لعلما
677
+ لفظیا
678
+ لفنگا
679
+ لکشیا
680
+ لکلیا
681
+ لکھتا
682
+ لکھیا
683
+ لگنیا
684
+ لگیلا
685
+ للبقا
686
+ لمپیا
687
+ لمتعا
688
+ لمتخا
689
+ لمکتا
690
+ لمیعا
691
+ لنجھا
692
+ لنگتا
693
+ لنگیا
694
+ لنگھا
695
+ لیپتا
696
+ لیٹتا
697
+ لیچتا
698
+ لیچیا
699
+ لیستا
700
+ لیسیا
701
+ لیکھا
702
+ لہکتا
703
+ لہلہا
704
+ لہنگا
705
+ لہنیا
706
+ لہیا
707
+ مبتلا
708
+ مبہیا
709
+ متصفا
710
+ متھتا
711
+ مٹکتا
712
+ مٹکیا
713
+ مٹھیا
714
+ مجسما
715
+ مجلا
716
+ مچکتا
717
+ مچلتا
718
+ محسنا
719
+ محصنا
720
+ محققا
721
+ محکما
722
+ محنتا
723
+ مختیا
724
+ مخلصا
725
+ مخمسا
726
+ مسبحا
727
+ مستجا
728
+ مستعا
729
+ مشفقا
730
+ مشکبا
731
+ مشکلا
732
+ مشکیا
733
+ مصلحا
734
+ معلقا
735
+ معلما
736
+ مغلظا
737
+ مغیلا
738
+ مفصلا
739
+ مفلسا
740
+ مقتضا
741
+ مقطعا
742
+ مکھنا
743
+ مکھیا
744
+ ملگجا
745
+ ملنسا
746
+ ملیسا
747
+ ممکنا
748
+ منجلا
749
+ منجنا
750
+ منجھا
751
+ منچلا
752
+ منشیا
753
+ منصفا
754
+ منگتا
755
+ منگلا
756
+ منگنا
757
+ منگیا
758
+ منمنا
759
+ منیلا
760
+ منہنا
761
+ منہیا
762
+ میٹتا
763
+ میٹیا
764
+ میٹھا
765
+ میجتا
766
+ میچتا
767
+ میگھا
768
+ میلیا
769
+ میمنا
770
+ میہما
771
+ مہکتا
772
+ مہملا
773
+ مہنتا
774
+ مہنگا
775
+ مہیلا
776
+ مہینا
777
+ نبٹتا
778
+ ننجتا
779
+ نبھتا
780
+ نپٹتا
781
+ نپجتا
782
+ نتیلا
783
+ نتھلا
784
+ نتھنا
785
+ نتھیا
786
+ نٹنیا
787
+ نٹینا
788
+ نٹھتا
789
+ نجمنا
790
+ نجھتا
791
+ نچنیا
792
+ نچھتا
793
+ نشیلا
794
+ نظمیا
795
+ نفسیا
796
+ نکسلا
797
+ نکلتا
798
+ نکمیا
799
+ نکیلا
800
+ نکھتا
801
+ نکھیا
802
+ نگستا
803
+ نگلتا
804
+ نگلیا
805
+ نگیلا
806
+ نگہبا
807
+ نگھتا
808
+ نمٹتا
809
+ نمسکا
810
+ نمکیا
811
+ ننھیا
812
+ نیٹنا
813
+ نیشیا
814
+ نیکیا
815
+ نیکھا
816
+ نیمیا
817
+ ئیشیا
818
+ ئیگیا
819
+ یپلکا
820
+ یتیلا
821
+ یخنیا
822
+ یستبا
823
+ یکھتا
824
+ یگچیا
825
+ یگستا
826
+ یمپلا
827
+ ینٹھا
828
+ ینکتا
829
+ ینگتا
830
+ ینگیا
831
+ ہپہپا
832
+ ہتھیا
833
+ ہٹکنا
834
+ ہٹیلا
835
+ ہٹھیا
836
+ ہچکتا
837
+ ہچکچا
838
+ ہچکیا
839
+ ہسپتا
840
+ ہستیا
841
+ ہلبلا
842
+ ہلپھا
843
+ ہلگتا
844
+ ہلینا
845
+ ہلہلا
846
+ ہمپشا
847
+ ہمکتا
848
+ ہمکیا
849
+ ہنستا
850
+ ہنسیا
851
+ ہنگیا
852
+ ہنہنا
853
+ ہیلنا
854
+ ہینسا
855
+ ہینگا
856
+ ھکنیا
857
+ ھکیلا
858
+ ھلکتا
859
+ ھلکیا
860
+ ھلملا
861
+ ھمکتا
862
+ ھمکیا
863
+ ھنستا
864
+ ھنسیا
865
+ ھنکتا
866
+ ھنکیا
867
+ ھینگا
868
+ بطیب
869
+ تشبیب
870
+ تصلیب
871
+ تنصیب
872
+ کینٹب
873
+ لجیب
874
+ لحسیب
875
+ لحصیب
876
+ لمجیب
877
+ متعجب
878
+ متعصب
879
+ مجتنب
880
+ محتسب
881
+ مسبب
882
+ مستجب
883
+ مسیب
884
+ منتخب
885
+ منتسب
886
+ جھینپ
887
+ سٹیمپ
888
+ سنکلپ
889
+ گھینپ
890
+ بشکست
891
+ بعجلت
892
+ ٹھینگے
893
+ تبنیت
894
+ تمکنت
895
+ تہنیت
896
+ جمعیت
897
+ جنبیت
898
+ جنسیت
899
+ جھٹنت
900
+ حقیقت
901
+ حیثیت
902
+ سلطنت
903
+ سنگیت
904
+ شخصیت
905
+ شیطنت
906
+ شیعیت
907
+ طبیعت
908
+ طیسیت
909
+ عصبیت
910
+ عظیمت
911
+ عقلیت
912
+ علمیت
913
+ غنیمت
914
+ فضیلت
915
+ فضیحت
916
+ فضیلت
917
+ قطبیت
918
+ قطعیت
919
+ کمیت
920
+ کیفیت
921
+ کیمخت
922
+ گھٹنت
923
+ لپھیت
924
+ لٹھیٹ
925
+ لحکمت
926
+ لخلقت
927
+ لعصمت
928
+ لکھپت
929
+ لمقیت
930
+ لممیت
931
+ مسکنت
932
+ مصلحت
933
+ مصیبت
934
+ معصیت
935
+ معیشت
936
+ معیئت
937
+ ملتفت
938
+ ملکیت
939
+ مملکت
940
+ منفعت
941
+ منقبت
942
+ میمنت
943
+ نصیحت
944
+ ئیلیت
945
+ یکلخت
946
+ یکمشت
947
+ ہلسنت
948
+ بیسنٹ
949
+ بھینٹ
950
+ پمفلٹ
951
+ پنگھٹ
952
+ پیٹنٹ
953
+ پھینٹ
954
+ تلچھٹ
955
+ ٹسٹنٹ
956
+ ٹیکسٹ
957
+ جھپیٹ
958
+ جھنجٹ
959
+ چھینٹ
960
+ سٹمنٹ
961
+ سسپنٹ
962
+ سسٹنٹ
963
+ سلفیٹ
964
+ سلیکٹ
965
+ سیمنٹ
966
+ شپمنٹ
967
+ کیبنٹ
968
+ کیمسٹ
969
+ گھسیٹ
970
+ گھینٹ
971
+ لپٹنٹ
972
+ لپمنٹ
973
+ لٹھیٹ
974
+ لجئیٹ
975
+ لفٹنٹ
976
+ میگنٹ
977
+ نیٹنٹ
978
+ ئنٹسٹ
979
+ ہیلمٹ
980
+ بھتیج
981
+ چیلنج
982
+ بھینچ
983
+ پھینچ
984
+ کھینچ
985
+ تسبیح
986
+ تصحیح
987
+ تلمیح
988
+ تنقیح
989
+ مصطلح
990
+ تنسیخ
991
+ بخشند
992
+ بسیند
993
+ بینند
994
+ پنجند
995
+ پیجند
996
+ پیچید
997
+ تجلید
998
+ تحمید
999
+ تصعید
1000
+ تعقید
1001
+ تفسید
1002
+ تقلید
1003
+ تکسید
1004
+ تمجید
1005
+ تمحید
1006
+ تمہید
1007
+ تنفید
1008
+ تنقید
1009
+ تہبند
1010
+ جتمند
1011
+ جمشید
1012
+ چھلبد
1013
+ خشکید
1014
+ سمبند
1015
+ سمجھد
1016
+ سنجید
1017
+ علیحد
1018
+ فہمید
1019
+ کھلند
1020
+ لتمند
1021
+ لحمید
1022
+ لسعید
1023
+ لشہید
1024
+ لعقید
1025
+ لکھند
1026
+ لمجید
1027
+ لمسجد
1028
+ لمیعد
1029
+ لمقتد
1030
+ مجتہد
1031
+ مچھند
1032
+ مستبد
1033
+ مستعد
1034
+ مستند
1035
+ معتضد
1036
+ معتمد
1037
+ منجمد
1038
+ منجھد
1039
+ منعقد
1040
+ مہمند
1041
+ نشمند
1042
+ ہشمند
1043
+ بلینڈ
1044
+ بھٹنڈ
1045
+ پیگنڈ
1046
+ تلینڈ
1047
+ چچینڈ
1048
+ سٹینڈ
1049
+ سیکنڈ
1050
+ سگمنڈ
1051
+ شفیلڈ
1052
+ کلینڈ
1053
+ کنفیڈ
1054
+ کیتھڈ
1055
+ کیلنڈ
1056
+ کیلیڈ
1057
+ کینیڈ
1058
+ کھلنڈ
1059
+ گلینڈ
1060
+ گھمنڈ
1061
+ لمیٹڈ
1062
+ مشٹنڈ
1063
+ میتھڈ
1064
+ یمبلڈ
1065
+ ہسبنڈ
1066
+ تلمیذ
1067
+ فلہذ
1068
+ بجھبر
1069
+ بچھیر
1070
+ بکٹیر
1071
+ بکھیر
1072
+ بگستر
1073
+ بلیچر
1074
+ بیچلر
1075
+ بینجر
1076
+ بیشتر
1077
+ بینٹر
1078
+ بینکر
1079
+ بہتیر
1080
+ بھسٹر
1081
+ بھمبر
1082
+ بھیتر
1083
+ بھیکر
1084
+ پبلشر
1085
+ پتمبر
1086
+ پچھتر
1087
+ پسنجر
1088
+ پکھیر
1089
+ پلستر
1090
+ پلمبر
1091
+ پلیئر
1092
+ پنجیر
1093
+ پنشنر
1094
+ پنکچر
1095
+ پیسٹر
1096
+ پیشتر
1097
+ پیمبر
1098
+ پینتر
1099
+ پھپیر
1100
+ پھٹکر
1101
+ پھلسر
1102
+ تبختر
1103
+ تحقیر
1104
+ تخمیر
1105
+ تسخیر
1106
+ تسطیر
1107
+ تشہیر
1108
+ تصغیر
1109
+ تطہیر
1110
+ تظہیر
1111
+ تعبیر
1112
+ تعمیر
1113
+ تغیر
1114
+ تفسیر
1115
+ تقصیر
1116
+ تقطیر
1117
+ تکبیر
1118
+ تکثیر
1119
+ تکسیر
1120
+ تکفیر
1121
+ تمسخر
1122
+ تنکیر
1123
+ تینیر
1124
+ تھپیر
1125
+ تھمبر
1126
+ تھیٹر
1127
+ تھیچر
1128
+ ٹنکچر
1129
+ ٹیسٹر
1130
+ ٹیلگر
1131
+ ٹیمبر
1132
+ ٹینکر
1133
+ ٹھپکر
1134
+ ٹھیٹر
1135
+ ٹھٹھر
1136
+ ٹھیکر
1137
+ جمبیر
1138
+ جیکٹر
1139
+ جینیر
1140
+ جھجھر
1141
+ جھنجر
1142
+ جھنگر
1143
+ چمچیر
1144
+ چنگیر
1145
+ چنیسر
1146
+ چیٹھر
1147
+ چیکٹر
1148
+ چیمبر
1149
+ چھہتر
1150
+ سپنسر
1151
+ سپئیر
1152
+ سپیکر
1153
+ ستغفر
1154
+ ستگیر
1155
+ ستمبر
1156
+ ستمگر
1157
+ سٹمپر
1158
+ سٹینر
1159
+ سٹیکر
1160
+ سٹیمر
1161
+ سٹیئر
1162
+ سکیٹر
1163
+ سکیسر
1164
+ سکیلر
1165
+ سکینر
1166
+ سگنلر
1167
+ سلیپر
1168
+ سلیٹر
1169
+ سمسٹر
1170
+ سمگلر
1171
+ سنپٹر
1172
+ سنپیر
1173
+ سنتگر
1174
+ سنسکر
1175
+ سنگتر
1176
+ سنئیر
1177
+ سنیٹر
1178
+ سنیچر
1179
+ سکیٹر
1180
+ سینٹر
1181
+ سینسر
1182
+ سینئر
1183
+ شلیپر
1184
+ شمشیر
1185
+ شیلٹر
1186
+ علمبر
1187
+ غضنفر
1188
+ فیکٹر
1189
+ فیکچر
1190
+ قطمیر
1191
+ کبیسر
1192
+ کبیشر
1193
+ کٹیٹر
1194
+ کسٹمر
1195
+ کسمپر
1196
+ کسنجر
1197
+ کشمیر
1198
+ کفگیر
1199
+ کلکٹر
1200
+ کلنسر
1201
+ کلینر
1202
+ کمشنر
1203
+ کمنٹر
1204
+ کنٹھر
1205
+ کنستر
1206
+ کیتھر
1207
+ کیسٹر
1208
+ کیمبر
1209
+ کینبر
1210
+ کینسر
1211
+ کھنجر
1212
+ کھنکر
1213
+ کھنگر
1214
+ کھچر
1215
+ گلیسر
1216
+ گلیمر
1217
+ گنینر
1218
+ گھبیر
1219
+ گھگر
1220
+ گھمیر
1221
+ گھنگر
1222
+ گھنیر
1223
+ لبصیر
1224
+ لتھیر
1225
+ لخبیر
1226
+ لصغیر
1227
+ لکبیر
1228
+ لکھیر
1229
+ لمطہر
1230
+ لمگیر
1231
+ لمنظر
1232
+ لنٹیر
1233
+ لنصیر
1234
+ لیسٹر
1235
+ لیکٹر
1236
+ لیکچر
1237
+ لینبر
1238
+ لینٹر
1239
+ متبحر
1240
+ متحیر
1241
+ متشکر
1242
+ متغیر
1243
+ متفکر
1244
+ متکبر
1245
+ متنفر
1246
+ مجسٹر
1247
+ مختصر
1248
+ مخیر
1249
+ مستتر
1250
+ مسخر
1251
+ مستشر
1252
+ مستغر
1253
+ مستقر
1254
+ مستمر
1255
+ مشتہر
1256
+ مشینر
1257
+ معتبر
1258
+ مکسچر
1259
+ منتشر
1260
+ منتظر
1261
+ منجیر
1262
+ منچھر
1263
+ منحصر
1264
+ منسٹر
1265
+ منگسر
1266
+ منیجر
1267
+ میکنز
1268
+ منیجر
1269
+ نٹسیر
1270
+ نچسٹر
1271
+ نچھتر
1272
+ نخچیر
1273
+ نسسٹر
1274
+ نکسیر
1275
+ نکھتر
1276
+ نگسیر
1277
+ نگشتر
1278
+ نیشتر
1279
+ نیکلر
1280
+ ئیجیر
1281
+ یفلگر
1282
+ یکسپر
1283
+ یکلچر
1284
+ یمسٹر
1285
+ ینسٹر
1286
+ ینکفر
1287
+ ہمشیر
1288
+ ہمعصر
1289
+ ہیتھر
1290
+ ہیمبر
1291
+ ہینگر
1292
+ بتنگڑ
1293
+ بکھیڑ
1294
+ بلکھڑ
1295
+ بھیکڑ
1296
+ پلنگڑ
1297
+ پھسکڑ
1298
+ پھکڑ
1299
+ پھیپڑ
1300
+ تھپیڑ
1301
+ جھمکڑ
1302
+ جھنگڑ
1303
+ چمچیڑ
1304
+ چیتھڑ
1305
+ چیٹھڑ
1306
+ چیلھڑ
1307
+ چھچھڑ
1308
+ چھیچڑ
1309
+ سینکڑ
1310
+ سینگڑ
1311
+ علیگڑ
1312
+ کلنگڑ
1313
+ کلیگڑ
1314
+ کھچیڑ
1315
+ کھکیڑ
1316
+ کھنگڑ
1317
+ گنٹھڑ
1318
+ گھسیڑ
1319
+ لتھیڑ
1320
+ مسکیڑ
1321
+ ہتھکڑ
1322
+ پیپلز
1323
+ پیکلز
1324
+ تجہیز
1325
+ ٹیشنز
1326
+ ٹیکلز
1327
+ چنگیز
1328
+ سکیچز
1329
+ سگنلز
1330
+ سنگلز
1331
+ کسٹمز
1332
+ کشنیز
1333
+ متمیز
1334
+ مستلز
1335
+ مستیز
1336
+ مشکیز
1337
+ ممیز
1338
+ میکنز
1339
+ مہمیز
1340
+ نیپلز
1341
+ نیشنز
1342
+ ئیکلز
1343
+ یتھنز
1344
+ ینجلز
1345
+ بلقیس
1346
+ بیلنس
1347
+ بھینس
1348
+ پچیس
1349
+ پلیکس
1350
+ پینٹس
1351
+ تجسس
1352
+ تجنیس
1353
+ ٹمنٹس
1354
+ ٹیلکس
1355
+ چھبیس
1356
+ چھتیس
1357
+ خلیفہ
1358
+ سپکٹس
1359
+ سٹیٹس
1360
+ سمٹکش
1361
+ سنگلس
1362
+ سنیکس
1363
+ فٹنگس
1364
+ فلیٹس
1365
+ کلپٹس
1366
+ کیمپس
1367
+ گھنیس
1368
+ لخمیس
1369
+ لشمس
1370
+ لمپکس
1371
+ لیٹکس
1372
+ لیمپس
1373
+ متجسس
1374
+ متنفس
1375
+ ملتمس
1376
+ منعکس
1377
+ نلسٹس
1378
+ ئمیکس
1379
+ ئیسنس
1380
+ یجنٹس
1381
+ یلیکس
1382
+ ینجلس
1383
+ پیچکش
1384
+ پیشکش
1385
+ تفتیش
1386
+ چپقلش
1387
+ کشمکش
1388
+ گھنیش
1389
+ تخصیص
1390
+ تخلیص
1391
+ تشخیص
1392
+ تلخیص
1393
+ تمحیص
1394
+ تنقیص
1395
+ لتخلص
1396
+ متخلص
1397
+ تخلیط
1398
+ ٹپن
1399
+ لقلیط
1400
+ لمقسط
1401
+ منضبط
1402
+ تحفظ
1403
+ لحفیظ
1404
+ تشنیع
1405
+ تقطیع
1406
+ لسمیع
1407
+ لشفیع
1408
+ لمبلغ
1409
+ لمطیع
1410
+ لمقطع
1411
+ متمتع
1412
+ مجتمع
1413
+ ممتنع
1414
+ منقطع
1415
+ تبلیغ
1416
+ بللی
1417
+ تصحیف
1418
+ تصنیف
1419
+ تعطف
1420
+ تقشف
1421
+ تکثیف
1422
+ تکلیف
1423
+ تنصیف
1424
+ سنحیف
1425
+ للطیف
1426
+ متکلف
1427
+ مختلف
1428
+ مسقف
1429
+ مکلف
1430
+ منعطف
1431
+ منکشف
1432
+ تحقیق
1433
+ تخلیق
1434
+ تطبیق
1435
+ تعلیق
1436
+ لعتیق
1437
+ لمنطق
1438
+ متعلق
1439
+ مستحق
1440
+ منطبق
1441
+ ہنبق
1442
+ بیٹھک
1443
+ بھننک
1444
+ پیتھک
1445
+ پیسفک
1446
+ پھینک
1447
+ تشکیک
1448
+ تضحیک
1449
+ تکنیک
1450
+ تملیک
1451
+ ٹیکنک
1452
+ جھلنک
1453
+ جھینک
1454
+ چھینک
1455
+ کلینک
1456
+ کنجشک
1457
+ کھٹیک
1458
+ گنجلک
1459
+ مجسٹک
1460
+ منسلک
1461
+ منہمک
1462
+ ئنٹفک
1463
+ یپبلک
1464
+ بیٹنگ
1465
+ بیجنگ
1466
+ بھجنگ
1467
+ بھننگ
1468
+ پکٹنگ
1469
+ پمپنگ
1470
+ پئیگ
1471
+ پیکنگ
1472
+ پھننگ
1473
+ تھلنگ
1474
+ ٹیچنگ
1475
+ جمپنگ
1476
+ جیکنگ
1477
+ چیکنگ
1478
+ سپننگ
1479
+ سیکنگ
1480
+ فکسنگ
1481
+ فنشنگ
1482
+ کیپنگ
1483
+ کیٹنگ
1484
+ میپنگ
1485
+ میٹنگ
1486
+ میچنگ
1487
+ میکنگ
1488
+ میلنگ
1489
+ ئٹینگ
1490
+ ئٹینگ
1491
+ یشننگ
1492
+ یکٹنگ
1493
+ بسبیل
1494
+ بمشکل
1495
+ بیمثل
1496
+ پھٹکل
1497
+ پھلیل
1498
+ تجہیل
1499
+ تحصیل
1500
+ تحلیل
1501
+ تخلیل
1502
+ تخئیل
1503
+ تسلسل
1504
+ تسہیل
1505
+ تشکیل
1506
+ تعجیل
1507
+ تعطیل
1508
+ تعلیل
1509
+ تعمیل
1510
+ تفصل
1511
+ تفصیل
1512
+ تفضل
1513
+ تقلیل
1514
+ تکفیل
1515
+ تکمیل
1516
+ تمثیل
1517
+ تہلیل
1518
+ تھکیل
1519
+ ٹیمپل
1520
+ جھٹیل
1521
+ جھلمل
1522
+ جھمیل
1523
+ چھیچھڑ
1524
+ سپیشل
1525
+ سنججل
1526
+ سنبھل
1527
+ سنپتل
1528
+ سیمپل
1529
+ فیشنل
1530
+ فیشیل
1531
+ قیفیں
1532
+ کتھیل
1533
+ کیپٹل
1534
+ کیشنل
1535
+ کیمبل
1536
+ کینچل
1537
+ کینسل
1538
+ کینگل
1539
+ کھٹمل
1540
+ کھکھل
1541
+ لجلیل
1542
+ لجمیل
1543
+ لخلیل
1544
+ متحمل
1545
+ متکفل
1546
+ مچھیل
1547
+ محتمل
1548
+ مستقل
1549
+ مسجل
1550
+ مسلسل
1551
+ مشتعل
1552
+ مشتغل
1553
+ مشتمل
1554
+ مشخیل
1555
+ مضمحل
1556
+ معجل
1557
+ منتقل
1558
+ منفعل
1559
+ مینٹل
1560
+ مینگل
1561
+ نٹیبل
1562
+ نسٹبل
1563
+ نیشنل
1564
+ نینٹل
1565
+ ئیسکل
1566
+ ہینگل
1567
+ بلجیم
1568
+ بہنگم
1569
+ پچھم
1570
+ تجسیم
1571
+ تحکیم
1572
+ تسلیم
1573
+ تسنیم
1574
+ تصمیم
1575
+ تعظیم
1576
+ تعلم
1577
+ تعلیم
1578
+ تفہیم
1579
+ تقسیم
1580
+ تنجیم
1581
+ تنظیم
1582
+ تنعم
1583
+ تیمم
1584
+ ٹنگھم
1585
+ ٹھیکم
1586
+ جھیلم
1587
+ علیکم
1588
+ علیہم
1589
+ لبعلم
1590
+ لحکیم
1591
+ لحلیم
1592
+ لعظیم
1593
+ لعلیم
1594
+ لکلیم
1595
+ لمعظم
1596
+ لنعیم
1597
+ لیتیم
1598
+ تبسم
1599
+ متبسم
1600
+ متعلم
1601
+ متکلم
1602
+ محتشم
1603
+ مختتم
1604
+ معتصم
1605
+ منتظم
1606
+ منتقم
1607
+ منظم
1608
+ منقسم
1609
+ منگھم
1610
+ منمنا
1611
+ منہضم
1612
+ میکسم
1613
+ مہتمم
1614
+ نشینم
1615
+ بجکشن
1616
+ بلیٹن
1617
+ بینگن
1618
+ بھبکن
1619
+ بھپکن
1620
+ پھسلن
1621
+ بھنگن
1622
+ پبلکن
1623
+ پچھم
1624
+ پنجتن
1625
+ پیشین
1626
+ پھپکن
1627
+ پھٹکن
1628
+ پھسلن
1629
+ تھیلیا
1630
+ تبیین
1631
+ تحسین
1632
+ تخمین
1633
+ تسکین
1634
+ تضمین
1635
+ تکفین
1636
+ تلقین
1637
+ تلئیں
1638
+ تلیئن
1639
+ تمکین
1640
+ تیئین
1641
+ تھپکن
1642
+ ٹھٹکن
1643
+ ثقلین
1644
+ جنکشن
1645
+ جیکشن
1646
+ جھپٹن
1647
+ جھپکن
1648
+ جھٹکن
1649
+ چھلکن
1650
+ چھیجن
1651
+ چھیلن
1652
+ حسنین
1653
+ سبطین
1654
+ سٹفین
1655
+ سٹیشن
1656
+ سلجھن
1657
+ سلکشن
1658
+ سلکھن
1659
+ سنگین
1660
+ سیٹھن
1661
+ سیکشن
1662
+ سیمین
1663
+ سینچن
1664
+ سینکن
1665
+ شنگٹن
1666
+ شیخین
1667
+ علیین
1668
+ غمگین
1669
+ فنکشن
1670
+ قطبین
1671
+ کسیجن
1672
+ کلفٹن
1673
+ کلیمن
1674
+ کمیشن
1675
+ کنکشن
1676
+ کیپٹن
1677
+ کیپشن
1678
+ کیٹشن
1679
+ کیٹین
1680
+ کھٹکن
1681
+ کھنجن
1682
+ کھنچن
1683
+ گھسٹن
1684
+ لپیٹن
1685
+ لچھمن
1686
+ لحسین
1687
+ لحصین
1688
+ لستشن
1689
+ لمتین
1690
+ لمکین
1691
+ لنشین
1692
+ لنگٹن
1693
+ لیسین
1694
+ لیکسن
1695
+ لیکشن
1696
+ متعفن
1697
+ متعین
1698
+ متقین
1699
+ متمکن
1700
+ متنجن
1701
+ لمکین
1702
+ لنشین
1703
+ مسکین
1704
+ مطمئن
1705
+ ممتحن
1706
+ منقش
1707
+ میگلن
1708
+ مینشن
1709
+ نجبین
1710
+ نجکشن
1711
+ نشیمن
1712
+ نعلین
1713
+ نقشین
1714
+ نگبین
1715
+ نمکین
1716
+ نیپکن
1717
+ نیلشن
1718
+ ئمکین
1719
+ ئیشین
1720
+ یٹکشن
1721
+ یکسین
1722
+ یملین
1723
+ یسین
1724
+ ہمپٹن
1725
+ ہملٹن
1726
+ بپتیں
1727
+ بتتیں
1728
+ بتکیں
1729
+ بتیس
1730
+ بٹتیں
1731
+ بجبیں
1732
+ بجتیں
1733
+ بجھیں
1734
+ بچتیں
1735
+ بچکیں
1736
+ بچلیں
1737
+ بچھیں
1738
+ بحثیں
1739
+ بخشیں
1740
+ بستیں
1741
+ بطخیں
1742
+ بغلیں
1743
+ بکتیں
1744
+ بلتیں
1745
+ بلکیں
1746
+ بنتیں
1747
+ بنچیں
1748
+ بیتیں
1749
+ بیچیں
1750
+ بیلیں
1751
+ بینیں
1752
+ بہتیں
1753
+ بہکیں
1754
+ بہلیں
1755
+ بہنیں
1756
+ بھچیں
1757
+ بھکیں
1758
+ بھلیں
1759
+ بھنیں
1760
+ پتتیں
1761
+ پتھیں
1762
+ پٹتیں
1763
+ پٹخیں
1764
+ پٹکیں
1765
+ پچتیں
1766
+ پچکیں
1767
+ پچھیں
1768
+ پستیں
1769
+ پکتیں
1770
+ پگلیں
1771
+ پلتیں
1772
+ پلکیں
1773
+ پنپیں
1774
+ پیتیں
1775
+ پیشیں
1776
+ پیلیں
1777
+ پہنیں
1778
+ پھبیں
1779
+ پھکیں
1780
+ پھلیں
1781
+ تپتیں
1782
+ تپکیں
1783
+ تچتیں
1784
+ تگتیں
1785
+ تلتیں
1786
+ تلئیں
1787
+ تمہیں
1788
+ تنتیں
1789
+ تنکیں
1790
+ تیغیں
1791
+ تھپیں
1792
+ تھتیں
1793
+ تھجیں
1794
+ تھکیں
1795
+ تھلیں
1796
+ تھمیں
1797
+ ٹپتیں
1798
+ ٹپکیں
1799
+ ٹکتیں
1800
+ ٹکٹیں
1801
+ ٹلتیں
1802
+ ٹنگیں
1803
+ ٹیپیں
1804
+ ٹیکیں
1805
+ ٹیمیں
1806
+ ٹہلیں
1807
+ ٹھتیں
1808
+ ٹھسیں
1809
+ ٹھگیں
1810
+ ٹھلیں
1811
+ ٹھنیں
1812
+ جپتیں
1813
+ جتتیں
1814
+ جچتیں
1815
+ جگتیں
1816
+ جگہیں
1817
+ جلتیں
1818
+ جلیس
1819
+ جمپیں
1820
+ جنتیں
1821
+ جنسیں
1822
+ جنگیں
1823
+ جنہیں
1824
+ جنھیں
1825
+ جیپیں
1826
+ جیتیں
1827
+ جیلیں
1828
+ جیہیں
1829
+ جہتیں
1830
+ جھتیں
1831
+ جھکیں
1832
+ جھلیں
1833
+ چبتیں
1834
+ چبکیں
1835
+ چبلیں
1836
+ چبھیں
1837
+ چپتیں
1838
+ چپٹیں
1839
+ چپکیں
1840
+ چپلیں
1841
+ چتتیں
1842
+ چٹخیں
1843
+ چٹکیں
1844
+ چسکیں
1845
+ چکلیں
1846
+ چکھیں
1847
+ چگتیں
1848
+ چلتیں
1849
+ چمٹیں
1850
+ چمکیں
1851
+ چنتیں
1852
+ چیپیں
1853
+ چیخیں
1854
+ چیلیں
1855
+ چہکیں
1856
+ چھپیں
1857
+ چھتیں
1858
+ چھلیں
1859
+ چھنیں
1860
+ حبتیں
1861
+ حجتیں
1862
+ حشتیں
1863
+ حمتیں
1864
+ حیتیں
1865
+ خلتیں
1866
+ ستتیں
1867
+ سٹکیں
1868
+ سجتیں
1869
+ سسکیں
1870
+ سعتیں
1871
+ سکتیں
1872
+ سلتیں
1873
+ سلگیں
1874
+ سمتیں
1875
+ سنتیں
1876
+ سنگیں
1877
+ سیتیں
1878
+ سیجیں
1879
+ سیخیں
1880
+ سیکیں
1881
+ سیلیں
1882
+ سیمیں
1883
+ چیلنج
1884
+ سہتیں
1885
+ سہلیں
1886
+ سہمیں
1887
+ شفٹیں
1888
+ شکلیں
1889
+ شکنیں
1890
+ شلفیں
1891
+ شمعیں
1892
+ صحتیں
1893
+ صفتیں
1894
+ صیتیں
1895
+ شفٹیں
1896
+ علتیں
1897
+ غمگیں
1898
+ عنیں
1899
+ عیتیں
1900
+ غبتیں
1901
+ غمگیں
1902
+ فصلیں
1903
+ فعتیں
1904
+ فلمیں
1905
+ فیسیں
1906
+ قسطیں
1907
+ قسمیں
1908
+ قلتیں
1909
+ قلمیں
1910
+ کٹتیں
1911
+ کٹکیں
1912
+ کچلیں
1913
+ کستیں
1914
+ کسلیں
1915
+ کعتیں
1916
+ کلتیں
1917
+ کملیں
1918
+ کیبیں
1919
+ کیکیں
1920
+ کیلیں
1921
+ کہتیں
1922
+ کھپیں
1923
+ کھتیں
1924
+ کھٹیں
1925
+ کھلیں
1926
+ گپکیں
1927
+ گتھیں
1928
+ گٹکیں
1929
+ گٹھیں
1930
+ گلتیں
1931
+ گنتیں
1932
+ گیسیں
1933
+ گہکیں
1934
+ گھٹیں
1935
+ گھچیں
1936
+ گھسیں
1937
+ گھلیں
1938
+ لپٹیں
1939
+ لپکیں
1940
+ لٹتیں
1941
+ لٹکیں
1942
+ لجھیں
1943
+ لچتیں
1944
+ لچکیں
1945
+ لچھیں
1946
+ لحتیں
1947
+ لسٹیں
1948
+ لشتیں
1949
+ لغتیں
1950
+ لکتیں
1951
+ لکھیں
1952
+ لگتیں
1953
+ لگنیں
1954
+ لمکیں
1955
+ لنشیں
1956
+ لنگیں
1957
+ لیپیں
1958
+ لیتیں
1959
+ لیٹیں
1960
+ لیچیں
1961
+ لیفیں
1962
+ لیقیں
1963
+ لیکیں
1964
+ لیلیں
1965
+ لہکیں
1966
+ لہنیں
1967
+ مٹتیں
1968
+ مٹکیں
1969
+ مثلیں
1970
+ مچتیں
1971
+ مچکیں
1972
+ مچلیں
1973
+ مسکیں
1974
+ مسلیں
1975
+ مشقیں
1976
+ مشکیں
1977
+ مکتیں
1978
+ ملتیں
1979
+ منتیں
1980
+ منکیں
1981
+ منگیں
1982
+ میتیں
1983
+ میٹیں
1984
+ میجیں
1985
+ میچیں
1986
+ میخیں
1987
+ میمیں
1988
+ مہکیں
1989
+ نبٹیں
1990
+ نبضیں
1991
+ نبھیں
1992
+ نپتیں
1993
+ نپٹیں
1994
+ نتتیں
1995
+ نتیس
1996
+ نتھیں
1997
+ نٹتیں
1998
+ نٹھیں
1999
+ نجبیں
2000
+ نجتیں
2001
+ نجشیں
2002
+ نجھیں
2003
+ نچتیں
2004
+ نچھیں
2005
+ نستیں
2006
+ نسلیں
2007
+ نظمیں
2008
+ نعتیں
2009
+ نسٹھو
2010
+ لچسپیا
2011
+ مطمع
2012
+ ثیق
2013
+ مغلظ
2014
+ پیچک
2015
+ فظے
2016
+ محنت
2017
+ نعشیں
2018
+ نعلیں
2019
+ نفلیں
2020
+ نقلیں
2021
+ نکتیں
2022
+ نکلیں
2023
+ نکھیں
2024
+ نگبیں
2025
+ نگتیں
2026
+ نگلیں
2027
+ نگئیں
2028
+ نگھیں
2029
+ نمٹیں
2030
+ نیتیں
2031
+ ئینس
2032
+ یشنیں
2033
+ یعتیں
2034
+ یکھیں
2035
+ یلتیں
2036
+ ینکیں
2037
+ ینگیں
2038
+ ہٹتیں
2039
+ ہچکیں
2040
+ ہکتیں
2041
+ ہگتیں
2042
+ ہلتیں
2043
+ ہلگیں
2044
+ ہمتیں
2045
+ ہمکیں
2046
+ ہمگیں
2047
+ ہنسیں
2048
+ ھکتیں
2049
+ ھلتیں
2050
+ ھلکیں
2051
+ ھمکیں
2052
+ ھنتیں
2053
+ ھنسیں
2054
+ ھنکیں
2055
+ بتیسو
2056
+ بٹینو
2057
+ بجلیو
2058
+ بچھیو
2059
+ بحثیو
2060
+ بختیو
2061
+ بخششو
2062
+ بخیلو
2063
+ بستیو
2064
+ بسکٹو
2065
+ بسملو
2066
+ بطگیو
2067
+ بقچیو
2068
+ بکسنو
2069
+ بکسیو
2070
+ بکیلو
2071
+ بگیلو
2072
+ بگینو
2073
+ بگھیو
2074
+ بلبلو
2075
+ بلٹیو
2076
+ بلخیو
2077
+ بلنگو
2078
+ بلیمو
2079
+ بمبیو
2080
+ بنگلو
2081
+ بیبیو
2082
+ بیتیو
2083
+ بیٹیو
2084
+ بیٹھو
2085
+ بیعتو
2086
+ بیکسو
2087
+ بیگمو
2088
+ بیگنو
2089
+ بیلٹو
2090
+ بیلچو
2091
+ بیلنو
2092
+ بینجو
2093
+ بینکو
2094
+ بھبکو
2095
+ بھبو
2096
+ بھپکو
2097
+ بھتنو
2098
+ بھٹکو
2099
+ بھٹیو
2100
+ بھسکو
2101
+ بھشکو
2102
+ بھگتو
2103
+ بھلسو
2104
+ بھمبو
2105
+ بھنکو
2106
+ بھنگو
2107
+ بھیجو
2108
+ بھیسو
2109
+ بھیگو
2110
+ بھیلو
2111
+ پپیتو
2112
+ پپیہو
2113
+ پتلیو
2114
+ پتنگو
2115
+ پتنیو
2116
+ پتیلو
2117
+ پٹیلو
2118
+ پچپنو
2119
+ پچیسو
2120
+ پچھلو
2121
+ پستیو
2122
+ پسلیو
2123
+ پسیجو
2124
+ پسینو
2125
+ پگلیو
2126
+ پگھلو
2127
+ پلپلو
2128
+ پلٹنو
2129
+ پلٹیو
2130
+ پلنگو
2131
+ پنسلو
2132
+ پنکھو
2133
+ پیٹیو
2134
+ پیٹھو
2135
+ پھٹکو
2136
+ پیچھو
2137
+ پیکٹو
2138
+ پینٹو
2139
+ پیکٹو
2140
+ پینٹو
2141
+ پینگو
2142
+ پہنچو
2143
+ پھبکو
2144
+ پھنسو
2145
+ پھپکو
2146
+ پھپھو
2147
+ پھٹکو
2148
+ پھسکو
2149
+ پھسلو
2150
+ پھلکو
2151
+ پھلیو
2152
+ پھنسو
2153
+ پھنکو
2154
+ پھیکو
2155
+ پھیلو
2156
+ تبتیو
2157
+ تتلیو
2158
+ تجلیو
2159
+ تختیو
2160
+ تسلیو
2161
+ تشفیو
2162
+ تصفیو
2163
+ تعلقو
2164
+ تلتلو
2165
+ تلخیو
2166
+ تنتنو
2167
+ تیلتو
2168
+ تیلیو
2169
+ تینہو
2170
+ تہمتو
2171
+ تھپکو
2172
+ تھنچو
2173
+ تھنیو
2174
+ تھلو
2175
+ ٹکلیو
2176
+ ٹگھلو
2177
+ ٹلٹلو
2178
+ ٹمنٹو
2179
+ ٹیبلو
2180
+ ٹیسٹو
2181
+ ٹیکسو
2182
+ ٹیلبو
2183
+ ٹیلیو
2184
+ ٹینٹو
2185
+ ٹینکو
2186
+ ٹہنیو
2187
+ ٹھٹکو
2188
+ ٹھٹھو
2189
+ ٹھسکو
2190
+ ٹھگنو
2191
+ ٹھلیو
2192
+ ٹھمکو
2193
+ ٹھنسو
2194
+ ٹھنکو
2195
+ ٹھنیو
2196
+ ٹھیکو
2197
+ ٹھیلو
2198
+ جبینو
2199
+ جپسیو
2200
+ جثیمو
2201
+ جستجو
2202
+ جنبشو
2203
+ جنبیو
2204
+ جنتیو
2205
+ جنگلو
2206
+ جنئیو
2207
+ جیٹھو
2208
+ جنیو
2209
+ جھپٹو
2210
+ جھپکو
2211
+ جھٹکن
2212
+ جھجکو
2213
+ جھکیو
2214
+ جھگیو
2215
+ جھلسو
2216
+ جھلکو
2217
+ جھمکو
2218
+ جھنجو
2219
+ جھنکو
2220
+ جھیلو
2221
+ چپٹیو
2222
+ چٹھیو
2223
+ چٹکلو
2224
+ چٹکیو
2225
+ چٹنیو
2226
+ چٹیلو
2227
+ چسکیو
2228
+ چسنیو
2229
+ چشتیو
2230
+ چغلیو
2231
+ چلبلو
2232
+ چلمنو
2233
+ چمٹیو
2234
+ چمچیو
2235
+ چمنیو
2236
+ چنکٹو
2237
+ چنگیو
2238
+ چنگھو
2239
+ چنٹو
2240
+ چینٹو
2241
+ چینگو
2242
+ چینیو
2243
+ چہچہو
2244
+ چہیتو
2245
+ چھپنو
2246
+ چھٹکو
2247
+ چھٹیو
2248
+ چھچھل
2249
+ چھلکو
2250
+ چھنٹو
2251
+ چھنکو
2252
+ چھیکو
2253
+ چھیلو
2254
+ چھینو
2255
+ حبشنو
2256
+ حبشیو
2257
+ حبیبو
2258
+ حسنیو
2259
+ حسینو
2260
+ حشتیو
2261
+ حشمتو
2262
+ حکمتو
2263
+ حکیمو
2264
+ حلیفو
2265
+ حنفیو
2266
+ حیتیو
2267
+ خبطیو
2268
+ خبیثو
2269
+ خصتیو
2270
+ خصلتو
2271
+ خطیبو
2272
+ خلفیو
2273
+ خلقیو
2274
+ خلیجو
2275
+ خلیقو
2276
+ خمچیو
2277
+ خمیسو
2278
+ خنکیو
2279
+ سبکیو
2280
+ سبیلو
2281
+ ستخطو
2282
+ ستعفو
2283
+ ستلیو
2284
+ ستنبو
2285
+ ستنجو
2286
+ سٹیجو
2287
+ سٹیچو
2288
+ سٹیفو
2289
+ سٹینو
2290
+ سجنیو
2291
+ سختیو
2292
+ سسکیو
2293
+ سطبلو
2294
+ سفینو
2295
+ سقنقو
2296
+ سقیفو
2297
+ سسکچیو
2298
+ سیکچو
2299
+ سکیلو
2300
+ سکیمو
2301
+ سگنلو
2302
+ سلجھو
2303
+ سلسلو
2304
+ سلفیو
2305
+ سلیٹو
2306
+ سلیقو
2307
+ سمجھو
2308
+ سمیٹو
2309
+ سنجیو
2310
+ سنجھو
2311
+ سنکیو
2312
+ سنگتو
2313
+ سنگیو
2314
+ سنیو
2315
+ سیپیو
2316
+ سیٹھو
2317
+ سیشنو
2318
+ سیکھو
2319
+ سینتو
2320
+ سینٹو
2321
+ سینچو
2322
+ سینکو
2323
+ سینگو
2324
+ سینیو
2325
+ شبیہو
2326
+ شفقتو
2327
+ شکستو
2328
+ شکنجو
2329
+ شکیو
2330
+ شلغمو
2331
+ شمنیو
2332
+ شیخیو
2333
+ شیشیو
2334
+ شیمپو
2335
+ صحبتو
2336
+ صحیفو
2337
+ صطبلو
2338
+ صنعتو
2339
+ ضبطیو
2340
+ ضعیفو
2341
+ ضمیمو
2342
+ طبلقو
2343
+ طبیبو
2344
+ طلعتو
2345
+ طنطنو
2346
+ طینتو
2347
+ ظلمتو
2348
+ عجمیو
2349
+ عصبیو
2350
+ عصمتو
2351
+ عظمتو
2352
+ علتو
2353
+ عملیو
2354
+ عنکبو
2355
+ عیبیو
2356
+ عیلیو
2357
+ فیسٹو
2358
+ فیصلو
2359
+ فیلسو
2360
+ فہمیو
2361
+ قبطیو
2362
+ قبیلو
2363
+ قسمتو
2364
+ قفیتو
2365
+ قلفیو
2366
+ قلیتو
2367
+ قلیمو
2368
+ قمچیو
2369
+ قمقمو
2370
+ قمیصو
2371
+ قیمتو
2372
+ قہقہو
2373
+ کپکپو
2374
+ کتیسو
2375
+ کٹکٹو
2376
+ کٹنیو
2377
+ کسبیو
2378
+ کستیو
2379
+ کسٹھو
2380
+ کلغیو
2381
+ کلفتو
2382
+ کلیجو
2383
+ کلیلو
2384
+ کلیمو
2385
+ کلھیو
2386
+ کمبلو
2387
+ کمپیو
2388
+ کمسنو
2389
+ کمیتو
2390
+ کمیلو
2391
+ کمنو
2392
+ کنٹھو
2393
+ کنجیو
2394
+ کنکٹو
2395
+ کنکئو
2396
+ کنگفو
2397
+ کنگلو
2398
+ کنگنو
2399
+ کنگھو
2400
+ کیبنو
2401
+ کیتیو
2402
+ کیسٹو
2403
+ کیسیو
2404
+ کیمپو
2405
+ کینچو
2406
+ کھٹکو
2407
+ کھٹلو
2408
+ کھٹیو
2409
+ کھسکو
2410
+ کھسلو
2411
+ کھکھو
2412
+ کھمبو
2413
+ کھنچو
2414
+ کھنکو
2415
+ کھیپو
2416
+ کھیتو
2417
+ کھیلو
2418
+ کھیئو
2419
+ گتھنو
2420
+ گتھیو
2421
+ گٹکیو
2422
+ گشتیو
2423
+ گفتگو
2424
+ گلٹیو
2425
+ گلگلو
2426
+ گنتیو
2427
+ گنٹھو
2428
+ گنجیو
2429
+ گنگنو
2430
+ گھپلو
2431
+ گھٹکو
2432
+ گھٹنو
2433
+ گھسٹو
2434
+ گھگھو
2435
+ گھنٹو
2436
+ گھنگو
2437
+ گھیکو
2438
+ لبلبو
2439
+ لبیلو
2440
+ لپیٹو
2441
+ لٹکنو
2442
+ لجھنو
2443
+ لچھنو
2444
+ لشتیو
2445
+ لطیفو
2446
+ لعنتو
2447
+ لعینو
2448
+ لفینگو
2449
+ لکشیو
2450
+ لگنیو
2451
+ لمحمو
2452
+ لمختو
2453
+ لمخلو
2454
+ لمعبو
2455
+ لمعمو
2456
+ لمکتو
2457
+ لمنظو
2458
+ لنگیو
2459
+ لنگھو
2460
+ لیبلو
2461
+ لیتھو
2462
+ لیچیو
2463
+ لیسیو
2464
+ لیگیو
2465
+ لیمپو
2466
+ لہنگو
2467
+ مبلغو
2468
+ متقیو
2469
+ مٹکیو
2470
+ مٹھیو
2471
+ مثلثو
2472
+ مجسمو
2473
+ مجلسو
2474
+ مجمعو
2475
+ مچلکو
2476
+ محبتو
2477
+ محسنو
2478
+ محفلو
2479
+ محققو
2480
+ محکمو
2481
+ محملو
2482
+ محنتو
2483
+ مخلصو
2484
+ مخمصو
2485
+ مخملو
2486
+ مخنثو
2487
+ مسکنو
2488
+ مسلکو
2489
+ مسلمو
2490
+ مسئلو
2491
+ مشعلو
2492
+ مشغلو
2493
+ مشفقو
2494
+ مشقتو
2495
+ مشکبو
2496
+ مشکلو
2497
+ مشکیو
2498
+ مشکو
2499
+ مشینو
2500
+ مصطفو
2501
+ مصلحو
2502
+ مصنفو
2503
+ مطلعو
2504
+ معلمو
2505
+ مغلپو
2506
+ مغنیو
2507
+ مفلسو
2508
+ مکتبو
2509
+ مکینو
2510
+ مکھنو
2511
+ مکھیو
2512
+ ملکیو
2513
+ منجمو
2514
+ منجنو
2515
+ منچلو
2516
+ منشیو
2517
+ منصبو
2518
+ منصبو
2519
+ منصفو
2520
+ منطقو
2521
+ منگنو
2522
+ منگھو
2523
+ میٹھو
2524
+ میکلو
2525
+ میمنو
2526
+ مہینو
2527
+ نتیجو
2528
+ نتھنو
2529
+ نٹنیو
2530
+ نٹیٹو
2531
+ نٹھلو
2532
+ نجمنو
2533
+ نجیبو
2534
+ نجیلو
2535
+ نچلیو
2536
+ نسبتو
2537
+ نسٹھو
2538
+ نسسکو
2539
+ نشستو
2540
+ نشیبو
2541
+ نشینو
2542
+ نصیبو
2543
+ نظمیو
2544
+ نعمتو
2545
+ نقیبو
2546
+ نکمو
2547
+ نکمیو
2548
+ نکیلو
2549
+ نکھتو
2550
+ نکھٹو
2551
+ نکھیو
2552
+ نگلیو
2553
+ نگینو
2554
+ نگیلو
2555
+ نلسٹو
2556
+ نلکیو
2557
+ نمکخو
2558
+ نیپچو
2559
+ نیسکو
2560
+ نیکیو
2561
+ نیلگو
2562
+ نیمچو
2563
+ ئجسٹو
2564
+ ئیسکو
2565
+ ئیکلو
2566
+ ئیگیو
2567
+ ئینچو
2568
+ یتیمو
2569
+ یجنٹو
2570
+ یخنیو
2571
+ یسٹھو
2572
+ یکھیو
2573
+ یگچیو
2574
+ یلچیو
2575
+ یلیمو
2576
+ ھکینو
2577
+ ھمکیو
2578
+ بصیغئہ
2579
+ سینئہ
2580
+ شعبئہ
2581
+ صیغئہ
2582
+ عطیئہ
2583
+ غنچئہ
2584
+ فیقئہ
2585
+ قبلئہ
2586
+ قلعئہ
2587
+ نقطعئہ
2588
+ نیمئہ
2589
+ ہفتئہ
2590
+ ببیسی
2591
+ بپتنی
2592
+ بتکتی
2593
+ بتکنی
2594
+ بتیسی
2595
+ بجھتی
2596
+ بجھنی
2597
+ بچکتی
2598
+ بچکنی
2599
+ بچلتی
2600
+ بچلنی
2601
+ بچھتی
2602
+ بچھنی
2603
+ بخشتی
2604
+ بخششی
2605
+ بخشنی
2606
+ بخیلی
2607
+ بستگی
2608
+ بستنی
2609
+ بسکٹی
2610
+ بسنتی
2611
+ بکبکی
2612
+ بکینی
2613
+ بگینی
2614
+ بگیلی
2615
+ بلبلی
2616
+ بلٹتی
2617
+ بلٹنی
2618
+ بلغی
2619
+ بلکتی
2620
+ بلکنی
2621
+ بللی
2622
+ بلیسی
2623
+ بمبئی
2624
+ بنٹتی
2625
+ بنٹنی
2626
+ بنجتی
2627
+ بنجنی
2628
+ بنسنی
2629
+ بنفشی
2630
+ بنیٹی
2631
+ بنینی
2632
+ بتیتی
2633
+ بتینی
2634
+ بیٹھی
2635
+ بیجتی
2636
+ بیجنی
2637
+ بیچتی
2638
+ بیچنی
2639
+ بیسنی
2640
+ بیکسی
2641
+ بیگمی
2642
+ بیگنی
2643
+ بیلتی
2644
+ بیلتی
2645
+ بیلنی
2646
+ بینتی
2647
+ بینکی
2648
+ بیننی
2649
+ بیہقی
2650
+ بھجتی
2651
+ بھجنی
2652
+ بہشتی
2653
+ بہکتی
2654
+ بہکنی
2655
+ بہلتی
2656
+ بہلنی
2657
+ بہنگی
2658
+ بھبکی
2659
+ بھپکی
2660
+ بھتنی
2661
+ بھٹکی
2662
+ بھٹنی
2663
+ بھٹئ
2664
+ بھجتی
2665
+ بھجنی
2666
+ بھچتی
2667
+ بھچنی
2668
+ بھسکی
2669
+ بھشتی
2670
+ بھکتی
2671
+ بھکنی
2672
+ بھگتی
2673
+ بھلتی
2674
+ بھلسی
2675
+ بھلنی
2676
+ بھنتی
2677
+ بھنچی
2678
+ بھنکی
2679
+ بھنگی
2680
+ بھننی
2681
+ بھیجی
2682
+ بھیکی
2683
+ بھیگی
2684
+ بھیلی
2685
+ بھینی
2686
+ پتیلی
2687
+ پتھتی
2688
+ پتھنی
2689
+ پٹختی
2690
+ پٹچنی
2691
+ پٹکنی
2692
+ پٹکتی
2693
+ پٹیتی
2694
+ پچکتی
2695
+ پچکنی
2696
+ پچپسی
2697
+ پچھتی
2698
+ پچھلی
2699
+ پچھمی
2700
+ پچھنی
2701
+ پچتگی
2702
+ پستئ
2703
+ پسیجی
2704
+ پگلتی
2705
+ پگلنی
2706
+ پگھلی
2707
+ پلپلی
2708
+ پلتھی
2709
+ پلٹتی
2710
+ پلٹنی
2711
+ پنبئ
2712
+ پنپنی
2713
+ پنتھی
2714
+ پنچھی
2715
+ پنکھی
2716
+ پنگتی
2717
+ پنیلی
2718
+ پیپسی
2719
+ پیپلی
2720
+ پیتلی
2721
+ پیتھی
2722
+ پیٹتی
2723
+ پیٹنی
2724
+ پیٹھی
2725
+ پیستی
2726
+ پیسنی
2727
+ پیشگی
2728
+ پیکسی
2729
+ پیلتی
2730
+ پیلنی
2731
+ پینٹی
2732
+ پھسکی
2733
+ پہنتی
2734
+ پہنچی
2735
+ پہنی
2736
+ پہیلی
2737
+ پھبتی
2738
+ پھبکی
2739
+ پھبنی
2740
+ پھپی
2741
+ پھپکی
2742
+ پھپھی
2743
+ پھٹتی
2744
+ پھٹکی
2745
+ پھٹنی
2746
+ پھسکی
2747
+ پھسلی
2748
+ پھکتی
2749
+ پھکنی
2750
+ پھلتی
2751
+ پھلٹی
2752
+ پھلسی
2753
+ پھلکی
2754
+ پھلنی
2755
+ پھنتی
2756
+ پھنسی
2757
+ پھنکی
2758
+ پھنگی
2759
+ پھننی
2760
+ پھیکی
2761
+ پھیلی
2762
+ پھینی
2763
+ تبتی
2764
+ تیبچی
2765
+ تپکتی
2766
+ تپکنی
2767
+ تحفگی
2768
+ تشنجی
2769
+ تشنگی
2770
+ تعصبی
2771
+ تعصبی
2772
+ تعلقی
2773
+ تعلی
2774
+ تغلقی
2775
+ تکبکی
2776
+ تکتکی
2777
+ تکلفی
2778
+ تکینی
2779
+ تلتلی
2780
+ تللی
2781
+ تلملی
2782
+ تلیٹی
2783
+ تمیمی
2784
+ تنتنی
2785
+ تنفسی
2786
+ تنکتی
2787
+ تنکنی
2788
+ تیبچی
2789
+ تیپچی
2790
+ تیجتی
2791
+ تیجنی
2792
+ تیکھی
2793
+ تھپتی
2794
+ تھپکی
2795
+ تھپنی
2796
+ تھتھی
2797
+ تھجتی
2798
+ تھجنی
2799
+ تھکتی
2800
+ تھکلی
2801
+ تھکنی
2802
+ تھگلی
2803
+ تھلتی
2804
+ تھلنی
2805
+ تھمتی
2806
+ تھمنی
2807
+ تھنچی
2808
+ تھیلی
2809
+ ٹپکتی
2810
+ ٹکٹکی
2811
+ ٹکھلی
2812
+ ٹلٹلی
2813
+ ٹنگتی
2814
+ ٹنگنی
2815
+ ٹیپتی
2816
+ ٹیپنی
2817
+ ٹیکتی
2818
+ ٹیکسی
2819
+ ٹیکنی
2820
+ ٹینکی
2821
+ ٹہلتی
2822
+ ٹہلنی
2823
+ ٹھٹکی
2824
+ ٹھٹھی
2825
+ ٹھستی
2826
+ ٹھسکی
2827
+ ٹھسنی
2828
+ ٹھکتی
2829
+ ٹھکنی
2830
+ ٹھگتی
2831
+ ٹھگنی
2832
+ ٹھلتی
2833
+ ٹھلنی
2834
+ ٹھمکی
2835
+ ٹھنتی
2836
+ ٹھنکی
2837
+ ٹھنگی
2838
+ ٹھننی
2839
+ ٹھیکی
2840
+ ٹھیگی
2841
+ ٹھینی
2842
+ ثعلبی
2843
+ جستگی
2844
+ جلیبی
2845
+ جلیسی
2846
+ جلیلی
2847
+ جملگی
2848
+ جمنئ
2849
+ جمیلی
2850
+ جنگلی
2851
+ جیتتی
2852
+ جیتنی
2853
+ جیٹھی
2854
+ جہنمی
2855
+ جھپٹی
2856
+ جھپکی
2857
+ جھجکی
2858
+ جھکتی
2859
+ جھکنی
2860
+ جھلتی
2861
+ جھلسی
2862
+ جھلکی
2863
+ جھلنی
2864
+ جھمکی
2865
+ جھنجی
2866
+ جھیلی
2867
+ چبکتی
2868
+ چبکنی
2869
+ چبینی
2870
+ چبھتی
2871
+ چبھنی
2872
+ چپٹتی
2873
+ چپٹنی
2874
+ چپکتی
2875
+ چپکنی
2876
+ چپنٹی
2877
+ چپیٹی
2878
+ چتھلی
2879
+ چٹختی
2880
+ چٹخنی
2881
+ چٹکتی
2882
+ چٹکنی
2883
+ ہچکنی
2884
+ چسکتی
2885
+ چسکنی
2886
+ چکٹتی
2887
+ چکٹنی
2888
+ چکلتی
2889
+ چکلنی
2890
+ چکھتی
2891
+ چکھنی
2892
+ چلبلی
2893
+ چلچلی
2894
+ چلملچی
2895
+ چمپئ
2896
+ چمٹتی
2897
+ چمٹنی
2898
+ چمکتی
2899
+ چمکنی
2900
+ چنبلی
2901
+ چنچنی
2902
+ چپیتی
2903
+ چپینی
2904
+ چیختی
2905
+ چیخنی
2906
+ چپنٹی
2907
+ چینگی
2908
+ چہکتی
2909
+ چہکنی
2910
+ چہیتی
2911
+ چھپتی
2912
+ چھپٹی
2913
+ چھپنی
2914
+ چھٹتی
2915
+ چھٹکی
2916
+ چھچھو
2917
+ چھلتی
2918
+ چھلتی
2919
+ چھلکی
2920
+ چھلنی
2921
+ چھنتی
2922
+ چھنٹی
2923
+ چھنکی
2924
+ چھننی
2925
+ چھیپی
2926
+ چھیلی
2927
+ چھینی
2928
+ حبیبی
2929
+ حسنی
2930
+ حسینی
2931
+ حقیقی
2932
+ حکمتی
2933
+ حکیمی
2934
+ حلیلی
2935
+ حلیمی
2936
+ حنبلی
2937
+ خستگی
2938
+ خصلتی
2939
+ خفتگی
2940
+ خلتسی
2941
+ خلخلی
2942
+ خلیجی
2943
+ خمینی
2944
+ خنثی
2945
+ سپینی
2946
+ ستخطی
2947
+ ستھنی
2948
+ سٹکتی
2949
+ سٹکنی
2950
+ سجیلی
2951
+ سچیتی
2952
+ سسکتی
2953
+ سسکنی
2954
+ سلپـی
2955
+ سلجھی
2956
+ سلسلی
2957
+ سلفچی
2958
+ سلگتی
2959
+ سلگنی
2960
+ سلمی
2961
+ سلیٹی
2962
+ سلگنی
2963
+ سمبلی
2964
+ سمبھی
2965
+ سمپلی
2966
+ سمٹتی
2967
+ سمٹنی
2968
+ سمجھی
2969
+ سمیٹی
2970
+ سنسنی
2971
+ سنکتی
2972
+ سنکلی
2973
+ سنکنی
2974
+ سککتی
2975
+ سیفٹی
2976
+ سیکھی
2977
+ سیلتی
2978
+ سیلنی
2979
+ سیمگی
2980
+ سینتی
2981
+ سینٹی
2982
+ سینچی
2983
+ سینکی
2984
+ سینگی
2985
+ سہلتی
2986
+ سہلنی
2987
+ سہمتی
2988
+ سہمنی
2989
+ سہیلی
2990
+ شبنمی
2991
+ شستگی
2992
+ شفتگی
2993
+ شفتلی
2994
+ شکیبی
2995
+ شلجمی
2996
+ شلغمی
2997
+ شمنگی
2998
+ صحبتی
2999
+ صخحچی
3000
+ صلیبی
3001
+ صنعتی
3002
+ ضعیفی
3003
+ طبلچی
3004
+ طبیعی
3005
+ طفیلی
3006
+ طلسمی
3007
+ عظمی
3008
+ عظیمی
3009
+ عقبی
3010
+ عقیلی
3011
+ علیگی
3012
+ غصیلی
3013
+ غفلتی
3014
+ غلئ
3015
+ غنچگی
3016
+ غنغنی
3017
+ غیبتی
3018
+ فلسفی
3019
+ فلیٹی
3020
+ فیمچی
3021
+ فیملی
3022
+ فینسی
3023
+ قسمتی
3024
+ قلعئ
3025
+ قلیبی
3026
+ قلیتی
3027
+ قلیمی
3028
+ قیمتی
3029
+ قینـی
3030
+ کپکپی
3031
+ کتھئ
3032
+ کٹکٹی
3033
+ کٹکنی
3034
+ کچکچی
3035
+ کچلتی
3036
+ کچلنی
3037
+ کچھنی
3038
+ کسلتی
3039
+ کسلنی
3040
+ کشتنی
3041
+ کشمشی
3042
+ کلبلی
3043
+ کلتھی
3044
+ کلیتی
3045
+ کلیٹی
3046
+ کلیجی
3047
+ کلیمی
3048
+ کمپلی
3049
+ کمسنی
3050
+ کملتی
3051
+ کملنی
3052
+ کمیتی
3053
+ کمیٹی
3054
+ کمینی
3055
+ کنپٹی
3056
+ کنجنی
3057
+ کنچنی
3058
+ کنکتی
3059
+ کنکٹی
3060
+ کنکنی
3061
+ کنکلی
3062
+ کنگھی
3063
+ کیتلی
3064
+ کیتھی
3065
+ کیچلی
3066
+ کیکتی
3067
+ ککیلنی
3068
+ کھبی
3069
+ کھپتی
3070
+ کھپچی
3071
+ کھپنی
3072
+ کھتی
3073
+ کھتلی
3074
+ کھٹتی
3075
+ کھٹی
3076
+ کھٹکی
3077
+ کھٹل
3078
+ کھجی
3079
+ کھجلی
3080
+ کھسکی
3081
+ کھسلی
3082
+ کھلتی
3083
+ کھلنی
3084
+ کھمبی
3085
+ کھنچی
3086
+ کھنسی
3087
+ کھنکی
3088
+ کھنی
3089
+ کھیتی
3090
+ کھیلی
3091
+ کھینی
3092
+ کھیئی
3093
+ گپکتی
3094
+ گپکنی
3095
+ گتھتی
3096
+ گتھنی
3097
+ گٹکتی
3098
+ گٹکنی
3099
+ گٹھتی
3100
+ گٹھلی
3101
+ گٹھنی
3102
+ گجگجی
3103
+ گشتگی
3104
+ گفتنی
3105
+ گلتھی
3106
+ گلکلی
3107
+ گنٹھی
3108
+ گنگنی
3109
+ گینتی
3110
+ گہکتی
3111
+ گہکنی
3112
+ گھپتی
3113
+ گھپنی
3114
+ گھٹتی
3115
+ گھٹکی
3116
+ گھٹنی
3117
+ گھچلی
3118
+ گھستی
3119
+ گھسٹی
3120
+ گھسنی
3121
+ گھلتی
3122
+ گھلنی
3123
+ گھنٹی
3124
+ گھنگی
3125
+ گھنی
3126
+ لبلبی
3127
+ لبنی
3128
+ لنیلی
3129
+ لپٹتی
3130
+ لپٹنی
3131
+ لپکتی
3132
+ لپکنی
3133
+ لپیٹی
3134
+ لٹکتی
3135
+ لٹکنی
3136
+ لجمعی
3137
+ لجھتی
3138
+ لجھنی
3139
+ لچسپی
3140
+ نچکتی
3141
+ لچکنی
3142
+ لچھتی
3143
+ لچھمی
3144
+ لچھنی
3145
+ لیسنی
3146
+ لضحی
3147
+ لعنتی
3148
+ لفنگی
3149
+ لکشمی
3150
+ لکعبی
3151
+ لکھتی
3152
+ لکھنی
3153
+ لمحصی
3154
+ لمحیی
3155
+ لمعطی
3156
+ لمغنی
3157
+ لمکتی
3158
+ لکتی
3159
+ لمکنی
3160
+ لنسکی
3161
+ لنگتی
3162
+ کینڑ
3163
+ لنگھی
3164
+ لیپتی
3165
+ لیپنی
3166
+ لیٹتی
3167
+ لیٹنی
3168
+ لیجھی
3169
+ لیچتی
3170
+ لیچنی
3171
+ لیستی
3172
+ لیسنی
3173
+ لیلی
3174
+ لہکتی
3175
+ لہکنی
3176
+ مبنی
3177
+ مثیلی
3178
+ مجسٹی
3179
+ مجلسی
3180
+ مجلی
3181
+ مجملی
3182
+ مچکتی
3183
+ مچکنی
3184
+ مچلنی
3185
+ مچھلی
3186
+ محبتی
3187
+ محسنی
3188
+ محشی
3189
+ محلی
3190
+ محنتی
3191
+ مخلصی
3192
+ مخلی
3193
+ مخملی
3194
+ مسکتی
3195
+ مسکنی
3196
+ مسنتی
3197
+ مسلنی
3198
+ مسمسی
3199
+ مسمی
3200
+ مسیحی
3201
+ مشفقی
3202
+ مشقتی
3203
+ مثنی
3204
+ مشینی
3205
+ مصحفی
3206
+ مفطکی
3207
+ مصطگی
3208
+ مصلی
3209
+ مطلبی
3210
+ معطلی
3211
+ معلمی
3212
+ معلی
3213
+ معینی
3214
+ مغلئٖ
3215
+ مفلسی
3216
+ مقتضی
3217
+ مقضی
3218
+ مقفی
3219
+ مکتبی
3220
+ ملتجی
3221
+ ملگجی
3222
+ ملنکی
3223
+ ملہٹی
3224
+ منتہی
3225
+ منجلی
3226
+ منجھی
3227
+ منچلی
3228
+ منحنی
3229
+ منصبی
3230
+ منصفی
3231
+ منطقی
3232
+ منقی
3233
+ منکتی
3234
+ منکتی
3235
+ منگتی
3236
+ منگنی
3237
+ منمنی
3238
+ منہنی
3239
+ میتھی
3240
+ میٹتی
3241
+ میٹنی
3242
+ میٹھی
3243
+ میجتی
3244
+ میجنی
3245
+ میچتی
3246
+ میچنی
3247
+ میکسی
3248
+ میگنی
3249
+ میلسی
3250
+ میمنی
3251
+ مہکتی
3252
+ مہکنی
3253
+ مہنگی
3254
+ نبٹتی
3255
+ نبٹنی
3256
+ نبختی
3257
+ نبھتی
3258
+ نپٹتی
3259
+ نپٹنی
3260
+ پنجتی
3261
+ پنجنی
3262
+ نتھنی
3263
+ نٹیلی
3264
+ نٹھتی
3265
+ نٹھنی
3266
+ نجیلی
3267
+ نجھتی
3268
+ نجھنی
3269
+ نچھتی
3270
+ نچھنی
3271
+ نسبتی
3272
+ نسیسی
3273
+ نسینی
3274
+ نشیبی
3275
+ نشیلی
3276
+ نشینی
3277
+ نعیمی
3278
+ نکلتی
3279
+ نکلنی
3280
+ نکمی
3281
+ نکیلی
3282
+ نکھتی
3283
+ نکھنی
3284
+ نگلتی
3285
+ نگلنی
3286
+ نگیلی
3287
+ نگینی
3288
+ نگھتی
3289
+ نگھنی
3290
+ نمٹتی
3291
+ نمٹنی
3292
+ نطینی
3293
+ نیستی
3294
+ نیکسی
3295
+ نینسی
3296
+ ئستگی
3297
+ ئینٹی
3298
+ ٹینکی
3299
+ ئینگی
3300
+ یتیلی
3301
+ یتیمی
3302
+ یجنسی
3303
+ یحیی
3304
+ یخھنی
3305
+ یحیی
3306
+ یفتگی
3307
+ یقینی
3308
+ یکنسی
3309
+ یکھتی
3310
+ یکھنی
3311
+ یلمعی
3312
+ یمیمی
3313
+ یمینی
3314
+ ینٹھی
3315
+ ینکتی
3316
+ ینکنی
3317
+ ینگتی
3318
+ ینگنی
3319
+ ہتھنی
3320
+ نٹیلی
3321
+ ہچکتی
3322
+ ہچکنی
3323
+ ہستگی
3324
+ ہستنی
3325
+ ہلبلی
3326
+ ہلگتی
3327
+ ہلگنی
3328
+ ہمکنی
3329
+ ہنستی
3330
+ ہنسلی
3331
+ ہنسنی
3332
+ ہشیمی
3333
+ ھکیلی
3334
+ ھلکتی
3335
+ ھلکنی
3336
+ ھمکتی
3337
+ ھمکنی
3338
+ ھنستی
3339
+ ھسنی
3340
+ ھنکتی
3341
+ ھنکنی
3342
+ بپتنے
3343
+ بپتئے
3344
+ بتکتے
3345
+ بتکنے
3346
+ بتکئے
3347
+ بجھتے
3348
+ بجھنے
3349
+ بجھئے
3350
+ بچپنے
3351
+ بچکتے
3352
+ بچکنے
3353
+ بچکئے
3354
+ بچلتے
3355
+ بچلنے
3356
+ بچلئے
3357
+ بچھتے
3358
+ بچھنے
3359
+ بچھئے
3360
+ بخشتے
3361
+ بخشئے
3362
+ بکسلے
3363
+ بکسنے
3364
+ بگیلے
3365
+ بگینے
3366
+ بلبلے
3367
+ بلٹتے
3368
+ بلٹئے
3369
+ بلکتے
3370
+ بلکئے
3371
+ بللے
3372
+ بنٹتے
3373
+ بنٹئے
3374
+ بنجتے
3375
+ بنجئے
3376
+ بنگلے
3377
+ بیتتے
3378
+ بیتئے
3379
+ بیٹھے
3380
+ بیجتے
3381
+ بیچتے
3382
+ بیچئے
3383
+ بیلتے
3384
+ بیلچے
3385
+ بیلنے
3386
+ بیلئے
3387
+ بینتے
3388
+ بینئے
3389
+ بہکتے
3390
+ بہکئے
3391
+ بہلتے
3392
+ بہلئے
3393
+ بھپکے
3394
+ بھتنے
3395
+ بھٹکے
3396
+ بھجتے
3397
+ بھجئے
3398
+ بھچتے
3399
+ بھچئے
3400
+ بھسکے
3401
+ بھکتے
3402
+ بھکئے
3403
+ بھگتے
3404
+ بھلتے
3405
+ بھلسے
3406
+ بھلنے
3407
+ بھلئے
3408
+ بھنتے
3409
+ بھنچے
3410
+ بھنگے
3411
+ بھننے
3412
+ بھنئے
3413
+ بھیجے
3414
+ بھیگے
3415
+ بھیلے
3416
+ بھینے
3417
+ پپیتے
3418
+ پپیہے
3419
+ پتنگے
3420
+ پتیلے
3421
+ پتھتے
3422
+ پتھئے
3423
+ پٹختے
3424
+ پٹخئے
3425
+ پٹکتے
3426
+ پچکتے
3427
+ پچکئے
3428
+ پچھتے
3429
+ پچھلے
3430
+ پچھنے
3431
+ پچھئے
3432
+ پسیجے
3433
+ پسینے
3434
+ پگلتے
3435
+ پگلئے
3436
+ پگھلے
3437
+ پلپلے
3438
+ پلٹتے
3439
+ پلٹئے
3440
+ پنپتے
3441
+ پنپئے
3442
+ پنکھے
3443
+ پنیلے
3444
+ پیٹتے
3445
+ پیٹئے
3446
+ پیٹھے
3447
+ پیجئے
3448
+ پیچھے
3449
+ پیستے
3450
+ پیسئے
3451
+ پیلنے
3452
+ پیلئے
3453
+ پہنتے
3454
+ پہنچے
3455
+ پہننے
3456
+ پہنئے
3457
+ پھبتے
3458
+ پھبکے
3459
+ پھبنے
3460
+ پھبئے
3461
+ پھپکے
3462
+ پھٹتے
3463
+ پھٹکے
3464
+ پھٹنے
3465
+ پھٹئے
3466
+ پھسکے
3467
+ پھسلے
3468
+ پھکتے
3469
+ پھکئے
3470
+ پھلتے
3471
+ پھلسے
3472
+ پھلکے
3473
+ پھلنے
3474
+ پھلئے
3475
+ پھنسے
3476
+ پھنکے
3477
+ پھننے
3478
+ پھیکے
3479
+ پھیلے
3480
+ تپکتے
3481
+ تپکئے
3482
+ تصیفے
3483
+ تعلقے
3484
+ تکملے
3485
+ تلتلے
3486
+ تلملے
3487
+ تنتنے
3488
+ تنتئے
3489
+ تنکتے
3490
+ تنکئے
3491
+ تیجتے
3492
+ تیجئے
3493
+ تیکھے
3494
+ تھپتے
3495
+ تھپکے
3496
+ تھپنے
3497
+ تھپئے
3498
+ تھجتے
3499
+ تھجئے
3500
+ تھکتے
3501
+ تھکئے
3502
+ تھلتے
3503
+ تھلئے
3504
+ تھمتے
3505
+ تھمئے
3506
+ تھنچے
3507
+ تھیلے
3508
+ ٹپکتے
3509
+ ٹپکئے
3510
+ ٹگھلے
3511
+ ٹلٹلے
3512
+ ٹنگتے
3513
+ ٹنگئے
3514
+ ٹیپتے
3515
+ ٹیپئے
3516
+ ٹیکتے
3517
+ ٹیکئے
3518
+ ٹہلتے
3519
+ ٹہلئے
3520
+ ٹھٹکے
3521
+ ٹھٹھے
3522
+ ٹھستے
3523
+ ٹھسکے
3524
+ ٹھسئے
3525
+ ٹھگتے
3526
+ ٹھگئے
3527
+ ٹھلتے
3528
+ ٹھلئے
3529
+ ٹھمکے
3530
+ ٹھنتے
3531
+ ٹھننے
3532
+ ٹھنئے
3533
+ ٹھیکے
3534
+ ٹھیلے
3535
+ جنگلے
3536
+ جیتتے
3537
+ جیتئے
3538
+ جیٹھے
3539
+ جھپٹتے
3540
+ جھپکے
3541
+ جھٹکی
3542
+ جھجکے
3543
+ جھکتے
3544
+ جھکئے
3545
+ جھلتے
3546
+ جھلسے
3547
+ جھلکے
3548
+ جھلنے
3549
+ جھلئے
3550
+ جھمکے
3551
+ جھیلے
3552
+ چبکتے
3553
+ چبکئے
3554
+ چبینے
3555
+ چبھتے
3556
+ چبھئے
3557
+ چپٹتے
3558
+ چپٹئے
3559
+ چپچے
3560
+ چپکتے
3561
+ چپکئے
3562
+ چپیٹے
3563
+ چٹختے
3564
+ چٹخئے
3565
+ چٹکتے
3566
+ چٹکلے
3567
+ چٹکنے
3568
+ چٹکئے
3569
+ چسکتے
3570
+ چکٹتے
3571
+ چکٹئے
3572
+ چکلتے
3573
+ چکلئے
3574
+ چکھتے
3575
+ چکھئے
3576
+ چلبلے
3577
+ چمٹتے
3578
+ چمٹئے
3579
+ چمکتے
3580
+ چمکئے
3581
+ چنبھے
3582
+ چنچنے
3583
+ چیپتے
3584
+ چیپئے
3585
+ چیختے
3586
+ چیخئے
3587
+ چینٹے
3588
+ چینگے
3589
+ چہچہے
3590
+ چہکتے
3591
+ چہکئے
3592
+ چہیتے
3593
+ چھپتے
3594
+ چھپکے
3595
+ چھپنے
3596
+ چھپئے
3597
+ چھٹتے
3598
+ چھٹکے
3599
+ چھٹنے
3600
+ چھٹئے
3601
+ چھلتے
3602
+ چھلکے
3603
+ چھلنے
3604
+ چھلئے
3605
+ چھنتے
3606
+ چھنکے
3607
+ چھننے
3608
+ چھننے
3609
+ چھنئے
3610
+ چھیپے
3611
+ چھیلے
3612
+ چھینے
3613
+ ستعفے
3614
+ ستنجے
3615
+ سٹکتے
3616
+ سٹکئے
3617
+ سجیلے
3618
+ سسکتے
3619
+ سسکئے
3620
+ سفینے
3621
+ سلجھے
3622
+ سلسلے
3623
+ سلگتے
3624
+ سلگئے
3625
+ سلمے
3626
+ سلیقے
3627
+ سمٹتے
3628
+ سمٹئے
3629
+ سمجھے
3630
+ سمیٹے
3631
+ سنکتے
3632
+ سنکئے
3633
+ سیٹھے
3634
+ سیجئے
3635
+ سیچتے
3636
+ سیچئے
3637
+ سیکھے
3638
+ سیلتے
3639
+ سیلئے
3640
+ سینتے
3641
+ سینچے
3642
+ سینگے
3643
+ سہلتے
3644
+ سہلئے
3645
+ سہمتے
3646
+ سہمئے
3647
+ شکنجے
3648
+ صحیفے
3649
+ ضمیمے
3650
+ عطیئے
3651
+ عقبے
3652
+ عقیقے
3653
+ غصیلے
3654
+ غلبلے
3655
+ غلیلے
3656
+ فتیلے
3657
+ فلسفے
3658
+ فلیتے
3659
+ فیصلے
3660
+ قبیلے
3661
+ قضیئے
3662
+ قلئیے
3663
+ قمقمے
3664
+ قہقہے
3665
+ کپکپے
3666
+ کٹکتے
3667
+ کٹکٹے
3668
+ کٹکئے
3669
+ کٹیلے
3670
+ کچکچے
3671
+ کچلتے
3672
+ کچلئے
3673
+ کسلتے
3674
+ کسلئے
3675
+ کسیلے
3676
+ کلبلے
3677
+ کلیجے
3678
+ کملتے
3679
+ کملئے
3680
+ کمیلے
3681
+ کمینے
3682
+ کنٹھے
3683
+ کنکتے
3684
+ کنکٹے
3685
+ کنکنے
3686
+ کنکئے
3687
+ کنگلے
3688
+ کنگنے
3689
+ کنگھے
3690
+ کیجئے
3691
+ کیکتے
3692
+ کیکئے
3693
+ کیلتے
3694
+ کیلئے
3695
+ کھپتے
3696
+ کھپئے
3697
+ کھٹتے
3698
+ کھٹکے
3699
+ کھٹلے
3700
+ کھٹنے
3701
+ کھٹئے
3702
+ کھجلے
3703
+ کھسکے
3704
+ کھسلے
3705
+ کھلتے
3706
+ کھلئے
3707
+ کھمبے
3708
+ کھنچے
3709
+ کھنکے
3710
+ کھتے
3711
+ کھیلے
3712
+ کھنے
3713
+ کھیئے
3714
+ گپکتے
3715
+ گپکئے
3716
+ گتھتے
3717
+ گتھئے
3718
+ گٹھے
3719
+ گٹکتے
3720
+ گٹکئے
3721
+ گٹھتے
3722
+ گٹھئے
3723
+ گجگجے
3724
+ گلگلے
3725
+ گنٹھے
3726
+ گنگنے
3727
+ گہکتے
3728
+ گہکئے
3729
+ گھپتے
3730
+ گھپلے
3731
+ گھپنے
3732
+ گھپئے
3733
+ گھٹتے
3734
+ گھٹکے
3735
+ گھٹنے
3736
+ گھٹئے
3737
+ گھچلے
3738
+ گھستے
3739
+ گھٹے
3740
+ گھسئے
3741
+ گھلتے
3742
+ گھلئے
3743
+ گھنٹے
3744
+ گھنئے
3745
+ لبلبے
3746
+ لبیلے
3747
+ لپٹتے
3748
+ لپٹئے
3749
+ لپکتے
3750
+ لپکئے
3751
+ لپیٹتے
3752
+ لٹکتے
3753
+ لٹکئے
3754
+ لجھتے
3755
+ لجھئے
3756
+ لچکتے
3757
+ لچکئے
3758
+ لچھتے
3759
+ لچھئے
3760
+ لشتیے
3761
+ لطیفے
3762
+ لفنگے
3763
+ لکھتے
3764
+ لکھئے
3765
+ لمکتے
3766
+ لمکئے
3767
+ لنگتے
3768
+ لنگئے
3769
+ لنگھے
3770
+ لیپتے
3771
+ لیپئے
3772
+ لیٹتے
3773
+ لیٹئے
3774
+ لیجئے
3775
+ لیچتے
3776
+ لیچئے
3777
+ لیستے
3778
+ لیسئے
3779
+ لیکھے
3780
+ لیلے
3781
+ لینگے
3782
+ لہکتے
3783
+ لہکئے
3784
+ متھتے
3785
+ متھئے
3786
+ مٹکتے
3787
+ مٹکئے
3788
+ مثنے
3789
+ مجسمے
3790
+ مجلے
3791
+ مچکتے
3792
+ مچکئے
3793
+ مچلتے
3794
+ مچلئے
3795
+ محکمے
3796
+ مخلے
3797
+ مخمصے
3798
+ مسکتے
3799
+ مسکئے
3800
+ مسلتے
3801
+ مسلئے
3802
+ مسئلے
3803
+ مشغلے
3804
+ مشکلے
3805
+ مصلے
3806
+ مطلعے
3807
+ معلے
3808
+ ملگجے
3809
+ منجھے
3810
+ منچلے
3811
+ منکتے
3812
+ منکئے
3813
+ منگتے
3814
+ منگئے
3815
+ میٹتے
3816
+ میٹئے
3817
+ میٹھے
3818
+ میجتے
3819
+ میجئے
3820
+ میچتے
3821
+ میچئے
3822
+ مہکتے
3823
+ مہکئے
3824
+ مہنگے
3825
+ مہینے
3826
+ نبٹتے
3827
+ نبٹئے
3828
+ نبھتے
3829
+ نبھئے
3830
+ نپٹتے
3831
+ نپٹئے
3832
+ نپجتے
3833
+ نپجئے
3834
+ نتیجے
3835
+ نتھنے
3836
+ نتھئے
3837
+ نٹھئے
3838
+ نجھتے
3839
+ نجھئے
3840
+ نچنئے
3841
+ نچھتے
3842
+ نچھئے
3843
+ نشیلے
3844
+ نصیبے
3845
+ نکلتے
3846
+ نکلئے
3847
+ نکمے
3848
+ نکیلے
3849
+ نکھتے
3850
+ نکھئے
3851
+ نگلتے
3852
+ نگلئے
3853
+ نگیلے
3854
+ نگینے
3855
+ نگھتے
3856
+ نگھئے
3857
+ نمٹتے
3858
+ نمٹئے
3859
+ نمستے
3860
+ نیٹھے
3861
+ نیمچے
3862
+ ئینچے
3863
+ ئینگے
3864
+ یتیلے
3865
+ یکھتے
3866
+ یکھئے
3867
+ ینٹھے
3868
+ ینکتے
3869
+ ینکئے
3870
+ ینگتے
3871
+ ینگئے
3872
+ ہٹیلے
3873
+ ہچکتے
3874
+ ہچکئے
3875
+ ہلگتے
3876
+ ہلگئے
3877
+ ہمکتے
3878
+ ہمکئے
3879
+ ہنستے
3880
+ ہنسئے
3881
+ ھکیلتے
3882
+ ھکیلئے
3883
+ ھکیلے
3884
+ ھلکتے
3885
+ ھلکئے
3886
+ ھمکتے
3887
+ ھمکئے
3888
+ ھنستے
3889
+ ھنسئے
3890
+ ھنکتے
3891
+ ھنکئے
3892
+ بصیغہ
3893
+ بقیتہ
3894
+ بگینہ
3895
+ بلیلبہ
3896
+ بنفشہ
3897
+ بنگلہ
3898
+ بیلچہ
3899
+ تپنچہ
3900
+ تثنیہ
3901
+ تخلیہ
3902
+ تسمیہ
3903
+ تشبیہ
3904
+ تصفیہ
3905
+ تعلقہ
3906
+ تعمیہ
3907
+ تکمیلہ
3908
+ تمنچہ
3909
+ تنبیہ
3910
+ تہلکہ
3911
+ ٹھٹھہ
3912
+ ٹھیکہ
3913
+ ٹھیلہ
3914
+ ثعلبہ
3915
+ ثمینہ
3916
+ جلیلہ
3917
+ جمعتہ
3918
+ جمیلہ
3919
+ چشتیہ
3920
+ حبیبہ
3921
+ حسینہ
3922
+ حشتیہ
3923
+ حلفیہ
3924
+ حلیلہ
3925
+ حلیمہ
3926
+ حنیفہ
3927
+ خبیثہ
3928
+ خجستہ
3929
+ خفیفہ
3930
+ خلیلہ
3931
+ سفینہ
3932
+ سقیفہ
3933
+ شکستہ
3934
+ سکینہ
3935
+ سلسلہ
3936
+ سنبلہ
3937
+ سہیلہ
3938
+ شبیلہ
3939
+ شبینہ
3940
+ شعشعہ
3941
+ شفیعہ
3942
+ شفیقہ
3943
+ شقیقہ
3944
+ شکبیہ
3945
+ شکستہ
3946
+ شکنجہ
3947
+ شکیبہ
3948
+ شکیلہ
3949
+ شگفتہ
3950
+ شمیمہ
3951
+ شنیعہ
3952
+ شیفتہ
3953
+ شہنشہ
3954
+ صبعتہ
3955
+ صبغتہ
3956
+ صبیحہ
3957
+ صحیفہ
3958
+ ضحیفہ
3959
+ ضمیمہ
3960
+ طبیبہ
3961
+ طپنچہ
3962
+ طلیعہ
3963
+ طمنچہ
3964
+ طنطنہ
3965
+ عجیبہ
3966
+ عشقیہ
3967
+ عصبیہ
3968
+ عطیۂ
3969
+ عظیمہعفیفہ
3970
+ عقیقہ
3971
+ عقیلہ
3972
+ عقیمہ
3973
+ علقمہ
3974
+ علمیہ
3975
+ عیلیہ
3976
+ غلغلہ
3977
+ غلیطہ
3978
+ غلیظہ
3979
+ غلیلہ
3980
+ غنچۂ
3981
+ فتیلہ
3982
+ فصیحہ
3983
+ فلبتہ
3984
+ فلسفہ
3985
+ فلیتہ
3986
+ فیصلہ
3987
+ قبیحہ
3988
+ قبیلہ
3989
+ قتیکہ
3990
+ قسمیہ
3991
+ قمقمہ
3992
+ قہقہہ
3993
+ کبیسہ
3994
+ کٹکنہ
3995
+ کلبلہ
3996
+ کلکتہ
3997
+ کلمتہ
3998
+ کلنکہ
3999
+ کلیجہ
4000
+ کلیلہ
4001
+ کمینہ
4002
+ کنینہ
4003
+ کہھجلہ
4004
+ گنجفہ
4005
+ گھنٹہ
4006
+ لجمعہ
4007
+ لجملہ
4008
+ لجنتہ
4009
+ لخلخہ
4010
+ لشتیہ
4011
+ لشعبہ
4012
+ لطیفہ
4013
+ لعنتہ
4014
+ لقلقہ
4015
+ لکعبہ
4016
+ للغتہ
4017
+ للہ
4018
+ لمنتہ
4019
+ لیلتہ
4020
+ مبینہ
4021
+ متصلہ
4022
+ متفقہ
4023
+ متنبہ
4024
+ مثبتہ
4025
+ مجسمہ
4026
+ مجلہ
4027
+ مچلکہ
4028
+ محسنہ
4029
+ محصنہ
4030
+ محکمہ
4031
+ محلہ
4032
+ مخمصہ
4033
+ مسلمہ
4034
+ مسئلہ
4035
+ مسینہ
4036
+ مشتبہ
4037
+ مشعلہ
4038
+ مشغلہ
4039
+ مصنفہ
4040
+ مضحکہ
4041
+ مطلقہ
4042
+ مظلمہ
4043
+ مظنہ
4044
+ معلقہ
4045
+ معلمہ
4046
+ معینہ
4047
+ مغلیہ
4048
+ مغنیہ
4049
+ مقنہ
4050
+ مکتبہ
4051
+ منحقہ
4052
+ ملیحہ
4053
+ ممکنہ
4054
+ منصۂ
4055
+ منطقہ
4056
+ میختہ
4057
+ میمنہ
4058
+ مہملہ
4059
+ مہینہ
4060
+ نپیلہ
4061
+ نتیجہ
4062
+ نسیمہ
4063
+ نشستہ
4064
+ نصیبہ
4065
+ نطینہ
4066
+ نظمیہ
4067
+ نعتیہ
4068
+ نعیمہ
4069
+ نگینہ
4070
+ نیمچہ
4071
+ ئنچہ
4072
+ ہلیلہ
4073
+ ہمیشہ
4074
+ ہمہمہ
4075
+ پینٹہ
4076
+ ٹھیٹھ
4077
+ جھنجھ
4078
+ کھنکھ
4079
+ لینتھ
4080
+ ملیچھ
4081
+ ہیلتھ
4082
+ لبینتہ
4083
+ لعظمتہ
4084
+ مشخیل
4085
+ حسنی
4086
+ خنثی
4087
+ عقبی
4088
+ عیسی
4089
+ لبنی
4090
+ لصلو
4091
+ مثنی
4092
+ مجلی
4093
+ مجملا
4094
+ محشی
4095
+ جلگ
4096
+ معلی
4097
+ مقفی
4098
+ یحیی
4099
+ تعلقا
4100
+ قیمتا
4101
+ مجملا
4102
+ مطلقا
4103
+ بنجتی
4104
+ بنجنی
4105
+ بنسنی
4106
+ بنفشی
4107
+ بنیٹی
4108
+ بنینی
4109
+ بتیتی
4110
+ بتینی
4111
+ بیٹھی
4112
+ بیجتی
4113
+ بیجنی
4114
+ بیچتی
4115
+ بیچنی
4116
+ بیسنی
4117
+ بیکسی
4118
+ بیگمی
4119
+ بیگنی
4120
+ بیلتی
4121
+ بیلتی
4122
+ بیلنی
4123
+ بینتی
4124
+ بینکی
4125
+ بیننی
4126
+ بیہقی
4127
+ بھجتی
4128
+ بھجنی
4129
+ بہشتی
4130
+ بہکتی
4131
+ بہکنی
4132
+ بہلتی
4133
+ بہلنی
4134
+ بہنگی
4135
+ بھبکی
4136
+ بھپکی
4137
+ بھتنی
4138
+ بھٹکی
4139
+ بھٹنی
4140
+ بھٹئ
4141
+ بھجتی
4142
+ بھجنی
4143
+ بھچتی
4144
+ بھچنی
4145
+ بھسکی
4146
+ بھشتی
4147
+ بھکتی
4148
+ بھکنی
4149
+ بھگتی
4150
+ بھلتی
4151
+ بھلسی
4152
+ بھلنی
4153
+ بھنتی
4154
+ بھنچی
4155
+ بھنکی
4156
+ بھنگی
4157
+ بھننی
4158
+ بھیجی
4159
+ بھیکی
4160
+ بھیگی
4161
+ بھیلی
4162
+ بھینی
4163
+ پتیلی
4164
+ پتھتی
4165
+ پتھنی
4166
+ پٹختی
4167
+ پٹچنی
4168
+ پٹکنی
4169
+ پٹکتی
4170
+ پٹیتی
4171
+ پچکتی
4172
+ پچکنی
4173
+ پچپسی
4174
+ پچھتی
4175
+ پچھلی
4176
+ پچھمی
4177
+ پچھنی
4178
+ پچتگی
4179
+ پستئ
4180
+ پسیجی
4181
+ پگلتی
4182
+ پگلنی
4183
+ پگھلی
4184
+ پلپلی
4185
+ پلتھی
4186
+ پلٹتی
4187
+ پلٹنی
4188
+ پنبئ
4189
+ پنپنی
4190
+ پنتھی
4191
+ پنچھی
4192
+ پنکھی
4193
+ پنگتی
4194
+ پنیلی
4195
+ پیپسی
4196
+ پیپلی
4197
+ پیتلی
4198
+ پیتھی
4199
+ پیٹتی
4200
+ پیٹنی
4201
+ پیٹھی
4202
+ پیستی
4203
+ پیسنی
4204
+ پیشگی
4205
+ پیکسی
4206
+ پیلتی
4207
+ پیلنی
4208
+ پینٹی
4209
+ پھسکی
4210
+ پہنتی
4211
+ پہنچی
4212
+ پہنی
4213
+ پہیلی
4214
+ پھبتی
4215
+ پھبکی
4216
+ پھبنی
4217
+ پھپی
4218
+ پھپکی
4219
+ پھپھی
4220
+ پھٹتی
4221
+ پھٹکی
4222
+ پھٹنی
4223
+ پھسکی
4224
+ پھسلی
4225
+ پھکتی
4226
+ پھکنی
4227
+ پھلتی
4228
+ پھلٹی
4229
+ پھلسی
4230
+ پھلکی
4231
+ پھلنی
4232
+ پھنتی
4233
+ پھنسی
4234
+ پھنکی
4235
+ پھنگی
4236
+ پھننی
4237
+ پھیکی
4238
+ پھیلی
4239
+ پھینی
4240
+ تبتی
4241
+ تیبچی
4242
+ تپکتی
4243
+ تپکنی
4244
+ تحفگی
4245
+ تشنجی
4246
+ تشنگی
4247
+ تعصبی
4248
+ تعصبی
4249
+ تعلقی
4250
+ تعلی
4251
+ تغلقی
4252
+ تکبکی
4253
+ تکتکی
4254
+ تکلفی
4255
+ تکینی
4256
+ تلتلی
4257
+ تللی
4258
+ تلملی
4259
+ تلیٹی
4260
+ تمیمی
4261
+ تنتنی
4262
+ تنفسی
4263
+ تنکتی
4264
+ تنکنی
4265
+ تیبچی
4266
+ تیپچی
4267
+ تیجتی
4268
+ تیجنی
4269
+ تیکھی
4270
+ تھپتی
4271
+ تھپکی
4272
+ تھپنی
4273
+ تھتھی
4274
+ تھجتی
4275
+ تھجنی
4276
+ تھکتی
4277
+ تھکلی
4278
+ تھکنی
4279
+ تھگلی
4280
+ تھلتی
4281
+ تھلنی
4282
+ تھمتی
4283
+ تھمنی
4284
+ تھنچی
4285
+ تھیلی
4286
+ ٹپکتی
4287
+ ٹکٹکی
4288
+ ٹکھلی
4289
+ ٹلٹلی
4290
+ ٹنگتی
4291
+ ٹنگنی
4292
+ ٹیپتی
4293
+ ٹیپنی
4294
+ ٹیکتی
4295
+ ٹیکسی
4296
+ ٹیکنی
4297
+ ٹینکی
4298
+ ٹہلتی
4299
+ ٹہلنی
4300
+ ٹھٹکی
4301
+ ٹھٹھی
4302
+ ٹھستی
4303
+ ٹھسکی
4304
+ ٹھسنی
4305
+ ٹھکتی
4306
+ ٹھکنی
4307
+ ٹھگتی
4308
+ ٹھگنی
4309
+ ٹھلتی
4310
+ ٹھلنی
4311
+ ٹھمکی
4312
+ ٹھنتی
4313
+ ٹھنکی
4314
+ ٹھنگی
4315
+ ٹھننی
4316
+ ٹھیکی
4317
+ ٹھیگی
4318
+ ٹھینی
4319
+ ثعلبی
4320
+ جستگی
4321
+ جلیبی
4322
+ جلیسی
4323
+ جلیلی
4324
+ جملگی
4325
+ جمنئ
4326
+ جمیلی
4327
+ جنگلی
4328
+ جیتتی
4329
+ جیتنی
4330
+ جیٹھی
4331
+ جہنمی
4332
+ جھپٹی
4333
+ جھپکی
4334
+ جھجکی
4335
+ جھکتی
4336
+ جھکنی
4337
+ جھلتی
4338
+ جھلسی
4339
+ جھلکی
4340
+ جھلنی
4341
+ جھمکی
4342
+ جھنجی
4343
+ جھیلی
4344
+ چبکتی
4345
+ چبکنی
4346
+ چبینی
4347
+ چبھتی
4348
+ چبھنی
4349
+ چپٹتی
4350
+ چپٹنی
4351
+ چپکتی
4352
+ چپکنی
4353
+ چپنٹی
4354
+ چپیٹی
4355
+ چتھلی
4356
+ چٹختی
4357
+ چٹخنی
4358
+ چٹکتی
4359
+ چٹکنی
4360
+ ہچکنی
4361
+ چسکتی
4362
+ چسکنی
4363
+ چکٹتی
4364
+ چکٹنی
4365
+ چکلتی
4366
+ چکلنی
4367
+ چکھتی
4368
+ چکھنی
4369
+ چلبلی
4370
+ چلچلی
4371
+ چلملچی
4372
+ چمپئ
4373
+ چمٹتی
4374
+ چمٹنی
4375
+ چمکتی
4376
+ چمکنی
4377
+ چنبلی
4378
+ چنچنی
4379
+ چپیتی
4380
+ چپینی
4381
+ چیختی
4382
+ چیخنی
4383
+ چپنٹی
4384
+ چینگی
4385
+ چہکتی
4386
+ چہکنی
4387
+ چہیتی
4388
+ چھپتی
4389
+ چھپٹی
4390
+ چھپنی
4391
+ چھٹتی
4392
+ چھٹکی
4393
+ چھچھو
4394
+ چھلتی
4395
+ چھلتی
4396
+ چھلکی
4397
+ چھلنی
4398
+ چھنتی
4399
+ چھنٹی
4400
+ چھنکی
4401
+ چھننی
4402
+ چھیپی
4403
+ چھیلی
4404
+ چھینی
4405
+ حبیبی
4406
+ حسنی
4407
+ حسینی
4408
+ حقیقی
4409
+ حکمتی
4410
+ حکیمی
4411
+ حلیلی
4412
+ حلیمی
4413
+ حنبلی
4414
+ خستگی
4415
+ خصلتی
4416
+ خفتگی
4417
+ خلتسی
4418
+ خلخلی
4419
+ خلیجی
4420
+ خمینی
4421
+ خنثی
4422
+ سپینی
4423
+ ستخطی
4424
+ ستھنی
4425
+ سٹکتی
4426
+ سٹکنی
4427
+ سجیلی
4428
+ سچیتی
4429
+ سسکتی
4430
+ سسکنی
4431
+ سلپـی
4432
+ سلجھی
4433
+ سلسلی
4434
+ سلفچی
4435
+ سلگتی
4436
+ سلگنی
4437
+ سلمی
4438
+ سلیٹی
4439
+ سلگنی
4440
+ سمبلی
4441
+ سمبھی
4442
+ سمپلی
4443
+ سمٹتی
4444
+ سمٹنی
4445
+ سمجھی
4446
+ سمیٹی
4447
+ سنسنی
4448
+ سنکتی
4449
+ سنکلی
4450
+ سنکنی
4451
+ سککتی
4452
+ سیفٹی
4453
+ سیکھی
4454
+ سیلتی
4455
+ سیلنی
4456
+ سیمگی
4457
+ سینتی
4458
+ سینٹی
4459
+ سینچی
4460
+ سینکی
4461
+ سینگی
4462
+ سہلتی
4463
+ سہلنی
4464
+ سہمتی
4465
+ سہمنی
4466
+ سہیلی
4467
+ شبنمی
4468
+ شستگی
4469
+ شفتگی
4470
+ شفتلی
4471
+ شکیبی
4472
+ شلجمی
4473
+ شلغمی
4474
+ شمنگی
4475
+ صحبتی
4476
+ صخحچی
4477
+ صلیبی
4478
+ صنعتی
4479
+ ضعیفی
4480
+ طبلچی
4481
+ طبیعی
4482
+ طفیلی
4483
+ طلسمی
4484
+ عظمی
4485
+ عظیمی
4486
+ عقبی
4487
+ عقیلی
4488
+ علیگی
4489
+ غصیلی
4490
+ غفلتی
4491
+ غلئ
4492
+ غنچگی
4493
+ غنغنی
4494
+ غیبتی
4495
+ فلسفی
4496
+ فلیٹی
4497
+ فیمچی
4498
+ فیملی
4499
+ فینسی
4500
+ قسمتی
4501
+ قلعئ
4502
+ قلیبی
4503
+ قلیتی
4504
+ قلیمی
4505
+ قیمتی
4506
+ قینـی
4507
+ کپکپی
4508
+ کتھئ
4509
+ کٹکٹی
4510
+ کٹکنی
4511
+ کچکچی
4512
+ کچلتی
4513
+ کچلنی
4514
+ کچھنی
4515
+ کسلتی
4516
+ کسلنی
4517
+ کشتنی
4518
+ کشمشی
4519
+ کلبلی
4520
+ کلتھی
4521
+ کلیتی
4522
+ کلیٹی
4523
+ کلیجی
4524
+ کلیمی
4525
+ کمپلی
4526
+ کمسنی
4527
+ کملتی
4528
+ کملنی
4529
+ کمیتی
4530
+ کمیٹی
4531
+ کمینی
4532
+ کنپٹی
4533
+ کنجنی
4534
+ کنچنی
4535
+ کنکتی
4536
+ کنکٹی
4537
+ کنکنی
4538
+ کنکلی
4539
+ کنگھی
4540
+ کیتلی
4541
+ کیتھی
4542
+ کیچلی
4543
+ کیکتی
4544
+ ککیلنی
4545
+ کھبی
4546
+ کھپتی
4547
+ کھپچی
4548
+ کھپنی
4549
+ کھتی
4550
+ کھتلی
4551
+ کھٹتی
4552
+ کھٹی
4553
+ کھٹکی
4554
+ کھٹل
4555
+ کھجی
4556
+ کھجلی
4557
+ کھسکی
4558
+ کھسلی
4559
+ کھلتی
4560
+ کھلنی
4561
+ کھمبی
4562
+ کھنچی
4563
+ کھنسی
4564
+ کھنکی
4565
+ کھنی
4566
+ کھیتی
4567
+ کھیلی
4568
+ کھینی
4569
+ کھیئی
4570
+ گپکتی
4571
+ گپکنی
4572
+ گتھتی
4573
+ گتھنی
4574
+ گٹکتی
4575
+ گٹکنی
4576
+ گٹھتی
4577
+ گٹھلی
4578
+ گٹھنی
4579
+ گجگجی
4580
+ گشتگی
4581
+ گفتنی
4582
+ گلتھی
4583
+ گلکلی
4584
+ گنٹھی
4585
+ گنگنی
4586
+ گینتی
4587
+ گہکتی
4588
+ گہکنی
4589
+ گھپتی
4590
+ گھپنی
4591
+ گھٹتی
4592
+ گھٹکی
4593
+ گھٹنی
4594
+ گھچلی
4595
+ گھستی
4596
+ گھسٹی
4597
+ گھسنی
4598
+ گھلتی
4599
+ گھلنی
4600
+ گھنٹی
4601
+ گھنگی
4602
+ گھنی
4603
+ لبلبی
4604
+ لبنی
4605
+ لنیلی
4606
+ لپٹتی
4607
+ لپٹنی
4608
+ لپکتی
4609
+ لپکنی
4610
+ لپیٹی
4611
+ لٹکتی
4612
+ لٹکنی
4613
+ لجمعی
4614
+ لجھتی
4615
+ لجھنی
4616
+ لچسپی
4617
+ نچکتی
4618
+ لچکنی
4619
+ لچھتی
4620
+ لچھمی
4621
+ لچھنی
4622
+ لیسنی
4623
+ لضحی
4624
+ لعنتی
4625
+ لفنگی
4626
+ لکشمی
4627
+ لکعبی
4628
+ لکھتی
4629
+ لکھنی
4630
+ لمحصی
4631
+ لمحیی
4632
+ لمعطی
4633
+ لمغنی
4634
+ لمکتی
4635
+ لکتی
4636
+ لمکنی
4637
+ لنسکی
4638
+ لنگتی
4639
+ کینڑ
4640
+ لنگھی
4641
+ لیپتی
4642
+ لیپنی
4643
+ لیٹتی
4644
+ لیٹنی
4645
+ لیجھی
4646
+ لیچتی
4647
+ لیچنی
4648
+ لیستی
4649
+ لیسنی
4650
+ لیلی
4651
+ لہکتی
4652
+ لہکنی
4653
+ مبنی
4654
+ مثیلی
4655
+ مجسٹی
4656
+ مجلسی
4657
+ مجلی
4658
+ مجملی
4659
+ مچکتی
4660
+ مچکنی
4661
+ مچلنی
4662
+ مچھلی
4663
+ محبتی
4664
+ محسنی
4665
+ محشی
4666
+ محلی
4667
+ محنتی
4668
+ مخلصی
4669
+ مخلی
4670
+ مخملی
4671
+ مسکتی
4672
+ مسکنی
4673
+ مسنتی
4674
+ مسلنی
4675
+ مسمسی
4676
+ مسمی
4677
+ مسیحی
4678
+ مشفقی
4679
+ مشقتی
4680
+ مثنی
4681
+ مشینی
4682
+ مصحفی
4683
+ مفطکی
4684
+ مصطگی
4685
+ مصلی
4686
+ مطلبی
4687
+ معطلی
4688
+ معلمی
4689
+ معلی
4690
+ معینی
4691
+ مغلئٖ
4692
+ مفلسی
4693
+ مقتضی
4694
+ مقضی
4695
+ مقفی
4696
+ مکتبی
4697
+ ملتجی
4698
+ ملگجی
4699
+ ملنکی
4700
+ ملہٹی
4701
+ منتہی
4702
+ منجلی
4703
+ منجھی
4704
+ منچلی
4705
+ منحنی
4706
+ منصبی
4707
+ منصفی
4708
+ منطقی
4709
+ منقی
4710
+ منکتی
4711
+ منکتی
4712
+ منگتی
4713
+ منگنی
4714
+ منمنی
4715
+ منہنی
4716
+ میتھی
4717
+ میٹتی
4718
+ میٹنی
4719
+ میٹھی
4720
+ میجتی
4721
+ میجنی
4722
+ میچتی
4723
+ میچنی
4724
+ میکسی
4725
+ میگنی
4726
+ میلسی
4727
+ میمنی
4728
+ مہکتی
4729
+ مہکنی
4730
+ مہنگی
4731
+ نبٹتی
4732
+ نبٹنی
4733
+ نبختی
4734
+ نبھتی
4735
+ نپٹتی
4736
+ نپٹنی
4737
+ پنجتی
4738
+ پنجنی
4739
+ نتھنی
4740
+ نٹیلی
4741
+ نٹھتی
4742
+ نٹھنی
4743
+ نجیلی
4744
+ نجھتی
4745
+ نجھنی
4746
+ نچھتی
4747
+ نچھنی
4748
+ نسبتی
4749
+ نسیسی
4750
+ نسینی
4751
+ نشیبی
4752
+ نشیلی
4753
+ نشینی
4754
+ نعیمی
4755
+ نکلتی
4756
+ نکلنی
4757
+ نکمی
4758
+ نکیلی
4759
+ نکھتی
4760
+ نکھنی
4761
+ نگلتی
4762
+ نگلنی
4763
+ نگیلی
4764
+ نگینی
4765
+ نگھتی
4766
+ نگھنی
4767
+ نمٹتی
4768
+ نمٹنی
4769
+ نطینی
4770
+ نیستی
4771
+ نیکسی
4772
+ نینسی
4773
+ ئستگی
4774
+ ئینٹی
4775
+ ٹینکی
4776
+ ئینگی
4777
+ یتیلی
4778
+ یتیمی
4779
+ یجنسی
4780
+ یحیی
4781
+ یخھنی
4782
+ یحیی
4783
+ یفتگی
4784
+ یقینی
4785
+ یکنسی
4786
+ یکھتی
4787
+ یکھنی
4788
+ یلمعی
4789
+ یمیمی
4790
+ یمینی
4791
+ ینٹھی
4792
+ ینکتی
4793
+ ینکنی
4794
+ ینگتی
4795
+ ینگنی
4796
+ ہتھنی
4797
+ نٹیلی
4798
+ ہچکتی
4799
+ ہچکنی
4800
+ ہستگی
4801
+ ہستنی
4802
+ ہلبلی
4803
+ ہلگتی
4804
+ ہلگنی
4805
+ ہمکنی
4806
+ ہنستی
4807
+ ہنسلی
4808
+ ہنسنی
4809
+ ہشیمی
4810
+ ھکیلی
4811
+ ھلکتی
4812
+ ھلکنی
4813
+ ھمکتی
4814
+ ھمکنی
4815
+ ھنستی
4816
+ ھسنی
4817
+ ھنکتی
4818
+ ھنکنی
4819
+ بصیغہ
4820
+ بقیتہ
4821
+ بگینہ
4822
+ بلیلبہ
4823
+ بنفشہ
4824
+ بنگلہ
4825
+ بیلچہ
4826
+ تپنچہ
4827
+ تثنیہ
4828
+ تخلیہ
4829
+ تسمیہ
4830
+ تشبیہ
4831
+ تصفیہ
4832
+ تعلقہ
4833
+ تعمیہ
4834
+ تکمیلہ
4835
+ تمنچہ
4836
+ تنبیہ
4837
+ تہلکہ
4838
+ ٹھٹھہ
4839
+ ٹھیکہ
4840
+ ٹھیلہ
4841
+ ثعلبہ
4842
+ ثمینہ
4843
+ جلیلہ
4844
+ جمعتہ
4845
+ جمیلہ
4846
+ چشتیہ
4847
+ حبیبہ
4848
+ حسینہ
4849
+ حشتیہ
4850
+ حلفیہ
4851
+ حلیلہ
4852
+ حلیمہ
4853
+ حنیفہ
4854
+ خبیثہ
4855
+ خجستہ
4856
+ خفیفہ
4857
+ خلیلہ
4858
+ سفینہ
4859
+ سقیفہ
4860
+ شکستہ
4861
+ سکینہ
4862
+ سلسلہ
4863
+ سنبلہ
4864
+ سہیلہ
4865
+ شبیلہ
4866
+ شبینہ
4867
+ شعشعہ
4868
+ شفیعہ
4869
+ شفیقہ
4870
+ شقیقہ
4871
+ شکبیہ
4872
+ شکستہ
4873
+ شکنجہ
4874
+ شکیبہ
4875
+ شکیلہ
4876
+ شگفتہ
4877
+ شمیمہ
4878
+ شنیعہ
4879
+ شیفتہ
4880
+ شہنشہ
4881
+ صبعتہ
4882
+ صبغتہ
4883
+ صبیحہ
4884
+ صحیفہ
4885
+ ضحیفہ
4886
+ ضمیمہ
4887
+ طبیبہ
4888
+ طپنچہ
4889
+ طلیعہ
4890
+ طمنچہ
4891
+ طنطنہ
4892
+ عجیبہ
4893
+ عشقیہ
4894
+ عصبیہ
4895
+ عطیۂ
4896
+ عظیمہعفیفہ
4897
+ عقیقہ
4898
+ عقیلہ
4899
+ عقیمہ
4900
+ علقمہ
4901
+ علمیہ
4902
+ عیلیہ
4903
+ غلغلہ
4904
+ غلیطہ
4905
+ غلیظہ
4906
+ غلیلہ
4907
+ غنچۂ
4908
+ فتیلہ
4909
+ فصیحہ
4910
+ فلبتہ
4911
+ فلسفہ
4912
+ فلیتہ
4913
+ فیصلہ
4914
+ قبیحہ
4915
+ قبیلہ
4916
+ قتیکہ
4917
+ قسمیہ
4918
+ قمقمہ
4919
+ قہقہہ
4920
+ کبیسہ
4921
+ کٹکنہ
4922
+ کلبلہ
4923
+ کلکتہ
4924
+ کلمتہ
4925
+ کلنکہ
4926
+ کلیجہ
4927
+ کلیلہ
4928
+ کمینہ
4929
+ کنینہ
4930
+ کہھجلہ
4931
+ گنجفہ
4932
+ گھنٹہ
4933
+ لجمعہ
4934
+ لجملہ
4935
+ لجنتہ
4936
+ لخلخہ
4937
+ لشتیہ
4938
+ لشعبہ
4939
+ لطیفہ
4940
+ لعنتہ
4941
+ لقلقہ
4942
+ لکعبہ
4943
+ للغتہ
4944
+ للہ
4945
+ لمنتہ
4946
+ لیلتہ
4947
+ مبینہ
4948
+ متصلہ
4949
+ متفقہ
4950
+ متنبہ
4951
+ مثبتہ
4952
+ مجسمہ
4953
+ مجلہ
4954
+ مچلکہ
4955
+ محسنہ
4956
+ محصنہ
4957
+ محکمہ
4958
+ محلہ
4959
+ مخمصہ
4960
+ مسلمہ
4961
+ مسئلہ
4962
+ مسینہ
4963
+ مشتبہ
4964
+ مشعلہ
4965
+ مشغلہ
4966
+ مصنفہ
4967
+ مضحکہ
4968
+ مطلقہ
4969
+ مظلمہ
4970
+ مظنہ
4971
+ معلقہ
4972
+ معلمہ
4973
+ معینہ
4974
+ مغلیہ
4975
+ مغنیہ
4976
+ مقنہ
4977
+ مکتبہ
4978
+ منحقہ
4979
+ ملیحہ
4980
+ ممکنہ
4981
+ منصۂ
4982
+ منطقہ
4983
+ میختہ
4984
+ میمنہ
4985
+ مہملہ
4986
+ مہینہ
4987
+ نپیلہ
4988
+ نتیجہ
4989
+ نسیمہ
4990
+ نشستہ
4991
+ نصیبہ
4992
+ نطینہ
4993
+ نظمیہ
4994
+ نعتیہ
4995
+ نعیمہ
4996
+ نگینہ
4997
+ نیمچہ
4998
+ ئنچہ
4999
+ ہلیلہ
5000
+ ہمیشہ
5001
+ ہمہمہ
5002
+ پینٹہ
5003
+ ٹھیٹھ
5004
+ جھنجھ
5005
+ کھنکھ
5006
+ لینتھ
5007
+ ملیچھ
5008
+ ہیلتھ
5009
+ لبینتہ
5010
+ لعظمتہ
5011
+ مشخیل
5012
+ حسنی
5013
+ خنثی
5014
+ عقبی
5015
+ عیسی
5016
+ لبنی
5017
+ لصلو
5018
+ مثنی
5019
+ مجلی
5020
+ مجملا
5021
+ محشی
5022
+ جلگ
5023
+ معلی
5024
+ مقفی
5025
+ یحیی
5026
+ تعلقا
5027
+ قیمتا
5028
+ مجملا
5029
+ مطلقا