@winchsa/ui 0.1.33 → 0.1.34

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 (300) hide show
  1. package/dist/components/Breadcrumbs.d.vue.ts +7 -0
  2. package/dist/components/Breadcrumbs.vue +46 -0
  3. package/dist/components/Breadcrumbs.vue.d.ts +7 -0
  4. package/dist/components/CustomizerSection.d.vue.ts +17 -0
  5. package/dist/components/CustomizerSection.vue +19 -0
  6. package/dist/components/CustomizerSection.vue.d.ts +17 -0
  7. package/dist/components/DialogCloseBtn.d.vue.ts +7 -0
  8. package/dist/components/DialogCloseBtn.vue +20 -0
  9. package/dist/components/DialogCloseBtn.vue.d.ts +7 -0
  10. package/dist/components/Drawer.d.vue.ts +28 -0
  11. package/dist/components/Drawer.vue +60 -0
  12. package/dist/components/Drawer.vue.d.ts +28 -0
  13. package/dist/components/IconBtn.d.vue.ts +18 -0
  14. package/dist/components/IconBtn.vue +24 -0
  15. package/dist/components/IconBtn.vue.d.ts +18 -0
  16. package/dist/components/LoadingBar.d.vue.ts +6 -0
  17. package/dist/components/LoadingBar.vue +31 -0
  18. package/dist/components/LoadingBar.vue.d.ts +6 -0
  19. package/dist/components/LoadingDialog.d.vue.ts +12 -0
  20. package/dist/components/LoadingDialog.vue +41 -0
  21. package/dist/components/LoadingDialog.vue.d.ts +12 -0
  22. package/dist/components/LoadingItem.d.vue.ts +25 -0
  23. package/dist/components/LoadingItem.vue +66 -0
  24. package/dist/components/LoadingItem.vue.d.ts +25 -0
  25. package/dist/components/Modal.d.vue.ts +50 -0
  26. package/dist/components/Modal.vue +155 -0
  27. package/dist/components/Modal.vue.d.ts +50 -0
  28. package/dist/components/MoreBtn.d.vue.ts +17 -0
  29. package/dist/components/MoreBtn.vue +28 -0
  30. package/dist/components/MoreBtn.vue.d.ts +17 -0
  31. package/dist/components/ScrollToTop.d.vue.ts +3 -0
  32. package/dist/components/ScrollToTop.vue +39 -0
  33. package/dist/components/ScrollToTop.vue.d.ts +3 -0
  34. package/dist/components/SiteTitle.d.vue.ts +3 -0
  35. package/dist/components/SiteTitle.vue +14 -0
  36. package/dist/components/SiteTitle.vue.d.ts +3 -0
  37. package/dist/components/Toaster.d.vue.ts +6 -0
  38. package/dist/components/Toaster.vue +19 -0
  39. package/dist/components/Toaster.vue.d.ts +6 -0
  40. package/dist/components/cards/AppCard.d.vue.ts +18 -0
  41. package/dist/components/cards/AppCard.vue +45 -0
  42. package/dist/components/cards/AppCard.vue.d.ts +18 -0
  43. package/dist/components/cards/AppCardActions.d.vue.ts +33 -0
  44. package/dist/components/cards/AppCardActions.vue +126 -0
  45. package/dist/components/cards/AppCardActions.vue.d.ts +33 -0
  46. package/dist/components/cards/CardStatisticsHorizontal.d.vue.ts +9 -0
  47. package/dist/components/cards/CardStatisticsHorizontal.vue +29 -0
  48. package/dist/components/cards/CardStatisticsHorizontal.vue.d.ts +9 -0
  49. package/dist/components/cards/CheckboxesCard.d.vue.ts +18 -0
  50. package/dist/components/cards/CheckboxesCard.vue +108 -0
  51. package/dist/components/cards/CheckboxesCard.vue.d.ts +18 -0
  52. package/dist/components/cards/HeaderCard.d.vue.ts +9 -0
  53. package/dist/components/cards/HeaderCard.vue +31 -0
  54. package/dist/components/cards/HeaderCard.vue.d.ts +9 -0
  55. package/dist/components/cards/ImageCard.d.vue.ts +33 -0
  56. package/dist/components/cards/ImageCard.vue +73 -0
  57. package/dist/components/cards/ImageCard.vue.d.ts +33 -0
  58. package/dist/components/cards/InputCard.d.vue.ts +21 -0
  59. package/dist/components/cards/InputCard.vue +60 -0
  60. package/dist/components/cards/InputCard.vue.d.ts +21 -0
  61. package/dist/components/cards/StaticCard.d.vue.ts +21 -0
  62. package/dist/components/cards/StaticCard.vue +37 -0
  63. package/dist/components/cards/StaticCard.vue.d.ts +21 -0
  64. package/dist/components/forms/Accordion.d.vue.ts +19 -0
  65. package/dist/components/forms/Accordion.vue +43 -0
  66. package/dist/components/forms/Accordion.vue.d.ts +19 -0
  67. package/dist/components/forms/AppBarSearch.d.vue.ts +43 -0
  68. package/dist/components/forms/AppBarSearch.vue +345 -0
  69. package/dist/components/forms/AppBarSearch.vue.d.ts +43 -0
  70. package/dist/components/forms/AppCombobox.d.vue.ts +13 -0
  71. package/dist/components/forms/AppCombobox.vue +60 -0
  72. package/dist/components/forms/AppCombobox.vue.d.ts +13 -0
  73. package/dist/components/forms/AppDrawerHeaderSection.d.vue.ts +20 -0
  74. package/dist/components/forms/AppDrawerHeaderSection.vue +21 -0
  75. package/dist/components/forms/AppDrawerHeaderSection.vue.d.ts +20 -0
  76. package/dist/components/forms/AppLabel.d.vue.ts +24 -0
  77. package/dist/components/forms/AppLabel.vue +47 -0
  78. package/dist/components/forms/AppLabel.vue.d.ts +24 -0
  79. package/dist/components/forms/AppLink.d.vue.ts +19 -0
  80. package/dist/components/forms/AppLink.vue +50 -0
  81. package/dist/components/forms/AppLink.vue.d.ts +19 -0
  82. package/dist/components/forms/AppNumberField.d.vue.ts +20 -0
  83. package/dist/components/forms/AppNumberField.vue +79 -0
  84. package/dist/components/forms/AppNumberField.vue.d.ts +20 -0
  85. package/dist/components/forms/AppOtpInput.d.vue.ts +13 -0
  86. package/dist/components/forms/AppOtpInput.vue +84 -0
  87. package/dist/components/forms/AppOtpInput.vue.d.ts +13 -0
  88. package/dist/components/forms/AppSearchHeader.d.vue.ts +8 -0
  89. package/dist/components/forms/AppSearchHeader.vue +72 -0
  90. package/dist/components/forms/AppSearchHeader.vue.d.ts +8 -0
  91. package/dist/components/forms/AppSelect.d.vue.ts +17 -0
  92. package/dist/components/forms/AppSelect.vue +91 -0
  93. package/dist/components/forms/AppSelect.vue.d.ts +17 -0
  94. package/dist/components/forms/AppStepper.d.vue.ts +21 -0
  95. package/dist/components/forms/AppStepper.vue +232 -0
  96. package/dist/components/forms/AppStepper.vue.d.ts +21 -0
  97. package/dist/components/forms/AppSwitch.d.vue.ts +16 -0
  98. package/dist/components/forms/AppSwitch.vue +59 -0
  99. package/dist/components/forms/AppSwitch.vue.d.ts +16 -0
  100. package/dist/components/forms/AppTextField.d.vue.ts +13 -0
  101. package/dist/components/forms/AppTextField.vue +59 -0
  102. package/dist/components/forms/AppTextField.vue.d.ts +13 -0
  103. package/dist/components/forms/AppTextarea.d.vue.ts +13 -0
  104. package/dist/components/forms/AppTextarea.vue +62 -0
  105. package/dist/components/forms/AppTextarea.vue.d.ts +13 -0
  106. package/dist/components/forms/AttachmentCropperInput.d.vue.ts +18 -0
  107. package/dist/components/forms/AttachmentCropperInput.vue +227 -0
  108. package/dist/components/forms/AttachmentCropperInput.vue.d.ts +18 -0
  109. package/dist/components/forms/AttachmentInput.d.vue.ts +16 -0
  110. package/dist/components/forms/AttachmentInput.vue +116 -0
  111. package/dist/components/forms/AttachmentInput.vue.d.ts +16 -0
  112. package/dist/components/forms/AutocompleteInput.d.vue.ts +84 -0
  113. package/dist/components/forms/AutocompleteInput.vue +760 -0
  114. package/dist/components/forms/AutocompleteInput.vue.d.ts +84 -0
  115. package/dist/components/forms/BankSelect.d.vue.ts +21 -0
  116. package/dist/components/forms/BankSelect.vue +43 -0
  117. package/dist/components/forms/BankSelect.vue.d.ts +21 -0
  118. package/dist/components/forms/BaseButton.d.vue.ts +20 -0
  119. package/dist/components/forms/BaseButton.vue +42 -0
  120. package/dist/components/forms/BaseButton.vue.d.ts +20 -0
  121. package/dist/components/forms/CounterInput.d.vue.ts +13 -0
  122. package/dist/components/forms/CounterInput.vue +71 -0
  123. package/dist/components/forms/CounterInput.vue.d.ts +13 -0
  124. package/dist/components/forms/CustomCheckboxes.d.vue.ts +25 -0
  125. package/dist/components/forms/CustomCheckboxes.vue +69 -0
  126. package/dist/components/forms/CustomCheckboxes.vue.d.ts +25 -0
  127. package/dist/components/forms/CustomCheckboxesWithIcon.d.vue.ts +25 -0
  128. package/dist/components/forms/CustomCheckboxesWithIcon.vue +80 -0
  129. package/dist/components/forms/CustomCheckboxesWithIcon.vue.d.ts +25 -0
  130. package/dist/components/forms/CustomCheckboxesWithImage.d.vue.ts +16 -0
  131. package/dist/components/forms/CustomCheckboxesWithImage.vue +67 -0
  132. package/dist/components/forms/CustomCheckboxesWithImage.vue.d.ts +16 -0
  133. package/dist/components/forms/CustomRadios.d.vue.ts +25 -0
  134. package/dist/components/forms/CustomRadios.vue +69 -0
  135. package/dist/components/forms/CustomRadios.vue.d.ts +25 -0
  136. package/dist/components/forms/CustomRadiosWithIcon.d.vue.ts +28 -0
  137. package/dist/components/forms/CustomRadiosWithIcon.vue +98 -0
  138. package/dist/components/forms/CustomRadiosWithIcon.vue.d.ts +28 -0
  139. package/dist/components/forms/CustomRadiosWithImage.d.vue.ts +35 -0
  140. package/dist/components/forms/CustomRadiosWithImage.vue +69 -0
  141. package/dist/components/forms/CustomRadiosWithImage.vue.d.ts +35 -0
  142. package/dist/components/forms/DatePicker.d.vue.ts +29 -0
  143. package/dist/components/forms/DatePicker.vue +392 -0
  144. package/dist/components/forms/DatePicker.vue.d.ts +29 -0
  145. package/dist/components/forms/DatePickerRange.d.vue.ts +24 -0
  146. package/dist/components/forms/DatePickerRange.vue +127 -0
  147. package/dist/components/forms/DatePickerRange.vue.d.ts +24 -0
  148. package/dist/components/forms/DraggedUploadFile.d.vue.ts +11 -0
  149. package/dist/components/forms/DraggedUploadFile.vue +120 -0
  150. package/dist/components/forms/DraggedUploadFile.vue.d.ts +11 -0
  151. package/dist/components/forms/ImageCardInput.d.vue.ts +35 -0
  152. package/dist/components/forms/ImageCardInput.vue +234 -0
  153. package/dist/components/forms/ImageCardInput.vue.d.ts +35 -0
  154. package/dist/components/forms/InputValidationWrapper.d.vue.ts +26 -0
  155. package/dist/components/forms/InputValidationWrapper.vue +24 -0
  156. package/dist/components/forms/InputValidationWrapper.vue.d.ts +26 -0
  157. package/dist/components/forms/LicensePlateInput.d.vue.ts +21 -0
  158. package/dist/components/forms/LicensePlateInput.vue +175 -0
  159. package/dist/components/forms/LicensePlateInput.vue.d.ts +21 -0
  160. package/dist/components/forms/ManualDate.d.vue.ts +20 -0
  161. package/dist/components/forms/ManualDate.vue +264 -0
  162. package/dist/components/forms/ManualDate.vue.d.ts +20 -0
  163. package/dist/components/forms/MobileInput.d.vue.ts +25 -0
  164. package/dist/components/forms/MobileInput.vue +118 -0
  165. package/dist/components/forms/MobileInput.vue.d.ts +25 -0
  166. package/dist/components/forms/PasswordInput.d.vue.ts +11 -0
  167. package/dist/components/forms/PasswordInput.vue +29 -0
  168. package/dist/components/forms/PasswordInput.vue.d.ts +11 -0
  169. package/dist/components/forms/RangeInput.d.vue.ts +10 -0
  170. package/dist/components/forms/RangeInput.vue +48 -0
  171. package/dist/components/forms/RangeInput.vue.d.ts +10 -0
  172. package/dist/components/forms/Tabs.d.vue.ts +23 -0
  173. package/dist/components/forms/Tabs.vue +35 -0
  174. package/dist/components/forms/Tabs.vue.d.ts +23 -0
  175. package/dist/components/forms/TimePicker.d.vue.ts +18 -0
  176. package/dist/components/forms/TimePicker.vue +370 -0
  177. package/dist/components/forms/TimePicker.vue.d.ts +18 -0
  178. package/dist/components/table/DataTable.d.vue.ts +70 -0
  179. package/dist/components/table/DataTable.vue +361 -0
  180. package/dist/components/table/DataTable.vue.d.ts +70 -0
  181. package/dist/components/table/EditableDataTable.d.vue.ts +21 -0
  182. package/dist/components/table/EditableDataTable.vue +330 -0
  183. package/dist/components/table/EditableDataTable.vue.d.ts +21 -0
  184. package/dist/components/table/EditableDataTableRow.d.vue.ts +20 -0
  185. package/dist/components/table/EditableDataTableRow.vue +253 -0
  186. package/dist/components/table/EditableDataTableRow.vue.d.ts +20 -0
  187. package/dist/components/table/FilterGenerator.d.vue.ts +13 -0
  188. package/dist/components/table/FilterGenerator.vue +231 -0
  189. package/dist/components/table/FilterGenerator.vue.d.ts +13 -0
  190. package/dist/components/table/StaticTable.d.vue.ts +34 -0
  191. package/dist/components/table/StaticTable.vue +152 -0
  192. package/dist/components/table/StaticTable.vue.d.ts +34 -0
  193. package/dist/components/table/TablePagination.d.vue.ts +15 -0
  194. package/dist/components/table/TablePagination.vue +73 -0
  195. package/dist/components/table/TablePagination.vue.d.ts +15 -0
  196. package/dist/composables/useIsMobile.d.ts +1 -0
  197. package/dist/composables/useIsMobile.js +10 -0
  198. package/dist/composables/useIsMobile.mjs +4 -0
  199. package/dist/composables/useTableFilters.d.ts +23 -0
  200. package/dist/composables/useTableFilters.js +197 -0
  201. package/dist/composables/useTableFilters.mjs +184 -0
  202. package/dist/images/avatar.png +0 -0
  203. package/dist/images/sa.svg +1 -0
  204. package/dist/index.d.ts +65 -0
  205. package/dist/index.js +454 -0
  206. package/dist/index.mjs +130 -0
  207. package/dist/lang/ar.json +54 -0
  208. package/dist/lang/en.json +54 -0
  209. package/dist/styles/assets/scss/variables/_template.scss +1 -0
  210. package/dist/styles/assets/scss/variables/_vuetify.scss +1 -0
  211. package/dist/styles/core/base/_components.scss +164 -0
  212. package/dist/styles/core/base/_dark.scss +16 -0
  213. package/dist/styles/core/base/_default-layout-w-vertical-nav.scss +106 -0
  214. package/dist/styles/core/base/_default-layout.scss +16 -0
  215. package/dist/styles/core/base/_index.scss +47 -0
  216. package/dist/styles/core/base/_layouts.scss +63 -0
  217. package/dist/styles/core/base/_misc.scss +20 -0
  218. package/dist/styles/core/base/_mixins.scss +84 -0
  219. package/dist/styles/core/base/_route-transitions.scss +70 -0
  220. package/dist/styles/core/base/_utilities.scss +418 -0
  221. package/dist/styles/core/base/_utils.scss +100 -0
  222. package/dist/styles/core/base/_variables.scss +190 -0
  223. package/dist/styles/core/base/_vertical-nav.scss +264 -0
  224. package/dist/styles/core/base/libs/_perfect-scrollbar.scss +35 -0
  225. package/dist/styles/core/base/libs/vuetify/_index.scss +1 -0
  226. package/dist/styles/core/base/libs/vuetify/_overrides.scss +380 -0
  227. package/dist/styles/core/base/libs/vuetify/_variables.scss +48 -0
  228. package/dist/styles/core/base/placeholders/_default-layout-vertical-nav.scss +48 -0
  229. package/dist/styles/core/base/placeholders/_default-layout.scss +3 -0
  230. package/dist/styles/core/base/placeholders/_index.scss +5 -0
  231. package/dist/styles/core/base/placeholders/_misc.scss +7 -0
  232. package/dist/styles/core/base/placeholders/_nav.scss +26 -0
  233. package/dist/styles/core/base/placeholders/_vertical-nav.scss +84 -0
  234. package/dist/styles/core/base/skins/_bordered.scss +60 -0
  235. package/dist/styles/core/base/skins/_index.scss +1 -0
  236. package/dist/styles/core/template/_components.scss +1035 -0
  237. package/dist/styles/core/template/_default-layout-w-vertical-nav.scss +20 -0
  238. package/dist/styles/core/template/_utilities.scss +20 -0
  239. package/dist/styles/core/template/_variables.scss +67 -0
  240. package/dist/styles/core/template/_vertical-nav.scss +41 -0
  241. package/dist/styles/core/template/index.css +18779 -0
  242. package/dist/styles/core/template/index.scss +15 -0
  243. package/dist/styles/core/template/libs/vuetify/_variables.scss +464 -0
  244. package/dist/styles/core/template/libs/vuetify/index.css +739 -0
  245. package/dist/styles/core/template/libs/vuetify/index.scss +1 -0
  246. package/dist/styles/core/template/pages/misc.css +16 -0
  247. package/dist/styles/core/template/pages/misc.scss +20 -0
  248. package/dist/styles/core/template/placeholders/_default-layout-vertical-nav.scss +9 -0
  249. package/dist/styles/core/template/placeholders/_index.scss +3 -0
  250. package/dist/styles/core/template/placeholders/_nav.scss +15 -0
  251. package/dist/styles/core/template/placeholders/_vertical-nav.scss +18 -0
  252. package/dist/styles/core/template/skins/_bordered.scss +36 -0
  253. package/dist/styles/core/template/skins/_index.scss +1 -0
  254. package/dist/styles/layouts/_classes.scss +3 -0
  255. package/dist/styles/layouts/_dashboard-layout.scss +43 -0
  256. package/dist/styles/layouts/_global.scss +10 -0
  257. package/dist/styles/layouts/_mixins.scss +28 -0
  258. package/dist/styles/layouts/_placeholders.scss +53 -0
  259. package/dist/styles/layouts/_rtl.scss +7 -0
  260. package/dist/styles/layouts/_variables.scss +22 -0
  261. package/dist/styles/layouts/index.css +14 -0
  262. package/dist/styles/layouts/index.scss +2 -0
  263. package/dist/types.d.ts +218 -0
  264. package/dist/utils/apiUrl.d.ts +1 -0
  265. package/dist/utils/apiUrl.js +15 -0
  266. package/dist/utils/apiUrl.mjs +8 -0
  267. package/dist/utils/client.d.ts +9 -0
  268. package/dist/utils/client.js +53 -0
  269. package/dist/utils/client.mjs +39 -0
  270. package/dist/utils/files.d.ts +2 -0
  271. package/dist/utils/files.js +35 -0
  272. package/dist/utils/files.mjs +22 -0
  273. package/dist/utils/formValidation.d.ts +7 -0
  274. package/dist/utils/formValidation.js +20 -0
  275. package/dist/utils/formValidation.mjs +13 -0
  276. package/dist/utils/formatters.d.ts +12 -0
  277. package/dist/utils/formatters.js +84 -0
  278. package/dist/utils/formatters.mjs +56 -0
  279. package/dist/utils/hijriDate.d.ts +58 -0
  280. package/dist/utils/hijriDate.js +168 -0
  281. package/dist/utils/hijriDate.mjs +1951 -0
  282. package/dist/utils/i18n.d.ts +8 -0
  283. package/dist/utils/i18n.js +36 -0
  284. package/dist/utils/i18n.mjs +27 -0
  285. package/dist/utils/index.d.ts +10 -0
  286. package/dist/utils/index.js +115 -0
  287. package/dist/utils/index.mjs +10 -0
  288. package/dist/utils/queryParams.d.ts +4 -0
  289. package/dist/utils/queryParams.js +26 -0
  290. package/dist/utils/queryParams.mjs +18 -0
  291. package/dist/utils/ruleValidator.d.ts +41 -0
  292. package/dist/utils/ruleValidator.js +210 -0
  293. package/dist/utils/ruleValidator.mjs +195 -0
  294. package/dist/utils/toaster.d.ts +12 -0
  295. package/dist/utils/toaster.js +68 -0
  296. package/dist/utils/toaster.mjs +58 -0
  297. package/dist/utils/utils.d.ts +9 -0
  298. package/dist/utils/utils.js +84 -0
  299. package/dist/utils/utils.mjs +67 -0
  300. package/package.json +1 -1
@@ -0,0 +1,1951 @@
1
+ const ummalqura_dat = [
2
+ 28607,
3
+ 28636,
4
+ 28665,
5
+ 28695,
6
+ 28724,
7
+ 28754,
8
+ 28783,
9
+ 28813,
10
+ 28843,
11
+ 28872,
12
+ 28901,
13
+ 28931,
14
+ 28960,
15
+ 28990,
16
+ 29019,
17
+ 29049,
18
+ 29078,
19
+ 29108,
20
+ 29137,
21
+ 29167,
22
+ 29196,
23
+ 29226,
24
+ 29255,
25
+ 29285,
26
+ 29315,
27
+ 29345,
28
+ 29375,
29
+ 29404,
30
+ 29434,
31
+ 29463,
32
+ 29492,
33
+ 29522,
34
+ 29551,
35
+ 29580,
36
+ 29610,
37
+ 29640,
38
+ 29669,
39
+ 29699,
40
+ 29729,
41
+ 29759,
42
+ 29788,
43
+ 29818,
44
+ 29847,
45
+ 29876,
46
+ 29906,
47
+ 29935,
48
+ 29964,
49
+ 29994,
50
+ 30023,
51
+ 30053,
52
+ 30082,
53
+ 30112,
54
+ 30141,
55
+ 30171,
56
+ 30200,
57
+ 30230,
58
+ 30259,
59
+ 30289,
60
+ 30318,
61
+ 30348,
62
+ 30378,
63
+ 30408,
64
+ 30437,
65
+ 30467,
66
+ 30496,
67
+ 30526,
68
+ 30555,
69
+ 30585,
70
+ 30614,
71
+ 30644,
72
+ 30673,
73
+ 30703,
74
+ 30732,
75
+ 30762,
76
+ 30791,
77
+ 30821,
78
+ 30850,
79
+ 30880,
80
+ 30909,
81
+ 30939,
82
+ 30968,
83
+ 30998,
84
+ 31027,
85
+ 31057,
86
+ 31086,
87
+ 31116,
88
+ 31145,
89
+ 31175,
90
+ 31204,
91
+ 31234,
92
+ 31263,
93
+ 31293,
94
+ 31322,
95
+ 31352,
96
+ 31381,
97
+ 31411,
98
+ 31441,
99
+ 31471,
100
+ 31500,
101
+ 31530,
102
+ 31559,
103
+ 31589,
104
+ 31618,
105
+ 31648,
106
+ 31676,
107
+ 31706,
108
+ 31736,
109
+ 31766,
110
+ 31795,
111
+ 31825,
112
+ 31854,
113
+ 31884,
114
+ 31913,
115
+ 31943,
116
+ 31972,
117
+ 32002,
118
+ 32031,
119
+ 32061,
120
+ 32090,
121
+ 32120,
122
+ 32150,
123
+ 32180,
124
+ 32209,
125
+ 32239,
126
+ 32268,
127
+ 32298,
128
+ 32327,
129
+ 32357,
130
+ 32386,
131
+ 32416,
132
+ 32445,
133
+ 32475,
134
+ 32504,
135
+ 32534,
136
+ 32563,
137
+ 32593,
138
+ 32622,
139
+ 32652,
140
+ 32681,
141
+ 32711,
142
+ 32740,
143
+ 32770,
144
+ 32799,
145
+ 32829,
146
+ 32858,
147
+ 32888,
148
+ 32917,
149
+ 32947,
150
+ 32976,
151
+ 33006,
152
+ 33035,
153
+ 33065,
154
+ 33094,
155
+ 33124,
156
+ 33153,
157
+ 33183,
158
+ 33213,
159
+ 33243,
160
+ 33272,
161
+ 33302,
162
+ 33331,
163
+ 33361,
164
+ 33390,
165
+ 33420,
166
+ 33450,
167
+ 33479,
168
+ 33509,
169
+ 33539,
170
+ 33568,
171
+ 33598,
172
+ 33627,
173
+ 33657,
174
+ 33686,
175
+ 33716,
176
+ 33745,
177
+ 33775,
178
+ 33804,
179
+ 33834,
180
+ 33863,
181
+ 33893,
182
+ 33922,
183
+ 33952,
184
+ 33981,
185
+ 34011,
186
+ 34040,
187
+ 34069,
188
+ 34099,
189
+ 34128,
190
+ 34158,
191
+ 34187,
192
+ 34217,
193
+ 34247,
194
+ 34277,
195
+ 34306,
196
+ 34336,
197
+ 34365,
198
+ 34395,
199
+ 34424,
200
+ 34454,
201
+ 34483,
202
+ 34512,
203
+ 34542,
204
+ 34571,
205
+ 34601,
206
+ 34631,
207
+ 34660,
208
+ 34690,
209
+ 34719,
210
+ 34749,
211
+ 34778,
212
+ 34808,
213
+ 34837,
214
+ 34867,
215
+ 34896,
216
+ 34926,
217
+ 34955,
218
+ 34985,
219
+ 35015,
220
+ 35044,
221
+ 35074,
222
+ 35103,
223
+ 35133,
224
+ 35162,
225
+ 35192,
226
+ 35222,
227
+ 35251,
228
+ 35280,
229
+ 35310,
230
+ 35340,
231
+ 35370,
232
+ 35399,
233
+ 35429,
234
+ 35458,
235
+ 35488,
236
+ 35517,
237
+ 35547,
238
+ 35576,
239
+ 35605,
240
+ 35635,
241
+ 35665,
242
+ 35694,
243
+ 35723,
244
+ 35753,
245
+ 35782,
246
+ 35811,
247
+ 35841,
248
+ 35871,
249
+ 35901,
250
+ 35930,
251
+ 35960,
252
+ 35989,
253
+ 36019,
254
+ 36048,
255
+ 36078,
256
+ 36107,
257
+ 36136,
258
+ 36166,
259
+ 36195,
260
+ 36225,
261
+ 36254,
262
+ 36284,
263
+ 36314,
264
+ 36343,
265
+ 36373,
266
+ 36403,
267
+ 36433,
268
+ 36462,
269
+ 36492,
270
+ 36521,
271
+ 36551,
272
+ 36580,
273
+ 36610,
274
+ 36639,
275
+ 36669,
276
+ 36698,
277
+ 36728,
278
+ 36757,
279
+ 36786,
280
+ 36816,
281
+ 36845,
282
+ 36875,
283
+ 36904,
284
+ 36934,
285
+ 36963,
286
+ 36993,
287
+ 37022,
288
+ 37052,
289
+ 37081,
290
+ 37111,
291
+ 37141,
292
+ 37170,
293
+ 37200,
294
+ 37229,
295
+ 37259,
296
+ 37288,
297
+ 37318,
298
+ 37347,
299
+ 37377,
300
+ 37406,
301
+ 37436,
302
+ 37465,
303
+ 37495,
304
+ 37524,
305
+ 37554,
306
+ 37584,
307
+ 37613,
308
+ 37643,
309
+ 37672,
310
+ 37701,
311
+ 37731,
312
+ 37760,
313
+ 37790,
314
+ 37819,
315
+ 37849,
316
+ 37878,
317
+ 37908,
318
+ 37938,
319
+ 37967,
320
+ 37997,
321
+ 38027,
322
+ 38056,
323
+ 38085,
324
+ 38115,
325
+ 38144,
326
+ 38174,
327
+ 38203,
328
+ 38233,
329
+ 38262,
330
+ 38292,
331
+ 38322,
332
+ 38351,
333
+ 38381,
334
+ 38410,
335
+ 38440,
336
+ 38469,
337
+ 38499,
338
+ 38528,
339
+ 38558,
340
+ 38587,
341
+ 38617,
342
+ 38646,
343
+ 38676,
344
+ 38705,
345
+ 38735,
346
+ 38764,
347
+ 38794,
348
+ 38823,
349
+ 38853,
350
+ 38882,
351
+ 38912,
352
+ 38941,
353
+ 38971,
354
+ 39001,
355
+ 39030,
356
+ 39059,
357
+ 39089,
358
+ 39118,
359
+ 39148,
360
+ 39178,
361
+ 39208,
362
+ 39237,
363
+ 39267,
364
+ 39297,
365
+ 39326,
366
+ 39355,
367
+ 39385,
368
+ 39414,
369
+ 39444,
370
+ 39473,
371
+ 39503,
372
+ 39532,
373
+ 39562,
374
+ 39592,
375
+ 39621,
376
+ 39650,
377
+ 39680,
378
+ 39709,
379
+ 39739,
380
+ 39768,
381
+ 39798,
382
+ 39827,
383
+ 39857,
384
+ 39886,
385
+ 39916,
386
+ 39946,
387
+ 39975,
388
+ 40005,
389
+ 40035,
390
+ 40064,
391
+ 40094,
392
+ 40123,
393
+ 40153,
394
+ 40182,
395
+ 40212,
396
+ 40241,
397
+ 40271,
398
+ 40300,
399
+ 40330,
400
+ 40359,
401
+ 40389,
402
+ 40418,
403
+ 40448,
404
+ 40477,
405
+ 40507,
406
+ 40536,
407
+ 40566,
408
+ 40595,
409
+ 40625,
410
+ 40655,
411
+ 40685,
412
+ 40714,
413
+ 40744,
414
+ 40773,
415
+ 40803,
416
+ 40832,
417
+ 40862,
418
+ 40892,
419
+ 40921,
420
+ 40951,
421
+ 40980,
422
+ 41009,
423
+ 41039,
424
+ 41068,
425
+ 41098,
426
+ 41127,
427
+ 41157,
428
+ 41186,
429
+ 41216,
430
+ 41245,
431
+ 41275,
432
+ 41304,
433
+ 41334,
434
+ 41364,
435
+ 41393,
436
+ 41422,
437
+ 41452,
438
+ 41481,
439
+ 41511,
440
+ 41540,
441
+ 41570,
442
+ 41599,
443
+ 41629,
444
+ 41658,
445
+ 41688,
446
+ 41718,
447
+ 41748,
448
+ 41777,
449
+ 41807,
450
+ 41836,
451
+ 41865,
452
+ 41894,
453
+ 41924,
454
+ 41953,
455
+ 41983,
456
+ 42012,
457
+ 42042,
458
+ 42072,
459
+ 42102,
460
+ 42131,
461
+ 42161,
462
+ 42190,
463
+ 42220,
464
+ 42249,
465
+ 42279,
466
+ 42308,
467
+ 42337,
468
+ 42367,
469
+ 42397,
470
+ 42426,
471
+ 42456,
472
+ 42485,
473
+ 42515,
474
+ 42545,
475
+ 42574,
476
+ 42604,
477
+ 42633,
478
+ 42662,
479
+ 42692,
480
+ 42721,
481
+ 42751,
482
+ 42780,
483
+ 42810,
484
+ 42839,
485
+ 42869,
486
+ 42899,
487
+ 42929,
488
+ 42958,
489
+ 42988,
490
+ 43017,
491
+ 43046,
492
+ 43076,
493
+ 43105,
494
+ 43135,
495
+ 43164,
496
+ 43194,
497
+ 43223,
498
+ 43253,
499
+ 43283,
500
+ 43312,
501
+ 43342,
502
+ 43371,
503
+ 43401,
504
+ 43430,
505
+ 43460,
506
+ 43489,
507
+ 43519,
508
+ 43548,
509
+ 43578,
510
+ 43607,
511
+ 43637,
512
+ 43666,
513
+ 43696,
514
+ 43726,
515
+ 43755,
516
+ 43785,
517
+ 43814,
518
+ 43844,
519
+ 43873,
520
+ 43903,
521
+ 43932,
522
+ 43962,
523
+ 43991,
524
+ 44021,
525
+ 44050,
526
+ 44080,
527
+ 44109,
528
+ 44139,
529
+ 44169,
530
+ 44198,
531
+ 44228,
532
+ 44258,
533
+ 44287,
534
+ 44317,
535
+ 44346,
536
+ 44375,
537
+ 44405,
538
+ 44434,
539
+ 44464,
540
+ 44493,
541
+ 44523,
542
+ 44553,
543
+ 44582,
544
+ 44612,
545
+ 44641,
546
+ 44671,
547
+ 44700,
548
+ 44730,
549
+ 44759,
550
+ 44788,
551
+ 44818,
552
+ 44847,
553
+ 44877,
554
+ 44906,
555
+ 44936,
556
+ 44966,
557
+ 44996,
558
+ 45025,
559
+ 45055,
560
+ 45084,
561
+ 45114,
562
+ 45143,
563
+ 45172,
564
+ 45202,
565
+ 45231,
566
+ 45261,
567
+ 45290,
568
+ 45320,
569
+ 45350,
570
+ 45380,
571
+ 45409,
572
+ 45439,
573
+ 45468,
574
+ 45498,
575
+ 45527,
576
+ 45556,
577
+ 45586,
578
+ 45615,
579
+ 45644,
580
+ 45674,
581
+ 45704,
582
+ 45733,
583
+ 45763,
584
+ 45793,
585
+ 45823,
586
+ 45852,
587
+ 45882,
588
+ 45911,
589
+ 45940,
590
+ 45970,
591
+ 45999,
592
+ 46028,
593
+ 46058,
594
+ 46088,
595
+ 46117,
596
+ 46147,
597
+ 46177,
598
+ 46206,
599
+ 46236,
600
+ 46265,
601
+ 46295,
602
+ 46324,
603
+ 46354,
604
+ 46383,
605
+ 46413,
606
+ 46442,
607
+ 46472,
608
+ 46501,
609
+ 46531,
610
+ 46560,
611
+ 46590,
612
+ 46620,
613
+ 46649,
614
+ 46679,
615
+ 46708,
616
+ 46738,
617
+ 46767,
618
+ 46797,
619
+ 46826,
620
+ 46856,
621
+ 46885,
622
+ 46915,
623
+ 46944,
624
+ 46974,
625
+ 47003,
626
+ 47033,
627
+ 47063,
628
+ 47092,
629
+ 47122,
630
+ 47151,
631
+ 47181,
632
+ 47210,
633
+ 47240,
634
+ 47269,
635
+ 47298,
636
+ 47328,
637
+ 47357,
638
+ 47387,
639
+ 47417,
640
+ 47446,
641
+ 47476,
642
+ 47506,
643
+ 47535,
644
+ 47565,
645
+ 47594,
646
+ 47624,
647
+ 47653,
648
+ 47682,
649
+ 47712,
650
+ 47741,
651
+ 47771,
652
+ 47800,
653
+ 47830,
654
+ 47860,
655
+ 47890,
656
+ 47919,
657
+ 47949,
658
+ 47978,
659
+ 48008,
660
+ 48037,
661
+ 48066,
662
+ 48096,
663
+ 48125,
664
+ 48155,
665
+ 48184,
666
+ 48214,
667
+ 48244,
668
+ 48273,
669
+ 48303,
670
+ 48333,
671
+ 48362,
672
+ 48392,
673
+ 48421,
674
+ 48450,
675
+ 48480,
676
+ 48509,
677
+ 48538,
678
+ 48568,
679
+ 48598,
680
+ 48627,
681
+ 48657,
682
+ 48687,
683
+ 48717,
684
+ 48746,
685
+ 48776,
686
+ 48805,
687
+ 48834,
688
+ 48864,
689
+ 48893,
690
+ 48922,
691
+ 48952,
692
+ 48982,
693
+ 49011,
694
+ 49041,
695
+ 49071,
696
+ 49100,
697
+ 49130,
698
+ 49160,
699
+ 49189,
700
+ 49218,
701
+ 49248,
702
+ 49277,
703
+ 49306,
704
+ 49336,
705
+ 49365,
706
+ 49395,
707
+ 49425,
708
+ 49455,
709
+ 49484,
710
+ 49514,
711
+ 49543,
712
+ 49573,
713
+ 49602,
714
+ 49632,
715
+ 49661,
716
+ 49690,
717
+ 49720,
718
+ 49749,
719
+ 49779,
720
+ 49809,
721
+ 49838,
722
+ 49868,
723
+ 49898,
724
+ 49927,
725
+ 49957,
726
+ 49986,
727
+ 50016,
728
+ 50045,
729
+ 50075,
730
+ 50104,
731
+ 50133,
732
+ 50163,
733
+ 50192,
734
+ 50222,
735
+ 50252,
736
+ 50281,
737
+ 50311,
738
+ 50340,
739
+ 50370,
740
+ 50400,
741
+ 50429,
742
+ 50459,
743
+ 50488,
744
+ 50518,
745
+ 50547,
746
+ 50576,
747
+ 50606,
748
+ 50635,
749
+ 50665,
750
+ 50694,
751
+ 50724,
752
+ 50754,
753
+ 50784,
754
+ 50813,
755
+ 50843,
756
+ 50872,
757
+ 50902,
758
+ 50931,
759
+ 50960,
760
+ 50990,
761
+ 51019,
762
+ 51049,
763
+ 51078,
764
+ 51108,
765
+ 51138,
766
+ 51167,
767
+ 51197,
768
+ 51227,
769
+ 51256,
770
+ 51286,
771
+ 51315,
772
+ 51345,
773
+ 51374,
774
+ 51403,
775
+ 51433,
776
+ 51462,
777
+ 51492,
778
+ 51522,
779
+ 51552,
780
+ 51582,
781
+ 51611,
782
+ 51641,
783
+ 51670,
784
+ 51699,
785
+ 51729,
786
+ 51758,
787
+ 51787,
788
+ 51816,
789
+ 51846,
790
+ 51876,
791
+ 51906,
792
+ 51936,
793
+ 51965,
794
+ 51995,
795
+ 52025,
796
+ 52054,
797
+ 52083,
798
+ 52113,
799
+ 52142,
800
+ 52171,
801
+ 52200,
802
+ 52230,
803
+ 52260,
804
+ 52290,
805
+ 52319,
806
+ 52349,
807
+ 52379,
808
+ 52408,
809
+ 52438,
810
+ 52467,
811
+ 52497,
812
+ 52526,
813
+ 52555,
814
+ 52585,
815
+ 52614,
816
+ 52644,
817
+ 52673,
818
+ 52703,
819
+ 52733,
820
+ 52762,
821
+ 52792,
822
+ 52822,
823
+ 52851,
824
+ 52881,
825
+ 52910,
826
+ 52939,
827
+ 52969,
828
+ 52998,
829
+ 53028,
830
+ 53057,
831
+ 53087,
832
+ 53116,
833
+ 53146,
834
+ 53176,
835
+ 53205,
836
+ 53235,
837
+ 53264,
838
+ 53294,
839
+ 53324,
840
+ 53353,
841
+ 53383,
842
+ 53412,
843
+ 53441,
844
+ 53471,
845
+ 53500,
846
+ 53530,
847
+ 53559,
848
+ 53589,
849
+ 53619,
850
+ 53648,
851
+ 53678,
852
+ 53708,
853
+ 53737,
854
+ 53767,
855
+ 53796,
856
+ 53825,
857
+ 53855,
858
+ 53884,
859
+ 53913,
860
+ 53943,
861
+ 53973,
862
+ 54003,
863
+ 54032,
864
+ 54062,
865
+ 54092,
866
+ 54121,
867
+ 54151,
868
+ 54180,
869
+ 54209,
870
+ 54239,
871
+ 54268,
872
+ 54297,
873
+ 54327,
874
+ 54357,
875
+ 54387,
876
+ 54416,
877
+ 54446,
878
+ 54476,
879
+ 54505,
880
+ 54535,
881
+ 54564,
882
+ 54593,
883
+ 54623,
884
+ 54652,
885
+ 54681,
886
+ 54711,
887
+ 54741,
888
+ 54770,
889
+ 54800,
890
+ 54830,
891
+ 54859,
892
+ 54889,
893
+ 54919,
894
+ 54948,
895
+ 54977,
896
+ 55007,
897
+ 55036,
898
+ 55066,
899
+ 55095,
900
+ 55125,
901
+ 55154,
902
+ 55184,
903
+ 55213,
904
+ 55243,
905
+ 55273,
906
+ 55302,
907
+ 55332,
908
+ 55361,
909
+ 55391,
910
+ 55420,
911
+ 55450,
912
+ 55479,
913
+ 55508,
914
+ 55538,
915
+ 55567,
916
+ 55597,
917
+ 55627,
918
+ 55657,
919
+ 55686,
920
+ 55716,
921
+ 55745,
922
+ 55775,
923
+ 55804,
924
+ 55834,
925
+ 55863,
926
+ 55892,
927
+ 55922,
928
+ 55951,
929
+ 55981,
930
+ 56011,
931
+ 56040,
932
+ 56070,
933
+ 56100,
934
+ 56129,
935
+ 56159,
936
+ 56188,
937
+ 56218,
938
+ 56247,
939
+ 56276,
940
+ 56306,
941
+ 56335,
942
+ 56365,
943
+ 56394,
944
+ 56424,
945
+ 56454,
946
+ 56483,
947
+ 56513,
948
+ 56543,
949
+ 56572,
950
+ 56601,
951
+ 56631,
952
+ 56660,
953
+ 56690,
954
+ 56719,
955
+ 56749,
956
+ 56778,
957
+ 56808,
958
+ 56837,
959
+ 56867,
960
+ 56897,
961
+ 56926,
962
+ 56956,
963
+ 56985,
964
+ 57015,
965
+ 57044,
966
+ 57074,
967
+ 57103,
968
+ 57133,
969
+ 57162,
970
+ 57192,
971
+ 57221,
972
+ 57251,
973
+ 57280,
974
+ 57310,
975
+ 57340,
976
+ 57369,
977
+ 57399,
978
+ 57429,
979
+ 57458,
980
+ 57487,
981
+ 57517,
982
+ 57546,
983
+ 57576,
984
+ 57605,
985
+ 57634,
986
+ 57664,
987
+ 57694,
988
+ 57723,
989
+ 57753,
990
+ 57783,
991
+ 57813,
992
+ 57842,
993
+ 57871,
994
+ 57901,
995
+ 57930,
996
+ 57959,
997
+ 57989,
998
+ 58018,
999
+ 58048,
1000
+ 58077,
1001
+ 58107,
1002
+ 58137,
1003
+ 58167,
1004
+ 58196,
1005
+ 58226,
1006
+ 58255,
1007
+ 58285,
1008
+ 58314,
1009
+ 58343,
1010
+ 58373,
1011
+ 58402,
1012
+ 58432,
1013
+ 58461,
1014
+ 58491,
1015
+ 58521,
1016
+ 58551,
1017
+ 58580,
1018
+ 58610,
1019
+ 58639,
1020
+ 58669,
1021
+ 58698,
1022
+ 58727,
1023
+ 58757,
1024
+ 58786,
1025
+ 58816,
1026
+ 58845,
1027
+ 58875,
1028
+ 58905,
1029
+ 58934,
1030
+ 58964,
1031
+ 58994,
1032
+ 59023,
1033
+ 59053,
1034
+ 59082,
1035
+ 59111,
1036
+ 59141,
1037
+ 59170,
1038
+ 59200,
1039
+ 59229,
1040
+ 59259,
1041
+ 59288,
1042
+ 59318,
1043
+ 59348,
1044
+ 59377,
1045
+ 59407,
1046
+ 59436,
1047
+ 59466,
1048
+ 59495,
1049
+ 59525,
1050
+ 59554,
1051
+ 59584,
1052
+ 59613,
1053
+ 59643,
1054
+ 59672,
1055
+ 59702,
1056
+ 59731,
1057
+ 59761,
1058
+ 59791,
1059
+ 59820,
1060
+ 59850,
1061
+ 59879,
1062
+ 59909,
1063
+ 59939,
1064
+ 59968,
1065
+ 59997,
1066
+ 60027,
1067
+ 60056,
1068
+ 60086,
1069
+ 60115,
1070
+ 60145,
1071
+ 60174,
1072
+ 60204,
1073
+ 60234,
1074
+ 60264,
1075
+ 60293,
1076
+ 60323,
1077
+ 60352,
1078
+ 60381,
1079
+ 60411,
1080
+ 60440,
1081
+ 60469,
1082
+ 60499,
1083
+ 60528,
1084
+ 60558,
1085
+ 60588,
1086
+ 60618,
1087
+ 60648,
1088
+ 60677,
1089
+ 60707,
1090
+ 60736,
1091
+ 60765,
1092
+ 60795,
1093
+ 60824,
1094
+ 60853,
1095
+ 60883,
1096
+ 60912,
1097
+ 60942,
1098
+ 60972,
1099
+ 61002,
1100
+ 61031,
1101
+ 61061,
1102
+ 61090,
1103
+ 61120,
1104
+ 61149,
1105
+ 61179,
1106
+ 61208,
1107
+ 61237,
1108
+ 61267,
1109
+ 61296,
1110
+ 61326,
1111
+ 61356,
1112
+ 61385,
1113
+ 61415,
1114
+ 61445,
1115
+ 61474,
1116
+ 61504,
1117
+ 61533,
1118
+ 61563,
1119
+ 61592,
1120
+ 61621,
1121
+ 61651,
1122
+ 61680,
1123
+ 61710,
1124
+ 61739,
1125
+ 61769,
1126
+ 61799,
1127
+ 61828,
1128
+ 61858,
1129
+ 61888,
1130
+ 61917,
1131
+ 61947,
1132
+ 61976,
1133
+ 62006,
1134
+ 62035,
1135
+ 62064,
1136
+ 62094,
1137
+ 62123,
1138
+ 62153,
1139
+ 62182,
1140
+ 62212,
1141
+ 62242,
1142
+ 62271,
1143
+ 62301,
1144
+ 62331,
1145
+ 62360,
1146
+ 62390,
1147
+ 62419,
1148
+ 62448,
1149
+ 62478,
1150
+ 62507,
1151
+ 62537,
1152
+ 62566,
1153
+ 62596,
1154
+ 62625,
1155
+ 62655,
1156
+ 62685,
1157
+ 62715,
1158
+ 62744,
1159
+ 62774,
1160
+ 62803,
1161
+ 62832,
1162
+ 62862,
1163
+ 62891,
1164
+ 62921,
1165
+ 62950,
1166
+ 62980,
1167
+ 63009,
1168
+ 63039,
1169
+ 63069,
1170
+ 63099,
1171
+ 63128,
1172
+ 63157,
1173
+ 63187,
1174
+ 63216,
1175
+ 63246,
1176
+ 63275,
1177
+ 63305,
1178
+ 63334,
1179
+ 63363,
1180
+ 63393,
1181
+ 63423,
1182
+ 63453,
1183
+ 63482,
1184
+ 63512,
1185
+ 63541,
1186
+ 63571,
1187
+ 63600,
1188
+ 63630,
1189
+ 63659,
1190
+ 63689,
1191
+ 63718,
1192
+ 63747,
1193
+ 63777,
1194
+ 63807,
1195
+ 63836,
1196
+ 63866,
1197
+ 63895,
1198
+ 63925,
1199
+ 63955,
1200
+ 63984,
1201
+ 64014,
1202
+ 64043,
1203
+ 64073,
1204
+ 64102,
1205
+ 64131,
1206
+ 64161,
1207
+ 64190,
1208
+ 64220,
1209
+ 64249,
1210
+ 64279,
1211
+ 64309,
1212
+ 64339,
1213
+ 64368,
1214
+ 64398,
1215
+ 64427,
1216
+ 64457,
1217
+ 64486,
1218
+ 64515,
1219
+ 64545,
1220
+ 64574,
1221
+ 64603,
1222
+ 64633,
1223
+ 64663,
1224
+ 64692,
1225
+ 64722,
1226
+ 64752,
1227
+ 64782,
1228
+ 64811,
1229
+ 64841,
1230
+ 64870,
1231
+ 64899,
1232
+ 64929,
1233
+ 64958,
1234
+ 64987,
1235
+ 65017,
1236
+ 65047,
1237
+ 65076,
1238
+ 65106,
1239
+ 65136,
1240
+ 65166,
1241
+ 65195,
1242
+ 65225,
1243
+ 65254,
1244
+ 65283,
1245
+ 65313,
1246
+ 65342,
1247
+ 65371,
1248
+ 65401,
1249
+ 65431,
1250
+ 65460,
1251
+ 65490,
1252
+ 65520,
1253
+ 65549,
1254
+ 65579,
1255
+ 65608,
1256
+ 65638,
1257
+ 65667,
1258
+ 65697,
1259
+ 65726,
1260
+ 65755,
1261
+ 65785,
1262
+ 65815,
1263
+ 65844,
1264
+ 65874,
1265
+ 65903,
1266
+ 65933,
1267
+ 65963,
1268
+ 65992,
1269
+ 66022,
1270
+ 66051,
1271
+ 66081,
1272
+ 66110,
1273
+ 66140,
1274
+ 66169,
1275
+ 66199,
1276
+ 66228,
1277
+ 66258,
1278
+ 66287,
1279
+ 66317,
1280
+ 66346,
1281
+ 66376,
1282
+ 66405,
1283
+ 66435,
1284
+ 66465,
1285
+ 66494,
1286
+ 66524,
1287
+ 66553,
1288
+ 66583,
1289
+ 66612,
1290
+ 66641,
1291
+ 66671,
1292
+ 66700,
1293
+ 66730,
1294
+ 66760,
1295
+ 66789,
1296
+ 66819,
1297
+ 66849,
1298
+ 66878,
1299
+ 66908,
1300
+ 66937,
1301
+ 66967,
1302
+ 66996,
1303
+ 67025,
1304
+ 67055,
1305
+ 67084,
1306
+ 67114,
1307
+ 67143,
1308
+ 67173,
1309
+ 67203,
1310
+ 67233,
1311
+ 67262,
1312
+ 67292,
1313
+ 67321,
1314
+ 67351,
1315
+ 67380,
1316
+ 67409,
1317
+ 67439,
1318
+ 67468,
1319
+ 67497,
1320
+ 67527,
1321
+ 67557,
1322
+ 67587,
1323
+ 67617,
1324
+ 67646,
1325
+ 67676,
1326
+ 67705,
1327
+ 67735,
1328
+ 67764,
1329
+ 67793,
1330
+ 67823,
1331
+ 67852,
1332
+ 67882,
1333
+ 67911,
1334
+ 67941,
1335
+ 67971,
1336
+ 68e3,
1337
+ 68030,
1338
+ 68060,
1339
+ 68089,
1340
+ 68119,
1341
+ 68148,
1342
+ 68177,
1343
+ 68207,
1344
+ 68236,
1345
+ 68266,
1346
+ 68295,
1347
+ 68325,
1348
+ 68354,
1349
+ 68384,
1350
+ 68414,
1351
+ 68443,
1352
+ 68473,
1353
+ 68502,
1354
+ 68532,
1355
+ 68561,
1356
+ 68591,
1357
+ 68620,
1358
+ 68650,
1359
+ 68679,
1360
+ 68708,
1361
+ 68738,
1362
+ 68768,
1363
+ 68797,
1364
+ 68827,
1365
+ 68857,
1366
+ 68886,
1367
+ 68916,
1368
+ 68946,
1369
+ 68975,
1370
+ 69004,
1371
+ 69034,
1372
+ 69063,
1373
+ 69092,
1374
+ 69122,
1375
+ 69152,
1376
+ 69181,
1377
+ 69211,
1378
+ 69240,
1379
+ 69270,
1380
+ 69300,
1381
+ 69330,
1382
+ 69359,
1383
+ 69388,
1384
+ 69418,
1385
+ 69447,
1386
+ 69476,
1387
+ 69506,
1388
+ 69535,
1389
+ 69565,
1390
+ 69595,
1391
+ 69624,
1392
+ 69654,
1393
+ 69684,
1394
+ 69713,
1395
+ 69743,
1396
+ 69772,
1397
+ 69802,
1398
+ 69831,
1399
+ 69861,
1400
+ 69890,
1401
+ 69919,
1402
+ 69949,
1403
+ 69978,
1404
+ 70008,
1405
+ 70038,
1406
+ 70067,
1407
+ 70097,
1408
+ 70126,
1409
+ 70156,
1410
+ 70186,
1411
+ 70215,
1412
+ 70245,
1413
+ 70274,
1414
+ 70303,
1415
+ 70333,
1416
+ 70362,
1417
+ 70392,
1418
+ 70421,
1419
+ 70451,
1420
+ 70481,
1421
+ 70510,
1422
+ 70540,
1423
+ 70570,
1424
+ 70599,
1425
+ 70629,
1426
+ 70658,
1427
+ 70687,
1428
+ 70717,
1429
+ 70746,
1430
+ 70776,
1431
+ 70805,
1432
+ 70835,
1433
+ 70864,
1434
+ 70894,
1435
+ 70924,
1436
+ 70954,
1437
+ 70983,
1438
+ 71013,
1439
+ 71042,
1440
+ 71071,
1441
+ 71101,
1442
+ 71130,
1443
+ 71159,
1444
+ 71189,
1445
+ 71218,
1446
+ 71248,
1447
+ 71278,
1448
+ 71308,
1449
+ 71337,
1450
+ 71367,
1451
+ 71397,
1452
+ 71426,
1453
+ 71455,
1454
+ 71485,
1455
+ 71514,
1456
+ 71543,
1457
+ 71573,
1458
+ 71602,
1459
+ 71632,
1460
+ 71662,
1461
+ 71691,
1462
+ 71721,
1463
+ 71751,
1464
+ 71781,
1465
+ 71810,
1466
+ 71839,
1467
+ 71869,
1468
+ 71898,
1469
+ 71927,
1470
+ 71957,
1471
+ 71986,
1472
+ 72016,
1473
+ 72046,
1474
+ 72075,
1475
+ 72105,
1476
+ 72135,
1477
+ 72164,
1478
+ 72194,
1479
+ 72223,
1480
+ 72253,
1481
+ 72282,
1482
+ 72311,
1483
+ 72341,
1484
+ 72370,
1485
+ 72400,
1486
+ 72429,
1487
+ 72459,
1488
+ 72489,
1489
+ 72518,
1490
+ 72548,
1491
+ 72577,
1492
+ 72607,
1493
+ 72637,
1494
+ 72666,
1495
+ 72695,
1496
+ 72725,
1497
+ 72754,
1498
+ 72784,
1499
+ 72813,
1500
+ 72843,
1501
+ 72872,
1502
+ 72902,
1503
+ 72931,
1504
+ 72961,
1505
+ 72991,
1506
+ 73020,
1507
+ 73050,
1508
+ 73080,
1509
+ 73109,
1510
+ 73139,
1511
+ 73168,
1512
+ 73197,
1513
+ 73227,
1514
+ 73256,
1515
+ 73286,
1516
+ 73315,
1517
+ 73345,
1518
+ 73375,
1519
+ 73404,
1520
+ 73434,
1521
+ 73464,
1522
+ 73493,
1523
+ 73523,
1524
+ 73552,
1525
+ 73581,
1526
+ 73611,
1527
+ 73640,
1528
+ 73669,
1529
+ 73699,
1530
+ 73729,
1531
+ 73758,
1532
+ 73788,
1533
+ 73818,
1534
+ 73848,
1535
+ 73877,
1536
+ 73907,
1537
+ 73936,
1538
+ 73965,
1539
+ 73995,
1540
+ 74024,
1541
+ 74053,
1542
+ 74083,
1543
+ 74113,
1544
+ 74142,
1545
+ 74172,
1546
+ 74202,
1547
+ 74231,
1548
+ 74261,
1549
+ 74291,
1550
+ 74320,
1551
+ 74349,
1552
+ 74379,
1553
+ 74408,
1554
+ 74437,
1555
+ 74467,
1556
+ 74497,
1557
+ 74526,
1558
+ 74556,
1559
+ 74586,
1560
+ 74615,
1561
+ 74645,
1562
+ 74675,
1563
+ 74704,
1564
+ 74733,
1565
+ 74763,
1566
+ 74792,
1567
+ 74822,
1568
+ 74851,
1569
+ 74881,
1570
+ 74910,
1571
+ 74940,
1572
+ 74969,
1573
+ 74999,
1574
+ 75029,
1575
+ 75058,
1576
+ 75088,
1577
+ 75117,
1578
+ 75147,
1579
+ 75176,
1580
+ 75206,
1581
+ 75235,
1582
+ 75264,
1583
+ 75294,
1584
+ 75323,
1585
+ 75353,
1586
+ 75383,
1587
+ 75412,
1588
+ 75442,
1589
+ 75472,
1590
+ 75501,
1591
+ 75531,
1592
+ 75560,
1593
+ 75590,
1594
+ 75619,
1595
+ 75648,
1596
+ 75678,
1597
+ 75707,
1598
+ 75737,
1599
+ 75766,
1600
+ 75796,
1601
+ 75826,
1602
+ 75856,
1603
+ 75885,
1604
+ 75915,
1605
+ 75944,
1606
+ 75974,
1607
+ 76003,
1608
+ 76032,
1609
+ 76062,
1610
+ 76091,
1611
+ 76121,
1612
+ 76150,
1613
+ 76180,
1614
+ 76210,
1615
+ 76239,
1616
+ 76269,
1617
+ 76299,
1618
+ 76328,
1619
+ 76358,
1620
+ 76387,
1621
+ 76416,
1622
+ 76446,
1623
+ 76475,
1624
+ 76505,
1625
+ 76534,
1626
+ 76564,
1627
+ 76593,
1628
+ 76623,
1629
+ 76653,
1630
+ 76682,
1631
+ 76712,
1632
+ 76741,
1633
+ 76771,
1634
+ 76801,
1635
+ 76830,
1636
+ 76859,
1637
+ 76889,
1638
+ 76918,
1639
+ 76948,
1640
+ 76977,
1641
+ 77007,
1642
+ 77036,
1643
+ 77066,
1644
+ 77096,
1645
+ 77125,
1646
+ 77155,
1647
+ 77185,
1648
+ 77214,
1649
+ 77243,
1650
+ 77273,
1651
+ 77302,
1652
+ 77332,
1653
+ 77361,
1654
+ 77390,
1655
+ 77420,
1656
+ 77450,
1657
+ 77479,
1658
+ 77509,
1659
+ 77539,
1660
+ 77569,
1661
+ 77598,
1662
+ 77627,
1663
+ 77657,
1664
+ 77686,
1665
+ 77715,
1666
+ 77745,
1667
+ 77774,
1668
+ 77804,
1669
+ 77833,
1670
+ 77863,
1671
+ 77893,
1672
+ 77923,
1673
+ 77952,
1674
+ 77982,
1675
+ 78011,
1676
+ 78041,
1677
+ 78070,
1678
+ 78099,
1679
+ 78129,
1680
+ 78158,
1681
+ 78188,
1682
+ 78217,
1683
+ 78247,
1684
+ 78277,
1685
+ 78307,
1686
+ 78336,
1687
+ 78366,
1688
+ 78395,
1689
+ 78425,
1690
+ 78454,
1691
+ 78483,
1692
+ 78513,
1693
+ 78542,
1694
+ 78572,
1695
+ 78601,
1696
+ 78631,
1697
+ 78661,
1698
+ 78690,
1699
+ 78720,
1700
+ 78750,
1701
+ 78779,
1702
+ 78808,
1703
+ 78838,
1704
+ 78867,
1705
+ 78897,
1706
+ 78926,
1707
+ 78956,
1708
+ 78985,
1709
+ 79015,
1710
+ 79044,
1711
+ 79074,
1712
+ 79104,
1713
+ 79133,
1714
+ 79163,
1715
+ 79192,
1716
+ 79222,
1717
+ 79251,
1718
+ 79281,
1719
+ 79310,
1720
+ 79340,
1721
+ 79369,
1722
+ 79399,
1723
+ 79428,
1724
+ 79458,
1725
+ 79487,
1726
+ 79517,
1727
+ 79546,
1728
+ 79576,
1729
+ 79606,
1730
+ 79635,
1731
+ 79665,
1732
+ 79695,
1733
+ 79724,
1734
+ 79753,
1735
+ 79783,
1736
+ 79812,
1737
+ 79841,
1738
+ 79871,
1739
+ 79900,
1740
+ 79930,
1741
+ 79960,
1742
+ 79990
1743
+ ];
1744
+ const lang = {
1745
+ "en": {
1746
+ notation: "H",
1747
+ // ex. 01/01/1434H
1748
+ zero: "0",
1749
+ one: "1",
1750
+ two: "2",
1751
+ three: "3",
1752
+ four: "4",
1753
+ five: "5",
1754
+ six: "6",
1755
+ seven: "7",
1756
+ eight: "8",
1757
+ nine: "9",
1758
+ monthNames: [
1759
+ "Muharram",
1760
+ "Safar",
1761
+ "Rabi' al-awwal",
1762
+ "Rabi' al-thani",
1763
+ "Jumada al-awwal",
1764
+ "Jumada al-thani",
1765
+ "Rajab",
1766
+ "Sha'aban",
1767
+ "Ramadan",
1768
+ "Shawwal",
1769
+ "Dhu al-Qi'dah",
1770
+ "Dhu al-Hijjah"
1771
+ ],
1772
+ monthShortNames: [
1773
+ "Muh",
1774
+ "Saf",
1775
+ "Rab1",
1776
+ "Rab2",
1777
+ "Jum1",
1778
+ "Jum2",
1779
+ "Raj",
1780
+ "Sha'",
1781
+ "Ram",
1782
+ "Shaw",
1783
+ "DhuQ",
1784
+ "DhuH"
1785
+ ],
1786
+ formatLocale: function(hDate) {
1787
+ return hDate;
1788
+ }
1789
+ }
1790
+ };
1791
+ class HDateClass {
1792
+ year;
1793
+ month;
1794
+ day;
1795
+ constructor(year, month, day) {
1796
+ this.year = year;
1797
+ this.month = month;
1798
+ this.day = day;
1799
+ }
1800
+ toString() {
1801
+ return this.format(this.year, this.month, this.day, "dd/mm/yyyyN");
1802
+ }
1803
+ toFormat(format) {
1804
+ return this.format(this.year, this.month, this.day, format);
1805
+ }
1806
+ format(year, month, day, format) {
1807
+ if (vlidateHijri(year, month, day)) {
1808
+ let newFormat = format;
1809
+ if (newFormat.indexOf("dd") !== -1)
1810
+ newFormat = newFormat.replace("dd", day < 10 ? "0" + day : day.toString());
1811
+ else
1812
+ newFormat = newFormat.replace("d", day.toString());
1813
+ if (newFormat.indexOf("mm") !== -1)
1814
+ newFormat = newFormat.replace("mm", month < 10 ? "0" + month : month.toString());
1815
+ else
1816
+ newFormat = newFormat.replace("m", month.toString());
1817
+ if (newFormat.indexOf("yyyy") !== -1)
1818
+ newFormat = newFormat.replace("yyyy", year.toString());
1819
+ else
1820
+ newFormat = newFormat.replace("yy", year.toString().substr(year.toString().length - 2, 2));
1821
+ newFormat = newFormat.replace("N", lang[currentLanguage].notation);
1822
+ return lang[currentLanguage].formatLocale(newFormat);
1823
+ }
1824
+ return "";
1825
+ }
1826
+ }
1827
+ const currentLanguage = "en";
1828
+ function vlidateHijri(year, month, day) {
1829
+ if (month < 1 || month > 12)
1830
+ return false;
1831
+ if (day < 1 || day > 30)
1832
+ return false;
1833
+ return true;
1834
+ }
1835
+ function validateGregorian(year, month, day) {
1836
+ if (month < 1 || month > 12)
1837
+ return false;
1838
+ if (day < 1 || day > 31)
1839
+ return false;
1840
+ return true;
1841
+ }
1842
+ function julianToGregorian(julianDate) {
1843
+ const z = Math.floor(julianDate + 0.5);
1844
+ let a = Math.floor((z - 186721625e-2) / 36524.25);
1845
+ a = z + 1 + a - Math.floor(a / 4);
1846
+ const b = a + 1524;
1847
+ const c = Math.floor((b - 122.1) / 365.25);
1848
+ const d = Math.floor(365.25 * c);
1849
+ const e = Math.floor((b - d) / 30.6001);
1850
+ const day = b - d - Math.floor(e * 30.6001);
1851
+ const month = e - (e > 13.5 ? 13 : 1);
1852
+ let year = c - (month > 2.5 ? 4716 : 4715);
1853
+ if (year <= 0) {
1854
+ year--;
1855
+ }
1856
+ return /* @__PURE__ */ new Date(year + "/" + (month + 1) + "/" + day);
1857
+ }
1858
+ function hijriToGregorian(year, month, day) {
1859
+ const yearNum = parseInt(year.toString());
1860
+ const monthNum = parseInt(month.toString());
1861
+ const dayNum = parseInt(day.toString());
1862
+ if (isNaN(yearNum) || isNaN(monthNum) || isNaN(dayNum))
1863
+ return "Error Input";
1864
+ const iy = yearNum;
1865
+ const im = monthNum;
1866
+ const id = dayNum;
1867
+ const ii = iy - 1;
1868
+ const iln = ii * 12 + 1 + (im - 1);
1869
+ const i = iln - 16260;
1870
+ const mcjdn = id + ummalqura_dat[i - 1] - 1;
1871
+ const cjdn = mcjdn + 24e5;
1872
+ return julianToGregorian(cjdn);
1873
+ }
1874
+ function gregorianToHijri(pYear, pMonth, pDay) {
1875
+ const day = parseInt(pDay.toString());
1876
+ const month = parseInt(pMonth.toString()) - 1;
1877
+ const year = parseInt(pYear.toString());
1878
+ let m = month + 1;
1879
+ let y = year;
1880
+ if (m < 3) {
1881
+ y -= 1;
1882
+ m += 12;
1883
+ }
1884
+ let a = Math.floor(y / 100);
1885
+ let jgc = a - Math.floor(a / 4) - 2;
1886
+ const cjdn = Math.floor(365.25 * (y + 4716)) + Math.floor(30.6001 * (m + 1)) + day - jgc - 1524;
1887
+ a = Math.floor((cjdn - 186721625e-2) / 36524.25);
1888
+ jgc = a - Math.floor(a / 4) + 1;
1889
+ const b = cjdn + jgc + 1524;
1890
+ const c = Math.floor((b - 122.1) / 365.25);
1891
+ const d = Math.floor(365.25 * c);
1892
+ let monthResult = Math.floor((b - d) / 30.6001);
1893
+ const dayResult = b - d - Math.floor(30.6001 * monthResult);
1894
+ if (monthResult > 13) {
1895
+ monthResult -= 12;
1896
+ }
1897
+ monthResult -= 1;
1898
+ const yearResult = c - 4716;
1899
+ const mcjdn = cjdn - 24e5;
1900
+ let i = 0;
1901
+ for (i = 0; i < ummalqura_dat.length; i++) {
1902
+ if (ummalqura_dat[i] > mcjdn)
1903
+ break;
1904
+ }
1905
+ const iln = i + 16260;
1906
+ const ii = Math.floor((iln - 1) / 12);
1907
+ const iy = ii + 1;
1908
+ const im = iln - 12 * ii;
1909
+ const id = mcjdn - ummalqura_dat[i - 1] + 1;
1910
+ const ml = ummalqura_dat[i] - ummalqura_dat[i - 1];
1911
+ return new HDateClass(iy, im, id);
1912
+ }
1913
+ const HijriJS = {
1914
+ currentLanguage,
1915
+ today() {
1916
+ const today = /* @__PURE__ */ new Date();
1917
+ return gregorianToHijri(today.getFullYear(), today.getMonth() + 1, today.getDate());
1918
+ },
1919
+ toGregorian(dateString, splitter = "/") {
1920
+ const arrDate = dateString.split(splitter);
1921
+ if (arrDate.length >= 3)
1922
+ return hijriToGregorian(arrDate[2], arrDate[1], arrDate[0]);
1923
+ return void 0;
1924
+ },
1925
+ toHijri(dateString, splitter = "/") {
1926
+ const arrDate = dateString.split(splitter);
1927
+ if (arrDate.length >= 3)
1928
+ return gregorianToHijri(arrDate[2], arrDate[1], arrDate[0]);
1929
+ return void 0;
1930
+ },
1931
+ hijriToGregorian,
1932
+ gregorianToHijri,
1933
+ julianToGregorian,
1934
+ HDate: HDateClass,
1935
+ vlidateHijri,
1936
+ validateGregorian,
1937
+ lang,
1938
+ ummalqura_dat
1939
+ };
1940
+ export default HijriJS;
1941
+ export {
1942
+ HijriJS,
1943
+ HDateClass,
1944
+ gregorianToHijri,
1945
+ hijriToGregorian,
1946
+ julianToGregorian,
1947
+ vlidateHijri,
1948
+ validateGregorian,
1949
+ lang,
1950
+ ummalqura_dat
1951
+ };