create-berna-stencil 1.0.24 → 1.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (782) hide show
  1. package/.eleventy.js +1 -0
  2. package/_tools/assistant.js +6 -6
  3. package/_tools/modules/updateOutputPath.js +1 -4
  4. package/_tools/modules/updatePage.js +33 -72
  5. package/_tools/res/templates/template.js +23 -0
  6. package/_tools/res/templates/template.njk +8 -0
  7. package/_tools/res/templates/template.scss +17 -0
  8. package/bin/create.js +1 -1
  9. package/package.json +1 -1
  10. package/src/api/.htaccess +6 -11
  11. package/src/api/config.example.php +4 -6
  12. package/src/api/config.php +5 -20
  13. package/src/api/core/composer.json +2 -1
  14. package/src/api/core/composer.lock +679 -492
  15. package/src/api/{index.php → core/index.php} +53 -24
  16. package/src/api/core/init.php +0 -13
  17. package/src/api/core/vendor/composer/autoload_files.php +1 -0
  18. package/src/api/core/vendor/composer/autoload_psr4.php +2 -0
  19. package/src/api/core/vendor/composer/autoload_static.php +14 -0
  20. package/src/api/core/vendor/composer/installed.json +196 -0
  21. package/src/api/core/vendor/composer/installed.php +29 -2
  22. package/src/api/core/vendor/composer/platform_check.php +2 -2
  23. package/src/api/core/vendor/fakerphp/faker/.editorconfig +18 -0
  24. package/src/api/core/vendor/fakerphp/faker/.gitattributes +16 -0
  25. package/src/api/core/vendor/fakerphp/faker/.github/CONTRIBUTING.md +35 -0
  26. package/src/api/core/vendor/fakerphp/faker/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  27. package/src/api/core/vendor/fakerphp/faker/.github/PULL_REQUEST_TEMPLATE.md +21 -0
  28. package/src/api/core/vendor/fakerphp/faker/.github/SECURITY.md +17 -0
  29. package/src/api/core/vendor/fakerphp/faker/.github/dependabot.yml +63 -0
  30. package/src/api/core/vendor/fakerphp/faker/.github/stale.yml +14 -0
  31. package/src/api/core/vendor/fakerphp/faker/.github/workflows/bc-check.yaml +24 -0
  32. package/src/api/core/vendor/fakerphp/faker/.github/workflows/branch-alias.yaml +67 -0
  33. package/src/api/core/vendor/fakerphp/faker/.github/workflows/code-coverage.yaml +55 -0
  34. package/src/api/core/vendor/fakerphp/faker/.github/workflows/coding-standards.yaml +77 -0
  35. package/src/api/core/vendor/fakerphp/faker/.github/workflows/rector.yaml +51 -0
  36. package/src/api/core/vendor/fakerphp/faker/.github/workflows/static-analysis.yaml +91 -0
  37. package/src/api/core/vendor/fakerphp/faker/.github/workflows/tests.yaml +58 -0
  38. package/src/api/core/vendor/fakerphp/faker/.php-cs-fixer.dist.php +241 -0
  39. package/src/api/core/vendor/fakerphp/faker/.yamllint.yaml +67 -0
  40. package/src/api/core/vendor/fakerphp/faker/CHANGELOG.md +209 -0
  41. package/src/api/core/vendor/fakerphp/faker/LICENSE +22 -0
  42. package/src/api/core/vendor/fakerphp/faker/Makefile +43 -0
  43. package/src/api/core/vendor/fakerphp/faker/README.md +114 -0
  44. package/src/api/core/vendor/fakerphp/faker/codecov.yml +1 -0
  45. package/src/api/core/vendor/fakerphp/faker/composer.json +56 -0
  46. package/src/api/core/vendor/fakerphp/faker/phpstan-baseline.neon +945 -0
  47. package/src/api/core/vendor/fakerphp/faker/phpstan.neon.dist +10 -0
  48. package/src/api/core/vendor/fakerphp/faker/phpunit.xml.dist +29 -0
  49. package/src/api/core/vendor/fakerphp/faker/psalm.baseline.xml +227 -0
  50. package/src/api/core/vendor/fakerphp/faker/psalm.xml +19 -0
  51. package/src/api/core/vendor/fakerphp/faker/rector-migrate.php +161 -0
  52. package/src/api/core/vendor/fakerphp/faker/roave-bc-check.yaml +51 -0
  53. package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Ean.php +50 -0
  54. package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Iban.php +69 -0
  55. package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Inn.php +42 -0
  56. package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Isbn.php +60 -0
  57. package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Luhn.php +72 -0
  58. package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/TCNo.php +43 -0
  59. package/src/api/core/vendor/fakerphp/faker/src/Faker/ChanceGenerator.php +60 -0
  60. package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/Container.php +139 -0
  61. package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/ContainerBuilder.php +68 -0
  62. package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/ContainerException.php +14 -0
  63. package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/ContainerInterface.php +9 -0
  64. package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/NotInContainerException.php +14 -0
  65. package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Barcode.php +52 -0
  66. package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Blood.php +42 -0
  67. package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Color.php +177 -0
  68. package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Coordinates.php +78 -0
  69. package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/DateTime.php +217 -0
  70. package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/File.php +564 -0
  71. package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Number.php +83 -0
  72. package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Uuid.php +65 -0
  73. package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Version.php +69 -0
  74. package/src/api/core/vendor/fakerphp/faker/src/Faker/DefaultGenerator.php +49 -0
  75. package/src/api/core/vendor/fakerphp/faker/src/Faker/Documentor.php +70 -0
  76. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/AddressExtension.php +39 -0
  77. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/BarcodeExtension.php +41 -0
  78. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/BloodExtension.php +30 -0
  79. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/ColorExtension.php +63 -0
  80. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/CompanyExtension.php +21 -0
  81. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/CountryExtension.php +14 -0
  82. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/DateTimeExtension.php +242 -0
  83. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/Extension.php +14 -0
  84. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/ExtensionNotFound.php +12 -0
  85. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/FileExtension.php +28 -0
  86. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/GeneratorAwareExtension.php +20 -0
  87. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/GeneratorAwareExtensionTrait.php +30 -0
  88. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/Helper.php +106 -0
  89. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/NumberExtension.php +53 -0
  90. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/PersonExtension.php +52 -0
  91. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/PhoneNumberExtension.php +19 -0
  92. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/UuidExtension.php +16 -0
  93. package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/VersionExtension.php +21 -0
  94. package/src/api/core/vendor/fakerphp/faker/src/Faker/Factory.php +71 -0
  95. package/src/api/core/vendor/fakerphp/faker/src/Faker/Generator.php +985 -0
  96. package/src/api/core/vendor/fakerphp/faker/src/Faker/Guesser/Name.php +180 -0
  97. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/CakePHP/ColumnTypeGuesser.php +79 -0
  98. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/CakePHP/EntityPopulator.php +173 -0
  99. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/CakePHP/Populator.php +113 -0
  100. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Doctrine/ColumnTypeGuesser.php +91 -0
  101. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Doctrine/EntityPopulator.php +248 -0
  102. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Doctrine/Populator.php +126 -0
  103. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Doctrine/backward-compatibility.php +11 -0
  104. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Mandango/ColumnTypeGuesser.php +57 -0
  105. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Mandango/EntityPopulator.php +123 -0
  106. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Mandango/Populator.php +63 -0
  107. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel/ColumnTypeGuesser.php +109 -0
  108. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel/EntityPopulator.php +204 -0
  109. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel/Populator.php +90 -0
  110. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel2/ColumnTypeGuesser.php +112 -0
  111. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel2/EntityPopulator.php +207 -0
  112. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel2/Populator.php +93 -0
  113. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Spot/ColumnTypeGuesser.php +84 -0
  114. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Spot/EntityPopulator.php +199 -0
  115. package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Spot/Populator.php +89 -0
  116. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Address.php +166 -0
  117. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Barcode.php +107 -0
  118. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Base.php +710 -0
  119. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Biased.php +65 -0
  120. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Color.php +158 -0
  121. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Company.php +50 -0
  122. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/DateTime.php +389 -0
  123. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/File.php +610 -0
  124. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/HtmlLorem.php +307 -0
  125. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Image.php +196 -0
  126. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Internet.php +407 -0
  127. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Lorem.php +228 -0
  128. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Medical.php +34 -0
  129. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Miscellaneous.php +342 -0
  130. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Payment.php +312 -0
  131. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Person.php +147 -0
  132. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/PhoneNumber.php +270 -0
  133. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Text.php +202 -0
  134. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/UserAgent.php +219 -0
  135. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Uuid.php +59 -0
  136. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Address.php +217 -0
  137. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Color.php +65 -0
  138. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Company.php +85 -0
  139. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Internet.php +93 -0
  140. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Payment.php +16 -0
  141. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Person.php +107 -0
  142. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Text.php +31 -0
  143. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Address.php +152 -0
  144. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Company.php +66 -0
  145. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Internet.php +55 -0
  146. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Person.php +108 -0
  147. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Text.php +272 -0
  148. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Address.php +146 -0
  149. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Color.php +81 -0
  150. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Company.php +78 -0
  151. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Internet.php +55 -0
  152. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Payment.php +22 -0
  153. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Person.php +121 -0
  154. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Text.php +272 -0
  155. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/at_AT/Payment.php +11 -0
  156. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bg_BG/Internet.php +9 -0
  157. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bg_BG/Payment.php +46 -0
  158. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bg_BG/Person.php +117 -0
  159. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bg_BG/PhoneNumber.php +20 -0
  160. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/Address.php +310 -0
  161. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/Company.php +28 -0
  162. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/Person.php +36 -0
  163. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/PhoneNumber.php +14 -0
  164. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/Utils.php +14 -0
  165. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Address.php +149 -0
  166. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Company.php +125 -0
  167. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/DateTime.php +65 -0
  168. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Internet.php +9 -0
  169. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Payment.php +22 -0
  170. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Person.php +538 -0
  171. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/PhoneNumber.php +14 -0
  172. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Text.php +7186 -0
  173. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Address.php +284 -0
  174. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Company.php +67 -0
  175. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Internet.php +27 -0
  176. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Payment.php +22 -0
  177. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Person.php +195 -0
  178. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/PhoneNumber.php +18 -0
  179. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Address.php +143 -0
  180. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Company.php +13 -0
  181. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Internet.php +9 -0
  182. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Payment.php +42 -0
  183. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Person.php +154 -0
  184. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/PhoneNumber.php +23 -0
  185. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Text.php +7 -0
  186. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Address.php +197 -0
  187. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Company.php +15 -0
  188. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Internet.php +17 -0
  189. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Payment.php +22 -0
  190. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Person.php +119 -0
  191. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/PhoneNumber.php +47 -0
  192. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Text.php +2038 -0
  193. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Address.php +126 -0
  194. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Company.php +24 -0
  195. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Internet.php +26 -0
  196. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Payment.php +60 -0
  197. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Person.php +132 -0
  198. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/PhoneNumber.php +127 -0
  199. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Text.php +2038 -0
  200. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Address.php +55 -0
  201. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Company.php +18 -0
  202. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Internet.php +9 -0
  203. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Payment.php +50 -0
  204. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Person.php +100 -0
  205. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/PhoneNumber.php +32 -0
  206. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Address.php +61 -0
  207. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Company.php +84 -0
  208. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Payment.php +22 -0
  209. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Person.php +181 -0
  210. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/PhoneNumber.php +324 -0
  211. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Text.php +2582 -0
  212. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_AU/Address.php +112 -0
  213. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_AU/Internet.php +9 -0
  214. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_AU/PhoneNumber.php +56 -0
  215. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_CA/Address.php +72 -0
  216. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_CA/PhoneNumber.php +18 -0
  217. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Address.php +174 -0
  218. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Company.php +130 -0
  219. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Internet.php +9 -0
  220. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Payment.php +22 -0
  221. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Person.php +113 -0
  222. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/PhoneNumber.php +49 -0
  223. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_HK/Address.php +239 -0
  224. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_HK/Internet.php +14 -0
  225. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_HK/PhoneNumber.php +41 -0
  226. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_IN/Address.php +188 -0
  227. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_IN/Internet.php +9 -0
  228. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_IN/Person.php +125 -0
  229. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_IN/PhoneNumber.php +37 -0
  230. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NG/Address.php +98 -0
  231. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NG/Internet.php +8 -0
  232. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NG/Person.php +90 -0
  233. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NG/PhoneNumber.php +133 -0
  234. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NZ/Address.php +88 -0
  235. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NZ/Internet.php +17 -0
  236. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NZ/PhoneNumber.php +102 -0
  237. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_PH/Address.php +417 -0
  238. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_PH/PhoneNumber.php +59 -0
  239. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_SG/Address.php +125 -0
  240. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_SG/Person.php +74 -0
  241. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_SG/PhoneNumber.php +105 -0
  242. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_UG/Address.php +101 -0
  243. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_UG/Internet.php +9 -0
  244. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_UG/Person.php +133 -0
  245. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_UG/PhoneNumber.php +17 -0
  246. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Address.php +97 -0
  247. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Company.php +119 -0
  248. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Payment.php +36 -0
  249. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Person.php +133 -0
  250. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/PhoneNumber.php +135 -0
  251. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Text.php +3721 -0
  252. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/Address.php +70 -0
  253. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/Company.php +26 -0
  254. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/Internet.php +23 -0
  255. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/Person.php +182 -0
  256. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/PhoneNumber.php +116 -0
  257. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_AR/Address.php +68 -0
  258. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_AR/Company.php +68 -0
  259. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_AR/Person.php +90 -0
  260. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_AR/PhoneNumber.php +42 -0
  261. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Address.php +101 -0
  262. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Color.php +24 -0
  263. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Company.php +82 -0
  264. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Internet.php +9 -0
  265. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Payment.php +42 -0
  266. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Person.php +149 -0
  267. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/PhoneNumber.php +47 -0
  268. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Text.php +688 -0
  269. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_PE/Address.php +65 -0
  270. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_PE/Company.php +88 -0
  271. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_PE/Person.php +105 -0
  272. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_PE/PhoneNumber.php +17 -0
  273. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/Address.php +72 -0
  274. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/Company.php +42 -0
  275. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/Internet.php +9 -0
  276. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/Person.php +176 -0
  277. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/PhoneNumber.php +29 -0
  278. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/et_EE/Person.php +84 -0
  279. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Address.php +100 -0
  280. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Company.php +60 -0
  281. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Internet.php +102 -0
  282. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Person.php +210 -0
  283. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/PhoneNumber.php +76 -0
  284. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Text.php +551 -0
  285. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Address.php +85 -0
  286. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Company.php +66 -0
  287. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Internet.php +9 -0
  288. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Payment.php +22 -0
  289. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Person.php +154 -0
  290. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/PhoneNumber.php +101 -0
  291. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Address.php +72 -0
  292. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Color.php +7 -0
  293. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Company.php +13 -0
  294. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Internet.php +9 -0
  295. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Payment.php +42 -0
  296. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Person.php +49 -0
  297. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/PhoneNumber.php +20 -0
  298. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Address.php +125 -0
  299. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Color.php +7 -0
  300. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Company.php +7 -0
  301. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Person.php +82 -0
  302. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Text.php +2446 -0
  303. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Address.php +150 -0
  304. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Color.php +7 -0
  305. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Company.php +15 -0
  306. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Internet.php +9 -0
  307. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Payment.php +22 -0
  308. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Person.php +114 -0
  309. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/PhoneNumber.php +43 -0
  310. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Text.php +7 -0
  311. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Address.php +151 -0
  312. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Color.php +40 -0
  313. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Company.php +481 -0
  314. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Internet.php +9 -0
  315. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Payment.php +49 -0
  316. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Person.php +130 -0
  317. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/PhoneNumber.php +168 -0
  318. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Text.php +15532 -0
  319. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/Address.php +122 -0
  320. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/Company.php +14 -0
  321. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/Payment.php +22 -0
  322. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/Person.php +132 -0
  323. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/PhoneNumber.php +14 -0
  324. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/Address.php +68 -0
  325. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/Company.php +25 -0
  326. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/Payment.php +22 -0
  327. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/Person.php +27 -0
  328. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/PhoneNumber.php +14 -0
  329. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Address.php +148 -0
  330. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Company.php +13 -0
  331. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Payment.php +22 -0
  332. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Person.php +101 -0
  333. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/PhoneNumber.php +14 -0
  334. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Text.php +3407 -0
  335. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Address.php +132 -0
  336. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Color.php +12 -0
  337. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Company.php +56 -0
  338. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Internet.php +9 -0
  339. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Person.php +110 -0
  340. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/PhoneNumber.php +36 -0
  341. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Address.php +319 -0
  342. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Color.php +40 -0
  343. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Company.php +64 -0
  344. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Internet.php +25 -0
  345. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Person.php +343 -0
  346. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/PhoneNumber.php +55 -0
  347. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Address.php +175 -0
  348. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Company.php +50 -0
  349. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Internet.php +20 -0
  350. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Payment.php +22 -0
  351. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Person.php +142 -0
  352. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/PhoneNumber.php +17 -0
  353. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Address.php +149 -0
  354. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Company.php +15 -0
  355. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Internet.php +9 -0
  356. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Payment.php +22 -0
  357. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Person.php +102 -0
  358. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/PhoneNumber.php +43 -0
  359. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Text.php +7 -0
  360. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Address.php +97 -0
  361. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Company.php +95 -0
  362. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Internet.php +9 -0
  363. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Payment.php +22 -0
  364. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Person.php +113 -0
  365. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/PhoneNumber.php +21 -0
  366. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Text.php +2079 -0
  367. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Address.php +137 -0
  368. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Company.php +17 -0
  369. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Internet.php +93 -0
  370. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Person.php +147 -0
  371. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/PhoneNumber.php +19 -0
  372. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Text.php +640 -0
  373. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Address.php +139 -0
  374. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Color.php +16 -0
  375. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Company.php +53 -0
  376. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/DateTime.php +43 -0
  377. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Internet.php +15 -0
  378. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Payment.php +55 -0
  379. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Person.php +63 -0
  380. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/PhoneNumber.php +14 -0
  381. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Text.php +1000 -0
  382. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Address.php +105 -0
  383. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Color.php +12 -0
  384. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Company.php +72 -0
  385. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Internet.php +9 -0
  386. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Payment.php +35 -0
  387. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Person.php +265 -0
  388. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/PhoneNumber.php +16 -0
  389. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Text.php +492 -0
  390. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Address.php +96 -0
  391. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Company.php +31 -0
  392. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Internet.php +86 -0
  393. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Person.php +54 -0
  394. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/PhoneNumber.php +40 -0
  395. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Text.php +1725 -0
  396. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Address.php +209 -0
  397. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Company.php +15 -0
  398. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Internet.php +18 -0
  399. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Payment.php +22 -0
  400. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Person.php +390 -0
  401. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/PhoneNumber.php +17 -0
  402. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Address.php +117 -0
  403. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Color.php +19 -0
  404. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Internet.php +9 -0
  405. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Payment.php +22 -0
  406. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Person.php +173 -0
  407. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/PhoneNumber.php +15 -0
  408. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/Address.php +119 -0
  409. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/Company.php +49 -0
  410. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/Payment.php +22 -0
  411. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/Person.php +102 -0
  412. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/PhoneNumber.php +15 -0
  413. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/mn_MN/Person.php +102 -0
  414. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/mn_MN/PhoneNumber.php +13 -0
  415. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Address.php +710 -0
  416. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Company.php +105 -0
  417. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Miscellaneous.php +169 -0
  418. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Payment.php +244 -0
  419. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Person.php +812 -0
  420. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/PhoneNumber.php +217 -0
  421. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/Address.php +197 -0
  422. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/Company.php +57 -0
  423. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/Payment.php +22 -0
  424. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/Person.php +335 -0
  425. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/PhoneNumber.php +41 -0
  426. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/Address.php +131 -0
  427. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/Internet.php +32 -0
  428. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/Payment.php +316 -0
  429. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/Person.php +121 -0
  430. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/PhoneNumber.php +19 -0
  431. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Address.php +124 -0
  432. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Company.php +13 -0
  433. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Internet.php +9 -0
  434. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Payment.php +49 -0
  435. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Person.php +108 -0
  436. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/PhoneNumber.php +20 -0
  437. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Text.php +25348 -0
  438. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Address.php +153 -0
  439. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Color.php +36 -0
  440. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Company.php +122 -0
  441. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Internet.php +9 -0
  442. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Payment.php +22 -0
  443. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Person.php +353 -0
  444. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/PhoneNumber.php +39 -0
  445. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Text.php +3933 -0
  446. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Address.php +209 -0
  447. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Color.php +40 -0
  448. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Company.php +90 -0
  449. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Internet.php +9 -0
  450. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/LicensePlate.php +545 -0
  451. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Payment.php +120 -0
  452. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Person.php +243 -0
  453. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/PhoneNumber.php +18 -0
  454. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Text.php +2867 -0
  455. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Address.php +154 -0
  456. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Company.php +36 -0
  457. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Internet.php +9 -0
  458. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Payment.php +148 -0
  459. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Person.php +159 -0
  460. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/PhoneNumber.php +150 -0
  461. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Text.php +3427 -0
  462. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/check_digit.php +39 -0
  463. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Address.php +130 -0
  464. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Company.php +16 -0
  465. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Internet.php +9 -0
  466. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Payment.php +22 -0
  467. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Person.php +147 -0
  468. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/PhoneNumber.php +50 -0
  469. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/Address.php +125 -0
  470. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/Payment.php +22 -0
  471. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/Person.php +91 -0
  472. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/PhoneNumber.php +33 -0
  473. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/Text.php +2465 -0
  474. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/Address.php +153 -0
  475. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/Payment.php +22 -0
  476. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/Person.php +251 -0
  477. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/PhoneNumber.php +62 -0
  478. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/Text.php +155 -0
  479. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Address.php +139 -0
  480. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Color.php +23 -0
  481. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Company.php +178 -0
  482. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Internet.php +9 -0
  483. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Payment.php +812 -0
  484. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Person.php +188 -0
  485. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/PhoneNumber.php +14 -0
  486. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Text.php +4551 -0
  487. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Address.php +343 -0
  488. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Company.php +66 -0
  489. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Internet.php +9 -0
  490. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Payment.php +22 -0
  491. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Person.php +171 -0
  492. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/PhoneNumber.php +15 -0
  493. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Address.php +106 -0
  494. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Company.php +14 -0
  495. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Internet.php +10 -0
  496. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Payment.php +22 -0
  497. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Person.php +149 -0
  498. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/PhoneNumber.php +18 -0
  499. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Cyrl_RS/Address.php +58 -0
  500. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Cyrl_RS/Payment.php +22 -0
  501. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Cyrl_RS/Person.php +242 -0
  502. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Latn_RS/Address.php +58 -0
  503. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Latn_RS/Payment.php +22 -0
  504. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Latn_RS/Person.php +213 -0
  505. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_RS/Address.php +58 -0
  506. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_RS/Payment.php +22 -0
  507. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_RS/Person.php +143 -0
  508. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Address.php +151 -0
  509. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Company.php +26 -0
  510. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Municipality.php +27 -0
  511. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Payment.php +22 -0
  512. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Person.php +170 -0
  513. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/PhoneNumber.php +64 -0
  514. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Address.php +141 -0
  515. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Color.php +16 -0
  516. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Company.php +32 -0
  517. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Internet.php +8 -0
  518. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Payment.php +44 -0
  519. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Person.php +87 -0
  520. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/PhoneNumber.php +39 -0
  521. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Address.php +94 -0
  522. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Color.php +58 -0
  523. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Company.php +100 -0
  524. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/DateTime.php +48 -0
  525. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Internet.php +9 -0
  526. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Payment.php +22 -0
  527. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Person.php +159 -0
  528. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/PhoneNumber.php +186 -0
  529. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Address.php +364 -0
  530. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Color.php +23 -0
  531. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Company.php +74 -0
  532. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Internet.php +9 -0
  533. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Payment.php +41 -0
  534. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Person.php +101 -0
  535. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/PhoneNumber.php +72 -0
  536. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Text.php +4512 -0
  537. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/Address.php +170 -0
  538. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/Color.php +36 -0
  539. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/Internet.php +8 -0
  540. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/Person.php +186 -0
  541. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/PhoneNumber.php +61 -0
  542. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Address.php +148 -0
  543. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Color.php +66 -0
  544. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Company.php +235 -0
  545. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/DateTime.php +48 -0
  546. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Internet.php +24 -0
  547. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Payment.php +43 -0
  548. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Person.php +83 -0
  549. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/PhoneNumber.php +23 -0
  550. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Address.php +421 -0
  551. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Color.php +66 -0
  552. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Company.php +268 -0
  553. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/DateTime.php +48 -0
  554. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Internet.php +28 -0
  555. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Payment.php +21 -0
  556. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Person.php +201 -0
  557. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/PhoneNumber.php +19 -0
  558. package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Text.php +900 -0
  559. package/src/api/core/vendor/fakerphp/faker/src/Faker/UniqueGenerator.php +87 -0
  560. package/src/api/core/vendor/fakerphp/faker/src/Faker/ValidGenerator.php +78 -0
  561. package/src/api/core/vendor/fakerphp/faker/src/autoload.php +29 -0
  562. package/src/api/core/vendor/fakerphp/faker/test/Faker/Calculator/EanTest.php +82 -0
  563. package/src/api/core/vendor/fakerphp/faker/test/Faker/Calculator/IbanTest.php +305 -0
  564. package/src/api/core/vendor/fakerphp/faker/test/Faker/Calculator/IsbnTest.php +57 -0
  565. package/src/api/core/vendor/fakerphp/faker/test/Faker/Calculator/LuhnTest.php +69 -0
  566. package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/BarcodeTest.php +40 -0
  567. package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/BloodTest.php +73 -0
  568. package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/ColorTest.php +77 -0
  569. package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/DateTimeTest.php +279 -0
  570. package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/NumberTest.php +99 -0
  571. package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/UuidTest.php +39 -0
  572. package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/VersionTest.php +21 -0
  573. package/src/api/core/vendor/fakerphp/faker/test/Faker/DefaultGeneratorTest.php +36 -0
  574. package/src/api/core/vendor/fakerphp/faker/test/Faker/Extension/ContainerBuilderTest.php +149 -0
  575. package/src/api/core/vendor/fakerphp/faker/test/Faker/Extension/ContainerTest.php +226 -0
  576. package/src/api/core/vendor/fakerphp/faker/test/Faker/Extension/GeneratorAwareExtensionTest.php +33 -0
  577. package/src/api/core/vendor/fakerphp/faker/test/Faker/Extension/HelperTest.php +84 -0
  578. package/src/api/core/vendor/fakerphp/faker/test/Faker/GeneratorTest.php +331 -0
  579. package/src/api/core/vendor/fakerphp/faker/test/Faker/ORM/Doctrine/ColumnTypeGuesserTest.php +25 -0
  580. package/src/api/core/vendor/fakerphp/faker/test/Faker/ORM/Doctrine/EntityPopulatorTest.php +26 -0
  581. package/src/api/core/vendor/fakerphp/faker/test/Faker/ORM/Doctrine/PopulatorTest.php +23 -0
  582. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/AddressTest.php +45 -0
  583. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/BarcodeTest.php +47 -0
  584. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/BaseTest.php +652 -0
  585. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/BiasedTest.php +82 -0
  586. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ColorTest.php +68 -0
  587. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/CompanyTest.php +27 -0
  588. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/DateTimeTest.php +295 -0
  589. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/HtmlLoremTest.php +32 -0
  590. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ImageTest.php +192 -0
  591. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/InternetTest.php +141 -0
  592. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/LocalizationTest.php +22 -0
  593. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/LoremTest.php +112 -0
  594. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/MedicalTest.php +32 -0
  595. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/MiscellaneousTest.php +62 -0
  596. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/PaymentTest.php +200 -0
  597. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/PersonTest.php +86 -0
  598. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/PhoneNumberTest.php +33 -0
  599. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ProviderOverrideTest.php +137 -0
  600. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/TextTest.php +111 -0
  601. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/UserAgentTest.php +59 -0
  602. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/UuidTest.php +36 -0
  603. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_EG/CompanyTest.php +32 -0
  604. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_EG/InternetTest.php +24 -0
  605. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_EG/PersonTest.php +23 -0
  606. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_EG/TextTest.php +22 -0
  607. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_JO/InternetTest.php +29 -0
  608. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_SA/CompanyTest.php +25 -0
  609. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_SA/InternetTest.php +23 -0
  610. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_SA/PersonTest.php +39 -0
  611. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/bg_BG/PaymentTest.php +25 -0
  612. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/bn_BD/PersonTest.php +29 -0
  613. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/cs_CZ/PersonTest.php +58 -0
  614. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/da_DK/InternetTest.php +29 -0
  615. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/AddressTest.php +27 -0
  616. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/InternetTest.php +29 -0
  617. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/PaymentTest.php +32 -0
  618. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/PersonTest.php +64 -0
  619. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/PhoneNumberTest.php +31 -0
  620. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_CH/AddressTest.php +54 -0
  621. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_CH/InternetTest.php +29 -0
  622. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_CH/PersonTest.php +32 -0
  623. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_CH/PhoneNumberTest.php +35 -0
  624. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_DE/InternetTest.php +29 -0
  625. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_DE/PhoneNumberTest.php +48 -0
  626. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/el_GR/PhoneNumberTest.php +77 -0
  627. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/el_GR/TextTest.php +60 -0
  628. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_AU/AddressTest.php +40 -0
  629. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_CA/AddressTest.php +60 -0
  630. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_GB/AddressTest.php +24 -0
  631. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_GB/CompanyTest.php +73 -0
  632. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_GB/PersonTest.php +29 -0
  633. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_GB/PhoneNumberTest.php +25 -0
  634. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_IN/AddressTest.php +48 -0
  635. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NG/AddressTest.php +46 -0
  636. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NG/InternetTest.php +28 -0
  637. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NG/PersonTest.php +25 -0
  638. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NG/PhoneNumberTest.php +26 -0
  639. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NZ/PhoneNumberTest.php +32 -0
  640. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_PH/AddressTest.php +44 -0
  641. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_SG/AddressTest.php +27 -0
  642. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_SG/PersonTest.php +79 -0
  643. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_SG/PhoneNumberTest.php +71 -0
  644. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_UG/AddressTest.php +38 -0
  645. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_US/CompanyTest.php +28 -0
  646. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_US/PaymentTest.php +79 -0
  647. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_US/PersonTest.php +42 -0
  648. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_US/PhoneNumberTest.php +87 -0
  649. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_ZA/CompanyTest.php +25 -0
  650. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_ZA/InternetTest.php +29 -0
  651. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_ZA/PersonTest.php +68 -0
  652. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_ZA/PhoneNumberTest.php +67 -0
  653. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_ES/PaymentTest.php +58 -0
  654. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_ES/PersonTest.php +44 -0
  655. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_ES/PhoneNumberTest.php +27 -0
  656. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_ES/TextTest.php +22 -0
  657. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_PE/CompanyTest.php +39 -0
  658. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_PE/PersonTest.php +23 -0
  659. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_VE/CompanyTest.php +30 -0
  660. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_VE/PersonTest.php +28 -0
  661. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fa_IR/PersonTest.php +48 -0
  662. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fi_FI/InternetTest.php +29 -0
  663. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fi_FI/PersonTest.php +85 -0
  664. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_BE/PaymentTest.php +25 -0
  665. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_CH/AddressTest.php +54 -0
  666. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_CH/InternetTest.php +29 -0
  667. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_CH/PersonTest.php +25 -0
  668. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_CH/PhoneNumberTest.php +27 -0
  669. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/AddressTest.php +43 -0
  670. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/ColorTest.php +35 -0
  671. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/CompanyTest.php +76 -0
  672. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/PaymentTest.php +49 -0
  673. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/PersonTest.php +35 -0
  674. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/PhoneNumberTest.php +73 -0
  675. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/TextTest.php +60 -0
  676. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/hu_HU/PersonTest.php +26 -0
  677. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/id_ID/PersonTest.php +89 -0
  678. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_CH/AddressTest.php +54 -0
  679. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_CH/InternetTest.php +29 -0
  680. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_CH/PersonTest.php +25 -0
  681. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_CH/PhoneNumberTest.php +27 -0
  682. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_IT/CompanyTest.php +23 -0
  683. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_IT/PersonTest.php +23 -0
  684. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ja_JP/InternetTest.php +33 -0
  685. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ja_JP/PersonTest.php +57 -0
  686. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ja_JP/PhoneNumberTest.php +26 -0
  687. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ka_GE/TextTest.php +60 -0
  688. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/kk_KZ/CompanyTest.php +29 -0
  689. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/kk_KZ/PersonTest.php +56 -0
  690. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/kk_KZ/TextTest.php +60 -0
  691. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ko_KR/TextTest.php +60 -0
  692. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/lt_LT/AddressTest.php +22 -0
  693. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/lv_LV/AddressTest.php +25 -0
  694. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/lv_LV/PersonTest.php +37 -0
  695. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/mn_MN/PersonTest.php +27 -0
  696. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ms_MY/PersonTest.php +45 -0
  697. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nb_NO/PhoneNumberTest.php +47 -0
  698. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ne_NP/PaymentTest.php +94 -0
  699. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nl_BE/PaymentTest.php +46 -0
  700. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nl_BE/PersonTest.php +48 -0
  701. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nl_NL/CompanyTest.php +33 -0
  702. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nl_NL/PersonTest.php +31 -0
  703. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pl_PL/AddressTest.php +25 -0
  704. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pl_PL/ColorTest.php +35 -0
  705. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pl_PL/LicensePlateTest.php +275 -0
  706. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pl_PL/PersonTest.php +102 -0
  707. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_BR/CompanyTest.php +25 -0
  708. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_BR/PersonTest.php +33 -0
  709. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_BR/PhoneNumberTest.php +51 -0
  710. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_BR/TextTest.php +60 -0
  711. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_PT/AddressTest.php +34 -0
  712. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_PT/PersonTest.php +50 -0
  713. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_PT/PhoneNumberTest.php +27 -0
  714. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ro_RO/PersonTest.php +234 -0
  715. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ro_RO/PhoneNumberTest.php +32 -0
  716. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ru_RU/CompanyTest.php +83 -0
  717. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ru_RU/PersonTest.php +172 -0
  718. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ru_RU/TextTest.php +60 -0
  719. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/sv_SE/MunicipalityTest.php +22 -0
  720. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/sv_SE/PersonTest.php +78 -0
  721. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/sv_SE/PhoneNumberTest.php +39 -0
  722. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/tr_TR/CompanyTest.php +23 -0
  723. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/tr_TR/PaymentTest.php +23 -0
  724. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/tr_TR/PersonTest.php +74 -0
  725. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/tr_TR/PhoneNumberTest.php +36 -0
  726. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/uk_UA/AddressTest.php +75 -0
  727. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/uk_UA/PersonTest.php +57 -0
  728. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/uk_UA/PhoneNumberTest.php +39 -0
  729. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/zh_TW/CompanyTest.php +22 -0
  730. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/zh_TW/PersonTest.php +41 -0
  731. package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/zh_TW/TextTest.php +79 -0
  732. package/src/api/core/vendor/fakerphp/faker/test/Faker/TestCase.php +54 -0
  733. package/src/api/core/vendor/fakerphp/faker/test/Faker/UniqueGeneratorTest.php +29 -0
  734. package/src/api/core/vendor/fakerphp/faker/test/Faker/ValidGeneratorTest.php +19 -0
  735. package/src/api/core/vendor/fakerphp/faker/test/Fixture/Container/UnconstructableClass.php +15 -0
  736. package/src/api/core/vendor/fakerphp/faker/test/Fixture/Enum/BackedEnum.php +12 -0
  737. package/src/api/core/vendor/fakerphp/faker/test/Fixture/Provider/BarProvider.php +11 -0
  738. package/src/api/core/vendor/fakerphp/faker/test/Fixture/Provider/FooProvider.php +16 -0
  739. package/src/api/core/vendor/fakerphp/faker/test/documentor.php +16 -0
  740. package/src/api/core/vendor/fakerphp/faker/test/test.php +38 -0
  741. package/src/api/core/vendor/fakerphp/faker/vendor-bin/php-cs-fixer/composer.json +13 -0
  742. package/src/api/core/vendor/fakerphp/faker/vendor-bin/php-cs-fixer/composer.lock +1941 -0
  743. package/src/api/core/vendor/fakerphp/faker/vendor-bin/phpstan/composer.json +18 -0
  744. package/src/api/core/vendor/fakerphp/faker/vendor-bin/phpstan/composer.lock +178 -0
  745. package/src/api/core/vendor/fakerphp/faker/vendor-bin/psalm/composer.json +16 -0
  746. package/src/api/core/vendor/fakerphp/faker/vendor-bin/psalm/composer.lock +2262 -0
  747. package/src/api/core/vendor/fakerphp/faker/vendor-bin/rector/composer.json +13 -0
  748. package/src/api/core/vendor/fakerphp/faker/vendor-bin/rector/composer.lock +142 -0
  749. package/src/api/core/vendor/psr/container/LICENSE +21 -0
  750. package/src/api/core/vendor/psr/container/README.md +13 -0
  751. package/src/api/core/vendor/psr/container/composer.json +27 -0
  752. package/src/api/core/vendor/psr/container/src/ContainerExceptionInterface.php +12 -0
  753. package/src/api/core/vendor/psr/container/src/ContainerInterface.php +36 -0
  754. package/src/api/core/vendor/psr/container/src/NotFoundExceptionInterface.php +10 -0
  755. package/src/api/core/vendor/symfony/deprecation-contracts/.gitattributes +1 -0
  756. package/src/api/core/vendor/symfony/deprecation-contracts/.github/PULL_REQUEST_TEMPLATE.md +8 -0
  757. package/src/api/core/vendor/symfony/deprecation-contracts/.github/workflows/close-pull-request.yml +20 -0
  758. package/src/api/core/vendor/symfony/deprecation-contracts/CHANGELOG.md +5 -0
  759. package/src/api/core/vendor/symfony/deprecation-contracts/LICENSE +19 -0
  760. package/src/api/core/vendor/symfony/deprecation-contracts/README.md +26 -0
  761. package/src/api/core/vendor/symfony/deprecation-contracts/composer.json +35 -0
  762. package/src/api/core/vendor/symfony/deprecation-contracts/function.php +27 -0
  763. package/src/api/database/Database.php +24 -0
  764. package/src/api/database/migrations/create_example_db.sql +1 -0
  765. package/src/api/database/migrations/create_users_table.sql +9 -0
  766. package/src/api/database/models/User.php +61 -0
  767. package/src/api/database/seeds/users.php +0 -0
  768. package/src/api/database/services/UserService.php +0 -0
  769. package/src/api/endpoints/protected/auth-system.php +63 -0
  770. package/src/api/endpoints/protected/example-protected.php +17 -0
  771. package/src/api/endpoints/public/auth/login.php +34 -0
  772. package/src/api/endpoints/public/auth/register.php +39 -0
  773. package/src/api/endpoints/public/example-public.php +17 -0
  774. package/src/api/web.config +6 -24
  775. package/src/components/exampleComponent.njk +5 -2
  776. package/src/components/layouts/base.njk +26 -1
  777. package/src/data/site.json +53 -53
  778. package/src/js/modules/langSwitcher.js +1 -1
  779. package/src/web.config +30 -33
  780. package/_tools/res/templates.json +0 -56
  781. package/src/api/endpoints/protected/example-protected-endpoint.php +0 -28
  782. package/src/api/endpoints/public/example-public-endpoint.php +0 -28
@@ -0,0 +1,492 @@
1
+ <?php
2
+
3
+ namespace Faker\Provider\kk_KZ;
4
+
5
+ class Text extends \Faker\Provider\Text
6
+ {
7
+ /**
8
+ * From kk.wikipedia.org
9
+ *
10
+ * Мәтін Creative Commons Attribution-ShareAlike лицензиясы аясында қолжетімді
11
+ * кейбір жағдайларда қосымша шарттардың талаптары атқарылады.
12
+ * Толығырақ қ. Қолдану шарттары.
13
+ *
14
+ *
15
+ * Title: Арыстан баб кесенесі
16
+ *
17
+ * Posting Date: 22:55, 2015 ж. сәуірдің 12.
18
+ *
19
+ * Language: Kazakh
20
+ *
21
+ * @licence Creative Commons Attribution-ShareAlike http://creativecommons.org/licenses/by-sa/3.0/deed.ru
22
+ *
23
+ * @see https://wikimediafoundation.org/wiki/Terms_of_Use/
24
+ * @see http://ru.wikipedia.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4%D0%B8%D1%8F:%D0%A2%D0%B5%D0%BA%D1%81%D1%82_%D0%BB%D0%B8%D1%86%D0%B5%D0%BD%D0%B7%D0%B8%D0%B8_Creative_Commons_Attribution-ShareAlike_3.0_Unported
25
+ *
26
+ * @var string
27
+ */
28
+ protected static $baseText = <<<'EOT'
29
+ Арыстан баб кесенесі - көне Отырар жеріндегі сәулет өнері ескерткіші.
30
+
31
+ Түркістан халқының арасында мұсылман дінін таратушы Қожа Ахмет Иасауидің ұстазы болған Арыстан баб ата
32
+ қабірінің басына салынған. Кесене дәлізхана, мешіт, құжырахана, азан шақыратын мұнара сияқты жеке бөлмелерден құралған.
33
+ Кесененің ең көне бөлігі қабірхана болуы тиіс. Қазір де оның едені басқа бөлмелермен салыстырғанда едәуір биік.
34
+ Қабір үстіне алғашқы белгі 12 ғ. шамасында салынған. Мазар 14 ғасырда қайта жөнделген. Арыстан баб кесенесі 20 ғасырдың
35
+ басында жергілікті халықтың қаражатымен күйдірілген кірпіштен ауданы 35x12 м, биіктігі 12 м, бұрынғы Меккеге қараған
36
+ есігі Түркістанға, Әзірет Сұлтанға бағытталып, Солтүстік жағы кесене, Оңтүстік жағы мешіт есебінде қайта жәнделді.
37
+ Дәліз-қақпа маңдайшасына мәрмәр тақта қаланып, бетіне һижра бойынша 1327 жыл, яғни соңғы құрылыс жүрген
38
+ уақыт деп көрсетілген.
39
+
40
+ Қысқаша мәлімет
41
+
42
+ Бұл кесене XII ғасырда өмір сүрген діни көріпкел Арыстан баб мазарының үстіне салынған.
43
+ Кесененің бірінші құрылысы XIV-XV ғасырға жатады. Сол құрылыстан кесілген айван тізбектері қалған.
44
+ XVIII ғасырда көне мазардың орнында жер сілкінісінен кейін екі кесілген ағаш тізбекке тірелген айванмен салынған
45
+ екі күмбезді құрылыс орнатылды. XVIII ғасырда құрылыс қиратылып, фриз жазбалары бойынша 1909 жылы қайта салынды.
46
+ 1971 жылы жоғары деңгейдегі грунт сулары салдарынан мешіт құлатылып, қайта орнатылды. Құрылыс алебастр ерітіндісінде
47
+ күйдірілген кірпіштен қабырғаның сырт жағына салынды. Қазіргі кезде бұл кесене Орталық Азиядағы қажылық міндетті
48
+ өтейтін мұсылман киелі жерлерінің бірі болып саналады Аңыз бойынша Арыстан баб Мұхаммед пайғамбардың елшісі болған.
49
+ Бір күні Мұхаммед пайғамбар өзінің шәкірттерімен құрма жеп отырған еді. Бір құрма қайта-қайта ыдыстан құлай беріп,
50
+ пайғамбар ішкі дауысты естіді: «Бұл құрма Сізден кейін 400 жыл алдағы уақытта туылатын мұсылман бала Ахметке арналған».
51
+ Сонда пайғамбар шәкірттері ішінен бұл құрманы кім иесіне жеткізетінін сұрайды. Ешкім сұранған жоқ. Пайғамбар сұрақты
52
+ қайта қойғаннан кейін, Арыстан баб былай деді: «Егер Сіз Алла Тағаладан 400 жыл сұрап берсеңіз мен бұл құрманы
53
+ иесіне жеткіземін». Халық аңыздарынан және жазба деректеріне қарағанда («Рисолаи Сарем-Исфижоб» және
54
+ Куприлозада кітабы) Арыстан баб Ахмет Яссауидің ұстазы болып құрманы жеткізеді. Қазіргі кезде Арыстан баб мазары
55
+ үстінде 30*13 метр аумағы бар кесене тұр. Тарихи деректер бойынша XII-XVIII ғасырларда кесене бірнеше рет қайта
56
+ салынып, қайта жаңартылды. Қожа Ахмет Яссауи ұлы әулие мен діни көріпкел 1103 жылы туылып 1166 жылы қайтыс болған.
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
+ айтқан болатынбыз. Бұлардың жобасы ХІV ғасырдың құрылысына сай келеді. Осымен қатар бастырмадағы ұстындар да ХІҮ
99
+ ғасырдың аяғы мен ХV ғасырдың басында жасалған деген тұжырымды мамандар айтқан болатын. Яғни қазіргі Арыстанбаб құрылыс
100
+ кешеніндегі қабырғаналар бөлігі ең көнесі, әуелгісі болып табылады. Бұған қоса халық арасында кең тараған мынадай
101
+ аңыз бар: «Қожа Ахмет кесенесінің қабырғалары қаланып болған түні алып жасыл өгіз көтерілген дуалдарды мүйізімен соғып,
102
+ құлатады. Ғимарат қабырғалары қайта тұрғызылып, күмбездері қалана бастағанда бұл оқиға тағы да қайталанып, бәрі
103
+ үйелген төбеге айналады. Бұл жай Әмір Темірді көп ойландырады. Түсінде бір шал келіп, аян береді, ол Қожа Ахметтің
104
+ ең алғашқы ұстазы, Арыстанбаб моласының үстіне мазар көтеруге әмір ететінін жеткізеді. Бұл талап орындалған соң ғана
105
+ Әмір Темір Түркістандағы құрылысын ойдағыдай аяқтайды». Арыстанбаб қабірханасының едені басқа бөлмелермен салыстырғанда
106
+ едәуір биік. Тігінен көтерілген қабырғалары бір биіктікте сәулет өнерінде «желкен» деп аталатын өріммен иіліп барым
107
+ күмбезге ұласады. Күмбез ауқымы кең, һәм биік етіп тұрғызылған. Қабірхананың есігі күнбатысқа, дәлірек айтсақ, Меккеге
108
+ бағышталған. Бұл қасиетті қабірлерге тағзым етудің мұсылмандық ережелерінен туындайды: зиярат етушінің беті сағанаға,
109
+ арқасы құбылаға қарауға тиіс болған. Оның ұзындығы 3 м. 90 см., ені 1 м. 30 см., биіктігі 1 м. 20 см. Қабаттас, көлемі
110
+ 5,4м х 5,4 м. Бөлмеде үш қабір бар. Ол да биік күмбезбен жабылған. Алайда күмбездің іші алебастрмен сыланып,
111
+ геометриялық үлгідегі өрнектермен нақышталған. Әулиеге кірер есіктің екі жағында екі қабір орналасқан.
112
+ Шырақшылар бұларды Лашынбаб пен Қарғабаб дейді. Олар әулие қабірімен салыстырғанда аса шағын болып келген.
113
+ Лашын баб қабырының көлемі 1,63м х 0,92м., Қарғабабтікі 1,70 м х 0,90 м. Осы қабарханаларға оңтүстік-батыс жақтан
114
+ бірнеше бөлмелер қосылған. Екі қанаттағы бөлмелерді біріктіріп, байланыстырып тұрған дәліз-бастырма бар. Ол әдеттегі
115
+ бастырма-айвандардан өзгеше, тұтасымен қыштан өріліп, төбесі иіліп жабылған. Оның көлемі 7,60м х 4,35м. Қабырханалар,
116
+ дәліз қышпен қаланып күмбезделсе, мешіт бөлігі негізінен қам кесектен тұрғызылып, төбесін жабуда ағаш кең пайдаланылған.
117
+ Мешіттің ортасында В.В.Константинова жасаған жоба бойынша алты ағаш тіреу болған. Олардың үстіне қары қойылып, ағаштан
118
+ қырлы күмбез қиыстырылған. Мешіт қабырғасында Мекке бағытын көрсететін ойық-михраб бар
119
+ Зерттелуі
120
+
121
+ Арыстан баб ескерткіші деп аталатын мазарлар басқа аймақтардың бірі – Қырғызстандағы Ош өңірінде.
122
+ Бірақ қырғыздардың діни-нанымдарын зерттеген ғалым С.М.Абрамзонның пікірінше, жергілікті халық бұл жерде жерленген
123
+ Арыстанбабты қалмақтарға қарсы соғысқан батыр деп таниды. Яғни Оштағы Арыстанбаб XYII-XVII ғасырларда болған адам.
124
+ Арыстанбаб қабірінің басына тұрғызылған ғимарат алғаш ғылыми әдебиетте 1898 ж.ж. И.Т.Пославскийдің «Развалины города
125
+ Отрара» атты мақаласында аталады. 1903 жылы кесене түркістандық археология әуесқойлар үйірмесінің мүшесі А.Черкасовтың
126
+ Отырар төбені көріп айтқаны жөніндегі есебінде аталып өтіледі. А.Черкасовты түкпір бөлмедегі Арсытанбабтың қабірі таң
127
+ қалдырады: «Надгробие Арстан – Баба такой же формы, как и остальные, покрыто куском белого коленкора и поражает своими
128
+ размерами. Такого роста, по ловам шейха, достигал и сам святой...». А.Черкасовтың деректері кеінірек орыс-француз
129
+ тілдерінде жарық көрген. И.А.Кастеньенің «Древности Киргизской степи и Оренбургского края» деген еңбегінде де
130
+ қайталанады. Көп үзілістен кейін Арыстанбаб кесенесі жөніндегі ғылыми сипаттама 1950 ж.
131
+ В.В.Константинованың «Некоторые архитектурные памятники по среднему течению р.Сырдарьи» деген мақаласында жарияланды.
132
+ 1987 жылы «Білім мен Еңбекте» М.Сембиннің кесене жайлы мақаласы жарияланды. М.Сембин Арыстанбаб туралы мақаласында
133
+ О.Дастановтың «Әулиелі жерлер туралы шындық» атты кітабындағы келтірілген мәліметтерге сүйене отырып, Арыстанбаб
134
+ кесенесінің сәулетшісі ташкенттік Ескендір қажы болған деген болатын. «Ол өзінше бір қайта жырау, тыңнан толғау,
135
+ немесе ақындық шабыт-шалым сынасып, жырмен жарысу есепті...»,- деген М.Әуезов сөздері Арыстанбаб сәулетшісіне
136
+ толығымен тән.
137
+ XXI ғасырдағы Арыстан баб кесенесі
138
+
139
+ Әлемге танымал “Арыстан баб” мавзолейінің құрылысы екі жыл бұрын жаңа архитектуралық кешен тұрғысында басталған.
140
+ Идея авторы – белгілі мемлекет және қоғам қайраткері, инженер-ғалым, танымал меценат Асқар Құлыбаев болып табылады.
141
+ Бір кездері Асқар Алтынбекұлы халық игілігі үшін рухани құндылық орнатуды армандаған. Бүгінде Асқар Құлыбаевтың және
142
+ оның ұлдарының Қазақстанның жан азығы байлығын еселей түсу мақсатындағы сіңірген үлесі зор екендігін айту қажет.
143
+ Елбасымыз Н.Ә.Назарбаев өзі бастама көтеріп, бүкіл мемлекеттік деңгейде жүзеге “Мәдени мұра” бағдарламасы асырылып
144
+ жатыр.
145
+
146
+ EOT;
147
+
148
+ /*
149
+ *** START: FULL LICENSE ***
150
+
151
+ Creative Commons Legal Code
152
+
153
+ Attribution-ShareAlike 3.0 Unported
154
+
155
+
156
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
157
+ LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN
158
+ ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
159
+ INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
160
+ REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR
161
+ DAMAGES RESULTING FROM ITS USE. License
162
+
163
+ THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS
164
+ CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS
165
+ PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE
166
+ WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS
167
+ PROHIBITED.
168
+
169
+ BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND
170
+ AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS
171
+ LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU
172
+ THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH
173
+ TERMS AND CONDITIONS.
174
+
175
+ 1. Definitions
176
+
177
+ "Adaptation" means a work based upon the Work, or upon the Work and
178
+ other pre-existing works, such as a translation, adaptation,
179
+ derivative work, arrangement of music or other alterations of a
180
+ literary or artistic work, or phonogram or performance and includes
181
+ cinematographic adaptations or any other form in which the Work may be
182
+ recast, transformed, or adapted including in any form recognizably
183
+ derived from the original, except that a work that constitutes a
184
+ Collection will not be considered an Adaptation for the purpose of
185
+ this License. For the avoidance of doubt, where the Work is a musical
186
+ work, performance or phonogram, the synchronization of the Work in
187
+ timed-relation with a moving image ("synching") will be considered an
188
+ Adaptation for the purpose of this License. "Collection" means a
189
+ collection of literary or artistic works, such as encyclopedias and
190
+ anthologies, or performances, phonograms or broadcasts, or other works
191
+ or subject matter other than works listed in Section 1(f) below,
192
+ which, by reason of the selection and arrangement of their contents,
193
+ constitute intellectual creations, in which the Work is included in
194
+ its entirety in unmodified form along with one or more other
195
+ contributions, each constituting separate and independent works in
196
+ themselves, which together are assembled into a collective whole. A
197
+ work that constitutes a Collection will not be considered an
198
+ Adaptation (as defined below) for the purposes of this License.
199
+ "Creative Commons Compatible License" means a license that is listed
200
+ at http://creativecommons.org/compatiblelicenses that has been
201
+ approved by Creative Commons as being essentially equivalent to this
202
+ License, including, at a minimum, because that license: (i) contains
203
+ terms that have the same purpose, meaning and effect as the License
204
+ Elements of this License; and, (ii) explicitly permits the relicensing
205
+ of adaptations of works made available under that license under this
206
+ License or a Creative Commons jurisdiction license with the same
207
+ License Elements as this License. "Distribute" means to make available
208
+ to the public the original and copies of the Work or Adaptation, as
209
+ appropriate, through sale or other transfer of ownership. "License
210
+ Elements" means the following high-level license attributes as
211
+ selected by Licensor and indicated in the title of this License:
212
+ Attribution, ShareAlike. "Licensor" means the individual, individuals,
213
+ entity or entities that offer(s) the Work under the terms of this
214
+ License. "Original Author" means, in the case of a literary or
215
+ artistic work, the individual, individuals, entity or entities who
216
+ created the Work or if no individual or entity can be identified, the
217
+ publisher; and in addition (i) in the case of a performance the
218
+ actors, singers, musicians, dancers, and other persons who act, sing,
219
+ deliver, declaim, play in, interpret or otherwise perform literary or
220
+ artistic works or expressions of folklore; (ii) in the case of a
221
+ phonogram the producer being the person or legal entity who first
222
+ fixes the sounds of a performance or other sounds; and, (iii) in the
223
+ case of broadcasts, the organization that transmits the broadcast.
224
+ "Work" means the literary and/or artistic work offered under the terms
225
+ of this License including without limitation any production in the
226
+ literary, scientific and artistic domain, whatever may be the mode or
227
+ form of its expression including digital form, such as a book,
228
+ pamphlet and other writing; a lecture, address, sermon or other work
229
+ of the same nature; a dramatic or dramatico-musical work; a
230
+ choreographic work or entertainment in dumb show; a musical
231
+ composition with or without words; a cinematographic work to which are
232
+ assimilated works expressed by a process analogous to cinematography;
233
+ a work of drawing, painting, architecture, sculpture, engraving or
234
+ lithography; a photographic work to which are assimilated works
235
+ expressed by a process analogous to photography; a work of applied
236
+ art; an illustration, map, plan, sketch or three-dimensional work
237
+ relative to geography, topography, architecture or science; a
238
+ performance; a broadcast; a phonogram; a compilation of data to the
239
+ extent it is protected as a copyrightable work; or a work performed by
240
+ a variety or circus performer to the extent it is not otherwise
241
+ considered a literary or artistic work. "You" means an individual or
242
+ entity exercising rights under this License who has not previously
243
+ violated the terms of this License with respect to the Work, or who
244
+ has received express permission from the Licensor to exercise rights
245
+ under this License despite a previous violation. "Publicly Perform"
246
+ means to perform public recitations of the Work and to communicate to
247
+ the public those public recitations, by any means or process,
248
+ including by wire or wireless means or public digital performances; to
249
+ make available to the public Works in such a way that members of the
250
+ public may access these Works from a place and at a place individually
251
+ chosen by them; to perform the Work to the public by any means or
252
+ process and the communication to the public of the performances of the
253
+ Work, including by public digital performance; to broadcast and
254
+ rebroadcast the Work by any means including signs, sounds or images.
255
+ "Reproduce" means to make copies of the Work by any means including
256
+ without limitation by sound or visual recordings and the right of
257
+ fixation and reproducing fixations of the Work, including storage of a
258
+ protected performance or phonogram in digital form or other electronic
259
+ medium. 2. Fair Dealing Rights. Nothing in this License is intended to
260
+ reduce, limit, or restrict any uses free from copyright or rights
261
+ arising from limitations or exceptions that are provided for in
262
+ connection with the copyright protection under copyright law or other
263
+ applicable laws.
264
+
265
+ 3. License Grant. Subject to the terms and conditions of this License,
266
+ Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
267
+ perpetual (for the duration of the applicable copyright) license to
268
+ exercise the rights in the Work as stated below:
269
+
270
+ to Reproduce the Work, to incorporate the Work into one or more
271
+ Collections, and to Reproduce the Work as incorporated in the
272
+ Collections; to create and Reproduce Adaptations provided that any
273
+ such Adaptation, including any translation in any medium, takes
274
+ reasonable steps to clearly label, demarcate or otherwise identify
275
+ that changes were made to the original Work. For example, a
276
+ translation could be marked "The original work was translated from
277
+ English to Spanish," or a modification could indicate "The original
278
+ work has been modified."; to Distribute and Publicly Perform the Work
279
+ including as incorporated in Collections; and, to Distribute and
280
+ Publicly Perform Adaptations. For the avoidance of doubt:
281
+
282
+ Non-waivable Compulsory License Schemes. In those jurisdictions in
283
+ which the right to collect royalties through any statutory or
284
+ compulsory licensing scheme cannot be waived, the Licensor reserves
285
+ the exclusive right to collect such royalties for any exercise by You
286
+ of the rights granted under this License; Waivable Compulsory License
287
+ Schemes. In those jurisdictions in which the right to collect
288
+ royalties through any statutory or compulsory licensing scheme can be
289
+ waived, the Licensor waives the exclusive right to collect such
290
+ royalties for any exercise by You of the rights granted under this
291
+ License; and, Voluntary License Schemes. The Licensor waives the right
292
+ to collect royalties, whether individually or, in the event that the
293
+ Licensor is a member of a collecting society that administers
294
+ voluntary licensing schemes, via that society, from any exercise by
295
+ You of the rights granted under this License. The above rights may be
296
+ exercised in all media and formats whether now known or hereafter
297
+ devised. The above rights include the right to make such modifications
298
+ as are technically necessary to exercise the rights in other media and
299
+ formats. Subject to Section 8(f), all rights not expressly granted by
300
+ Licensor are hereby reserved.
301
+
302
+ 4. Restrictions. The license granted in Section 3 above is expressly
303
+ made subject to and limited by the following restrictions:
304
+
305
+ You may Distribute or Publicly Perform the Work only under the terms
306
+ of this License. You must include a copy of, or the Uniform Resource
307
+ Identifier (URI) for, this License with every copy of the Work You
308
+ Distribute or Publicly Perform. You may not offer or impose any terms
309
+ on the Work that restrict the terms of this License or the ability of
310
+ the recipient of the Work to exercise the rights granted to that
311
+ recipient under the terms of the License. You may not sublicense the
312
+ Work. You must keep intact all notices that refer to this License and
313
+ to the disclaimer of warranties with every copy of the Work You
314
+ Distribute or Publicly Perform. When You Distribute or Publicly
315
+ Perform the Work, You may not impose any effective technological
316
+ measures on the Work that restrict the ability of a recipient of the
317
+ Work from You to exercise the rights granted to that recipient under
318
+ the terms of the License. This Section 4(a) applies to the Work as
319
+ incorporated in a Collection, but this does not require the Collection
320
+ apart from the Work itself to be made subject to the terms of this
321
+ License. If You create a Collection, upon notice from any Licensor You
322
+ must, to the extent practicable, remove from the Collection any credit
323
+ as required by Section 4(c), as requested. If You create an
324
+ Adaptation, upon notice from any Licensor You must, to the extent
325
+ practicable, remove from the Adaptation any credit as required by
326
+ Section 4(c), as requested. You may Distribute or Publicly Perform an
327
+ Adaptation only under the terms of: (i) this License; (ii) a later
328
+ version of this License with the same License Elements as this
329
+ License; (iii) a Creative Commons jurisdiction license (either this or
330
+ a later license version) that contains the same License Elements as
331
+ this License (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative
332
+ Commons Compatible License. If you license the Adaptation under one of
333
+ the licenses mentioned in (iv), you must comply with the terms of that
334
+ license. If you license the Adaptation under the terms of any of the
335
+ licenses mentioned in (i), (ii) or (iii) (the "Applicable License"),
336
+ you must comply with the terms of the Applicable License generally and
337
+ the following provisions: (I) You must include a copy of, or the URI
338
+ for, the Applicable License with every copy of each Adaptation You
339
+ Distribute or Publicly Perform; (II) You may not offer or impose any
340
+ terms on the Adaptation that restrict the terms of the Applicable
341
+ License or the ability of the recipient of the Adaptation to exercise
342
+ the rights granted to that recipient under the terms of the Applicable
343
+ License; (III) You must keep intact all notices that refer to the
344
+ Applicable License and to the disclaimer of warranties with every copy
345
+ of the Work as included in the Adaptation You Distribute or Publicly
346
+ Perform; (IV) when You Distribute or Publicly Perform the Adaptation,
347
+ You may not impose any effective technological measures on the
348
+ Adaptation that restrict the ability of a recipient of the Adaptation
349
+ from You to exercise the rights granted to that recipient under the
350
+ terms of the Applicable License. This Section 4(b) applies to the
351
+ Adaptation as incorporated in a Collection, but this does not require
352
+ the Collection apart from the Adaptation itself to be made subject to
353
+ the terms of the Applicable License. If You Distribute, or Publicly
354
+ Perform the Work or any Adaptations or Collections, You must, unless a
355
+ request has been made pursuant to Section 4(a), keep intact all
356
+ copyright notices for the Work and provide, reasonable to the medium
357
+ or means You are utilizing: (i) the name of the Original Author (or
358
+ pseudonym, if applicable) if supplied, and/or if the Original Author
359
+ and/or Licensor designate another party or parties (e.g., a sponsor
360
+ institute, publishing entity, journal) for attribution ("Attribution
361
+ Parties") in Licensor's copyright notice, terms of service or by other
362
+ reasonable means, the name of such party or parties; (ii) the title of
363
+ the Work if supplied; (iii) to the extent reasonably practicable, the
364
+ URI, if any, that Licensor specifies to be associated with the Work,
365
+ unless such URI does not refer to the copyright notice or licensing
366
+ information for the Work; and (iv) , consistent with Ssection 3(b), in
367
+ the case of an Adaptation, a credit identifying the use of the Work in
368
+ the Adaptation (e.g., "French translation of the Work by Original
369
+ Author," or "Screenplay based on original Work by Original Author").
370
+ The credit required by this Section 4(c) may be implemented in any
371
+ reasonable manner; provided, however, that in the case of a Adaptation
372
+ or Collection, at a minimum such credit will appear, if a credit for
373
+ all contributing authors of the Adaptation or Collection appears, then
374
+ as part of these credits and in a manner at least as prominent as the
375
+ credits for the other contributing authors. For the avoidance of
376
+ doubt, You may only use the credit required by this Section for the
377
+ purpose of attribution in the manner set out above and, by exercising
378
+ Your rights under this License, You may not implicitly or explicitly
379
+ assert or imply any connection with, sponsorship or endorsement by the
380
+ Original Author, Licensor and/or Attribution Parties, as appropriate,
381
+ of You or Your use of the Work, without the separate, express prior
382
+ written permission of the Original Author, Licensor and/or Attribution
383
+ Parties. Except as otherwise agreed in writing by the Licensor or as
384
+ may be otherwise permitted by applicable law, if You Reproduce,
385
+ Distribute or Publicly Perform the Work either by itself or as part of
386
+ any Adaptations or Collections, You must not distort, mutilate, modify
387
+ or take other derogatory action in relation to the Work which would be
388
+ prejudicial to the Original Author's honor or reputation. Licensor
389
+ agrees that in those jurisdictions (e.g. Japan), in which any exercise
390
+ of the right granted in Section 3(b) of this License (the right to
391
+ make Adaptations) would be deemed to be a distortion, mutilation,
392
+ modification or other derogatory action prejudicial to the Original
393
+ Author's honor and reputation, the Licensor will waive or not assert,
394
+ as appropriate, this Section, to the fullest extent permitted by the
395
+ applicable national law, to enable You to reasonably exercise Your
396
+ right under Section 3(b) of this License (right to make Adaptations)
397
+ but not otherwise. 5. Representations, Warranties and Disclaimer
398
+
399
+ UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING,
400
+ LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR
401
+ WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED,
402
+ STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF
403
+ TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE,
404
+ NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY,
405
+ OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.
406
+ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES,
407
+ SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
408
+
409
+ 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY
410
+ APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY
411
+ LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR
412
+ EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK,
413
+ EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
414
+
415
+ 7. Termination
416
+
417
+ This License and the rights granted hereunder will terminate
418
+ automatically upon any breach by You of the terms of this License.
419
+ Individuals or entities who have received Adaptations or Collections
420
+ from You under this License, however, will not have their licenses
421
+ terminated provided such individuals or entities remain in full
422
+ compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
423
+ survive any termination of this License. Subject to the above terms
424
+ and conditions, the license granted here is perpetual (for the
425
+ duration of the applicable copyright in the Work). Notwithstanding the
426
+ above, Licensor reserves the right to release the Work under different
427
+ license terms or to stop distributing the Work at any time; provided,
428
+ however that any such election will not serve to withdraw this License
429
+ (or any other license that has been, or is required to be, granted
430
+ under the terms of this License), and this License will continue in
431
+ full force and effect unless terminated as stated above. 8.
432
+ Miscellaneous
433
+
434
+ Each time You Distribute or Publicly Perform the Work or a Collection,
435
+ the Licensor offers to the recipient a license to the Work on the same
436
+ terms and conditions as the license granted to You under this License.
437
+ Each time You Distribute or Publicly Perform an Adaptation, Licensor
438
+ offers to the recipient a license to the original Work on the same
439
+ terms and conditions as the license granted to You under this License.
440
+ If any provision of this License is invalid or unenforceable under
441
+ applicable law, it shall not affect the validity or enforceability of
442
+ the remainder of the terms of this License, and without further action
443
+ by the parties to this agreement, such provision shall be reformed to
444
+ the minimum extent necessary to make such provision valid and
445
+ enforceable. No term or provision of this License shall be deemed
446
+ waived and no breach consented to unless such waiver or consent shall
447
+ be in writing and signed by the party to be charged with such waiver
448
+ or consent. This License constitutes the entire agreement between the
449
+ parties with respect to the Work licensed here. There are no
450
+ understandings, agreements or representations with respect to the Work
451
+ not specified here. Licensor shall not be bound by any additional
452
+ provisions that may appear in any communication from You. This License
453
+ may not be modified without the mutual written agreement of the
454
+ Licensor and You. The rights granted under, and the subject matter
455
+ referenced, in this License were drafted utilizing the terminology of
456
+ the Berne Convention for the Protection of Literary and Artistic Works
457
+ (as amended on September 28, 1979), the Rome Convention of 1961, the
458
+ WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms
459
+ Treaty of 1996 and the Universal Copyright Convention (as revised on
460
+ July 24, 1971). These rights and subject matter take effect in the
461
+ relevant jurisdiction in which the License terms are sought to be
462
+ enforced according to the corresponding provisions of the
463
+ implementation of those treaty provisions in the applicable national
464
+ law. If the standard suite of rights granted under applicable
465
+ copyright law includes additional rights not granted under this
466
+ License, such additional rights are deemed to be included in the
467
+ License; this License is not intended to restrict the license of any
468
+ rights under applicable law. Creative Commons Notice
469
+
470
+ Creative Commons is not a party to this License, and makes no warranty
471
+ whatsoever in connection with the Work. Creative Commons will not be
472
+ liable to You or any party on any legal theory for any damages
473
+ whatsoever, including without limitation any general, special,
474
+ incidental or consequential damages arising in connection to this
475
+ license. Notwithstanding the foregoing two (2) sentences, if Creative
476
+ Commons has expressly identified itself as the Licensor hereunder, it
477
+ shall have all rights and obligations of Licensor.
478
+
479
+ Except for the limited purpose of indicating to the public that the
480
+ Work is licensed under the CCPL, Creative Commons does not authorize
481
+ the use by either party of the trademark "Creative Commons" or any
482
+ related trademark or logo of Creative Commons without the prior
483
+ written consent of Creative Commons. Any permitted use will be in
484
+ compliance with Creative Commons' then-current trademark usage
485
+ guidelines, as may be published on its website or otherwise made
486
+ available upon request from time to time. For the avoidance of doubt,
487
+ this trademark restriction does not form part of the License.
488
+
489
+ Creative Commons may be contacted at http://creativecommons.org/.
490
+
491
+ */
492
+ }
@@ -0,0 +1,96 @@
1
+ <?php
2
+
3
+ namespace Faker\Provider\ko_KR;
4
+
5
+ class Address extends \Faker\Provider\Address
6
+ {
7
+ protected static $postcode = ['#####'];
8
+ protected static $buildingNumber = ['%###', '%##'];
9
+ protected static $metropolitanCity = [
10
+ '서울특별시', '부산광역시', '대구광역시', '인천광역시', '광주광역시', '대전광역시', '울산광역시',
11
+ ];
12
+ protected static $province = [
13
+ '경기도', '강원도', '충청북도', '충청남도', '전라북도', '전라남도', '경상북도', '경상남도', '제주특별자치도',
14
+ ];
15
+ protected static $city = [
16
+ '파주시', '수원시', '수원시 권선구', '수원시 팔달구', '수원시 영통구', '성남시', '성남시 수정구', '성남시 중원구', '화성시',
17
+ '성남시 분당구', '안양시', '안양시 만안구', '안양시 동안구', '부천시', '부천시 원미구', '부천시 소사구', '부천시 오정구', '광명시',
18
+ '평택시', '이천시', '동두천시', '안산시', '안산시 상록구', '안산시 단원구', '안성시', '고양시', '고양시 덕양구', '고양시 일산동구',
19
+ '고양시 일산서구', '과천시', '구리시', '남양주시', '오산시', '시흥시', '군포시', '의왕시', '하남시', '김포시', '용인시', '용인시 처인구',
20
+ '용인시 기흥구', '용인시 수지구', '연천군', '가평군', '양평군', '광주시', '포천시', '양주시', '수원시 장안구', '의정부시', '여주시',
21
+ ];
22
+ protected static $borough = [
23
+ '종로구', '중구', '용산구', '성동구', '광진구', '동대문구', '중랑구', '성북구', '강북구', '도봉구', '노원구', '은평구', '서대문구',
24
+ '마포구', '양천구', '강서구', '구로구', '금천구', '영등포구', '동작구', '관악구', '서초구', '강남구', '송파구', '강동구',
25
+ '동구', '서구', '남구', '북구', '중구',
26
+ ];
27
+ protected static $streetName = [
28
+ '압구정로', '도산대로', '학동로', '봉은사로', '테헤란로', '역삼로', '논현로', '언주로', '강남대로', '양재천로', '삼성로', '영동대로',
29
+ '개포로', '선릉로', '반포대로', '서초중앙로', '서초대로', '잠실로', '석촌호수로', '백제고분로', '가락로', '오금로',
30
+ ];
31
+ protected static $country = [
32
+ '가나', '가봉', '가이아나', '감비아', '과테말라', '그레나다', '그리스', '기니', '기니비사우', '나고르노카라바흐 공화국', '나미비아',
33
+ '나우루', '나이지리아', '남수단', '남아프리카 공화국', '남오세티야', '네덜란드', '네팔', '노르웨이', '뉴질랜드', '니제르', '니카라과',
34
+ '대한민국', '덴마크', '도미니카', '도미니카 공화국', '독일', '동티모르', '라오스', '라이베리아', '라트비아', '러시아', '레바논', '레소토',
35
+ '루마니아', '룩셈부르크', '르완다', '리비아', '리투아니아', '리히텐슈타인', '마다가스카르', '마셜 제도', '마케도니아 공화국', '말라위',
36
+ '말레이시아', '말리', '멕시코', '모나코', '모로코', '모리셔스', '모리타니', '모잠비크', '몬테네그로', '몰도바', '몰디브', '몰타', '몽골',
37
+ '미국', '미얀마', '미크로네시아 연방', '바누아투', '바레인', '바베이도스', '바티칸', '바하마', '방글라데시', '베냉', '베네수엘라',
38
+ '베트남', '벨기에', '벨라루스', '벨리즈', '보스니아 헤르체고비나', '보츠와나', '볼리비아', '부룬디', '부르키나파소', '부탄', '북키프로스',
39
+ '불가리아', '브라질', '브루나이', '사모아', '사우디아라비아', '사하라 아랍 민주 공화국 (서사하라)', '산마리노', '상투메 프린시페', '세네갈',
40
+ '세르비아', '세이셸', '세인트 루시아', '세인트 키츠 네비스', '세인트빈센트 그레나딘', '소말리아', '소말릴란드 (소말리아 영토)',
41
+ '솔로몬 제도', '수단', '수리남', '스리랑카', '스와질란드', '스웨덴', '스위스', '스페인', '슬로바키아', '슬로베니아', '시리아',
42
+ '시에라리온', '싱가포르', '아랍에미리트', '아르메니아', '아르헨티나', '아이슬란드', '아일랜드', '아제르바이잔', '아프가니스탄', '안도라',
43
+ '알바니아', '알제리', '압하스', '앙골라', '앤티가 바부다', '에리트레아', '에스토니아', '에콰도르', '에티오피아', '엘살바도르', '영국',
44
+ '예멘', '오만', '오스트레일리아', '오스트리아', '온두라스', '요르단', '우간다', '우루과이', '우즈베키스탄', '우크라이나', '이란', '이라크',
45
+ '이스라엘', '이집트', '이탈리아', '인도', '인도네시아', '일본', '자메이카', '잠비아', '적도 기니', '조선민주주의인민공화국', '조지아',
46
+ '중앙아프리카 공화국', '중화민국', '중화인민공화국', '지부티', '짐바브웨', '차드', '체코', '칠레', '카메룬', '카보베르데', '카자흐스탄',
47
+ '카타르', '캄보디아', '캐나다', '케냐', '코모로', '코소보 공화국', '코스타리카', '코트디부아르', '콜롬비아', '콩고 공화국',
48
+ '콩고 민주 공화국', '쿠바', '쿠웨이트', '크로아티아', '키르기스스탄', '키리바시', '키프로스', '타이', '타지키스탄', '탄자니아', '터키',
49
+ '토고', '통가', '투르크메니스탄', '투발루', '튀니지', '트란스니스트리아', '트리니다드 토바고', '파나마', '파라과이', '파키스탄',
50
+ '파푸아 뉴기니', '팔라우', '팔레스타인국', '페루', '포르투갈', '폴란드', '프랑스', '피지', '핀란드', '필리핀', '헝가리',
51
+ ];
52
+ protected static $addressFormats = [
53
+ '{{metropolitanCity}} {{borough}} {{streetName}} {{buildingNumber}}',
54
+ '{{province}} {{city}} {{streetName}} {{buildingNumber}}',
55
+ ];
56
+
57
+ /**
58
+ * @example '서울특별시'
59
+ */
60
+ public function metropolitanCity()
61
+ {
62
+ return static::randomElement(static::$metropolitanCity);
63
+ }
64
+
65
+ /**
66
+ * @example '경기도'
67
+ */
68
+ public static function province()
69
+ {
70
+ return static::randomElement(static::$province);
71
+ }
72
+
73
+ /**
74
+ * @example '고양시'
75
+ */
76
+ public function city()
77
+ {
78
+ return static::randomElement(static::$city);
79
+ }
80
+
81
+ /**
82
+ * @example '강남구'
83
+ */
84
+ public function borough()
85
+ {
86
+ return static::randomElement(static::$borough);
87
+ }
88
+
89
+ /**
90
+ * @example '강남대로'
91
+ */
92
+ public function streetName()
93
+ {
94
+ return static::randomElement(static::$streetName);
95
+ }
96
+ }
@@ -0,0 +1,31 @@
1
+ <?php
2
+
3
+ namespace Faker\Provider\ko_KR;
4
+
5
+ class Company extends \Faker\Provider\Company
6
+ {
7
+ protected static $formats = [
8
+ '{{companyPrefix}}{{firstName}}',
9
+ '{{companyPrefix}}{{firstName}}{{companySuffix}}',
10
+ '{{firstName}}{{companySuffix}}',
11
+ '{{firstName}}{{companySuffix}}',
12
+ '{{firstName}}{{companySuffix}}',
13
+ '{{firstName}}{{companySuffix}}',
14
+ ];
15
+
16
+ protected static $companyPrefix = ['(주)', '(주)', '(주)', '(유)'];
17
+
18
+ protected static $companySuffix = [
19
+ '전자', '건설', '식품', '인터넷', '그룹', '은행', '보험', '제약', '금융', '네트웍스', '기획', '미디어', '연구소', '모바일', '스튜디오', '캐피탈',
20
+ ];
21
+
22
+ public static function companyPrefix()
23
+ {
24
+ return static::randomElement(static::$companyPrefix);
25
+ }
26
+
27
+ public static function companySuffix()
28
+ {
29
+ return static::randomElement(static::$companySuffix);
30
+ }
31
+ }