@gusto/embedded-react-sdk 0.7.0 → 0.8.1

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 (1206) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist/_virtual/dynamic-import-helper.js +17 -0
  3. package/dist/_virtual/dynamic-import-helper.js.map +1 -0
  4. package/dist/assets/icons/alert-circle.svg.js +10 -0
  5. package/dist/assets/icons/alert-circle.svg.js.map +1 -0
  6. package/dist/assets/icons/caret-down.svg.js +10 -0
  7. package/dist/assets/icons/caret-down.svg.js.map +1 -0
  8. package/dist/assets/icons/caret-left.svg.js +10 -0
  9. package/dist/assets/icons/caret-left.svg.js.map +1 -0
  10. package/dist/assets/icons/caret-right.svg.js +10 -0
  11. package/dist/assets/icons/caret-right.svg.js.map +1 -0
  12. package/dist/assets/icons/checkbox.svg.js +10 -0
  13. package/dist/assets/icons/checkbox.svg.js.map +1 -0
  14. package/dist/assets/icons/error.svg.js +10 -0
  15. package/dist/assets/icons/error.svg.js.map +1 -0
  16. package/dist/assets/icons/hamburger.svg.js +10 -0
  17. package/dist/assets/icons/hamburger.svg.js.map +1 -0
  18. package/dist/assets/icons/info.svg.js +10 -0
  19. package/dist/assets/icons/info.svg.js.map +1 -0
  20. package/dist/assets/icons/list.svg.js +10 -0
  21. package/dist/assets/icons/list.svg.js.map +1 -0
  22. package/dist/assets/icons/magnifyingGlass.png.js +5 -0
  23. package/dist/assets/icons/magnifyingGlass.png.js.map +1 -0
  24. package/dist/assets/icons/pagination_first.svg.js +10 -0
  25. package/dist/assets/icons/pagination_first.svg.js.map +1 -0
  26. package/dist/assets/icons/pagination_last.svg.js +10 -0
  27. package/dist/assets/icons/pagination_last.svg.js.map +1 -0
  28. package/dist/assets/icons/pagination_next.svg.js +10 -0
  29. package/dist/assets/icons/pagination_next.svg.js.map +1 -0
  30. package/dist/assets/icons/pagination_previous.svg.js +10 -0
  31. package/dist/assets/icons/pagination_previous.svg.js.map +1 -0
  32. package/dist/assets/icons/pencil.svg.js +10 -0
  33. package/dist/assets/icons/pencil.svg.js.map +1 -0
  34. package/dist/assets/icons/success_check.svg.js +10 -0
  35. package/dist/assets/icons/success_check.svg.js.map +1 -0
  36. package/dist/assets/icons/trashcan.svg.js +10 -0
  37. package/dist/assets/icons/trashcan.svg.js.map +1 -0
  38. package/dist/assets/icons/unchecked_circular.svg.js +10 -0
  39. package/dist/assets/icons/unchecked_circular.svg.js.map +1 -0
  40. package/dist/assets/icons/verification_pending.svg.js +10 -0
  41. package/dist/assets/icons/verification_pending.svg.js.map +1 -0
  42. package/dist/assets/icons/warning.svg.js +10 -0
  43. package/dist/assets/icons/warning.svg.js.map +1 -0
  44. package/dist/components/Base/Base.d.ts +16 -0
  45. package/dist/components/Base/Base.js +78 -0
  46. package/dist/components/Base/Base.js.map +1 -0
  47. package/dist/components/Base/createCompoundContext.d.ts +1 -0
  48. package/dist/components/Base/createCompoundContext.js +14 -0
  49. package/dist/components/Base/createCompoundContext.js.map +1 -0
  50. package/dist/components/Base/index.d.ts +3 -0
  51. package/dist/components/Base/useBase.d.ts +20 -0
  52. package/dist/components/Base/useBase.js +12 -0
  53. package/dist/components/Base/useBase.js.map +1 -0
  54. package/dist/components/Common/ActionsLayout/ActionsLayout.d.ts +7 -0
  55. package/dist/components/Common/ActionsLayout/ActionsLayout.js +22 -0
  56. package/dist/components/Common/ActionsLayout/ActionsLayout.js.map +1 -0
  57. package/dist/components/Common/ActionsLayout/index.d.ts +1 -0
  58. package/dist/components/Common/Alert/Alert.d.ts +9 -0
  59. package/dist/components/Common/DataView/DataCards/DataCards.d.ts +9 -0
  60. package/dist/components/Common/DataView/DataCards/DataCards.js +36 -0
  61. package/dist/components/Common/DataView/DataCards/DataCards.js.map +1 -0
  62. package/dist/components/Common/DataView/DataCards/DataCards.module.scss.js +10 -0
  63. package/dist/components/Common/DataView/DataCards/DataCards.module.scss.js.map +1 -0
  64. package/dist/components/Common/DataView/DataCards/index.d.ts +1 -0
  65. package/dist/components/Common/DataView/DataTable/DataTable.d.ts +10 -0
  66. package/dist/components/Common/DataView/DataTable/DataTable.js +86 -0
  67. package/dist/components/Common/DataView/DataTable/DataTable.js.map +1 -0
  68. package/dist/components/Common/DataView/DataView.d.ts +12 -0
  69. package/dist/components/Common/DataView/DataView.js +34 -0
  70. package/dist/components/Common/DataView/DataView.js.map +1 -0
  71. package/dist/components/Common/DataView/DataView.module.scss.js +8 -0
  72. package/dist/components/Common/DataView/DataView.module.scss.js.map +1 -0
  73. package/dist/components/Common/DataView/index.d.ts +4 -0
  74. package/dist/components/Common/DataView/useDataView.d.ts +28 -0
  75. package/dist/components/Common/DataView/useDataView.js +20 -0
  76. package/dist/components/Common/DataView/useDataView.js.map +1 -0
  77. package/dist/components/Common/DocumentList/DocumentList.d.ts +26 -0
  78. package/dist/components/Common/DocumentList/DocumentList.js +40 -0
  79. package/dist/components/Common/DocumentList/DocumentList.js.map +1 -0
  80. package/dist/components/Common/DocumentList/DocumentList.module.scss.js +16 -0
  81. package/dist/components/Common/DocumentList/DocumentList.module.scss.js.map +1 -0
  82. package/dist/components/Common/DocumentList/index.d.ts +1 -0
  83. package/dist/components/Common/DocumentViewer/DocumentViewer.d.ts +9 -0
  84. package/dist/components/Common/DocumentViewer/DocumentViewer.js +48 -0
  85. package/dist/components/Common/DocumentViewer/DocumentViewer.js.map +1 -0
  86. package/dist/components/Common/DocumentViewer/DocumentViewer.module.scss.js +18 -0
  87. package/dist/components/Common/DocumentViewer/DocumentViewer.module.scss.js.map +1 -0
  88. package/dist/components/Common/DocumentViewer/index.d.ts +1 -0
  89. package/dist/components/Common/EmptyData/EmptyData.d.ts +7 -0
  90. package/dist/components/Common/EmptyData/EmptyData.js +19 -0
  91. package/dist/components/Common/EmptyData/EmptyData.js.map +1 -0
  92. package/dist/components/Common/EmptyData/EmptyData.module.scss.js +10 -0
  93. package/dist/components/Common/EmptyData/EmptyData.module.scss.js.map +1 -0
  94. package/dist/components/Common/FadeIn/FadeIn.d.ts +4 -0
  95. package/dist/components/Common/FadeIn/FadeIn.js +18 -0
  96. package/dist/components/Common/FadeIn/FadeIn.js.map +1 -0
  97. package/dist/components/Common/FadeIn/FadeIn.module.scss.js +10 -0
  98. package/dist/components/Common/FadeIn/FadeIn.module.scss.js.map +1 -0
  99. package/dist/components/Common/FieldCaption/FieldCaption.d.ts +9 -0
  100. package/dist/components/Common/FieldCaption/FieldCaption.js +30 -0
  101. package/dist/components/Common/FieldCaption/FieldCaption.js.map +1 -0
  102. package/dist/components/Common/FieldCaption/FieldCaption.module.scss.js +10 -0
  103. package/dist/components/Common/FieldCaption/FieldCaption.module.scss.js.map +1 -0
  104. package/dist/components/Common/FieldCaption/index.d.ts +1 -0
  105. package/dist/components/Common/FieldDescription/FieldDescription.d.ts +7 -0
  106. package/dist/components/Common/FieldDescription/FieldDescription.js +19 -0
  107. package/dist/components/Common/FieldDescription/FieldDescription.js.map +1 -0
  108. package/dist/components/Common/FieldDescription/FieldDescription.module.scss.js +8 -0
  109. package/dist/components/Common/FieldDescription/FieldDescription.module.scss.js.map +1 -0
  110. package/dist/components/Common/FieldDescription/index.d.ts +1 -0
  111. package/dist/components/Common/FieldErrorMessage/FieldErrorMessage.d.ts +6 -0
  112. package/dist/components/Common/FieldErrorMessage/FieldErrorMessage.js +28 -0
  113. package/dist/components/Common/FieldErrorMessage/FieldErrorMessage.js.map +1 -0
  114. package/dist/components/Common/FieldErrorMessage/FieldErrorMessage.module.scss.js +10 -0
  115. package/dist/components/Common/FieldErrorMessage/FieldErrorMessage.module.scss.js.map +1 -0
  116. package/dist/components/Common/FieldErrorMessage/index.d.ts +1 -0
  117. package/dist/components/Common/FieldLayout/FieldLayout.d.ts +2 -0
  118. package/dist/components/Common/FieldLayout/FieldLayout.js +57 -0
  119. package/dist/components/Common/FieldLayout/FieldLayout.js.map +1 -0
  120. package/dist/components/Common/FieldLayout/FieldLayout.module.scss.js +16 -0
  121. package/dist/components/Common/FieldLayout/FieldLayout.module.scss.js.map +1 -0
  122. package/dist/components/Common/FieldLayout/FieldLayoutTypes.d.ts +52 -0
  123. package/dist/components/Common/FieldLayout/index.d.ts +1 -0
  124. package/dist/components/Common/Fields/CheckboxField/CheckboxField.d.ts +5 -0
  125. package/dist/components/Common/Fields/CheckboxField/CheckboxField.js +28 -0
  126. package/dist/components/Common/Fields/CheckboxField/CheckboxField.js.map +1 -0
  127. package/dist/components/Common/Fields/CheckboxField/index.d.ts +1 -0
  128. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.d.ts +10 -0
  129. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js +36 -0
  130. package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js.map +1 -0
  131. package/dist/components/Common/Fields/CheckboxGroupField/index.d.ts +1 -0
  132. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.d.ts +10 -0
  133. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js +36 -0
  134. package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js.map +1 -0
  135. package/dist/components/Common/Fields/ComboBoxField/index.d.ts +2 -0
  136. package/dist/components/Common/Fields/DatePickerField/DatePickerField.d.ts +6 -0
  137. package/dist/components/Common/Fields/DatePickerField/DatePickerField.js +28 -0
  138. package/dist/components/Common/Fields/DatePickerField/DatePickerField.js.map +1 -0
  139. package/dist/components/Common/Fields/DatePickerField/index.d.ts +1 -0
  140. package/dist/components/Common/Fields/NumberInputField/NumberInputField.d.ts +5 -0
  141. package/dist/components/Common/Fields/NumberInputField/NumberInputField.js +31 -0
  142. package/dist/components/Common/Fields/NumberInputField/NumberInputField.js.map +1 -0
  143. package/dist/components/Common/Fields/NumberInputField/index.d.ts +1 -0
  144. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.d.ts +10 -0
  145. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js +36 -0
  146. package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js.map +1 -0
  147. package/dist/components/Common/Fields/RadioGroupField/index.d.ts +2 -0
  148. package/dist/components/Common/Fields/SelectField/SelectField.d.ts +10 -0
  149. package/dist/components/Common/Fields/SelectField/SelectField.js +36 -0
  150. package/dist/components/Common/Fields/SelectField/SelectField.js.map +1 -0
  151. package/dist/components/Common/Fields/SelectField/index.d.ts +2 -0
  152. package/dist/components/Common/Fields/SwitchField/SwitchField.d.ts +5 -0
  153. package/dist/components/Common/Fields/SwitchField/SwitchField.js +28 -0
  154. package/dist/components/Common/Fields/SwitchField/SwitchField.js.map +1 -0
  155. package/dist/components/Common/Fields/SwitchField/index.d.ts +1 -0
  156. package/dist/components/Common/Fields/TextInputField/TextInputField.d.ts +5 -0
  157. package/dist/components/Common/Fields/TextInputField/TextInputField.js +28 -0
  158. package/dist/components/Common/Fields/TextInputField/TextInputField.js.map +1 -0
  159. package/dist/components/Common/Fields/TextInputField/index.d.ts +1 -0
  160. package/dist/components/Common/Fields/hooks/useField.d.ts +22 -0
  161. package/dist/components/Common/Fields/hooks/useField.js +36 -0
  162. package/dist/components/Common/Fields/hooks/useField.js.map +1 -0
  163. package/dist/components/Common/Fields/hooks/useStringifyGenericFieldValue.d.ts +31 -0
  164. package/dist/components/Common/Fields/hooks/useStringifyGenericFieldValue.js +73 -0
  165. package/dist/components/Common/Fields/hooks/useStringifyGenericFieldValue.js.map +1 -0
  166. package/dist/components/Common/Fieldset/Fieldset.d.ts +11 -0
  167. package/dist/components/Common/Fieldset/Fieldset.js +66 -0
  168. package/dist/components/Common/Fieldset/Fieldset.js.map +1 -0
  169. package/dist/components/Common/Fieldset/Fieldset.module.scss.js +16 -0
  170. package/dist/components/Common/Fieldset/Fieldset.module.scss.js.map +1 -0
  171. package/dist/components/Common/Fieldset/index.d.ts +1 -0
  172. package/dist/components/Common/Flex/Flex.d.ts +14 -0
  173. package/dist/components/Common/Flex/Flex.js +22 -0
  174. package/dist/components/Common/Flex/Flex.js.map +1 -0
  175. package/dist/components/Common/Flex/Flex.module.scss.js +10 -0
  176. package/dist/components/Common/Flex/Flex.module.scss.js.map +1 -0
  177. package/dist/components/Common/Flex/index.d.ts +1 -0
  178. package/dist/components/Common/Form/Form.d.ts +2 -0
  179. package/dist/components/Common/Form/Form.js +8 -0
  180. package/dist/components/Common/Form/Form.js.map +1 -0
  181. package/dist/components/Common/Form/Form.module.scss.js +8 -0
  182. package/dist/components/Common/Form/Form.module.scss.js.map +1 -0
  183. package/dist/components/Common/Form/index.d.ts +2 -0
  184. package/dist/components/Common/Grid/Grid.d.ts +18 -0
  185. package/dist/components/Common/Grid/Grid.js +32 -0
  186. package/dist/components/Common/Grid/Grid.js.map +1 -0
  187. package/dist/components/Common/Grid/Grid.module.scss.js +10 -0
  188. package/dist/components/Common/Grid/Grid.module.scss.js.map +1 -0
  189. package/dist/components/Common/HamburgerMenu/HamburgerMenu.d.ts +2 -0
  190. package/dist/components/Common/HamburgerMenu/HamburgerMenu.js +40 -0
  191. package/dist/components/Common/HamburgerMenu/HamburgerMenu.js.map +1 -0
  192. package/dist/components/Common/HamburgerMenu/HamburgerMenuTypes.d.ts +9 -0
  193. package/dist/components/Common/HamburgerMenu/index.d.ts +1 -0
  194. package/dist/components/Common/HorizontalFieldLayout/HorizontalFieldLayout.d.ts +2 -0
  195. package/dist/components/Common/HorizontalFieldLayout/HorizontalFieldLayout.js +45 -0
  196. package/dist/components/Common/HorizontalFieldLayout/HorizontalFieldLayout.js.map +1 -0
  197. package/dist/components/Common/HorizontalFieldLayout/HorizontalFieldLayout.module.scss.js +20 -0
  198. package/dist/components/Common/HorizontalFieldLayout/HorizontalFieldLayout.module.scss.js.map +1 -0
  199. package/dist/components/Common/HorizontalFieldLayout/HorizontalFieldLayoutTypes.d.ts +3 -0
  200. package/dist/components/Common/HorizontalFieldLayout/index.d.ts +1 -0
  201. package/dist/components/Common/InternalError/InternalError.d.ts +2 -0
  202. package/dist/components/Common/InternalError/InternalError.js +26 -0
  203. package/dist/components/Common/InternalError/InternalError.js.map +1 -0
  204. package/dist/components/Common/InternalError/InternalError.module.scss.js +12 -0
  205. package/dist/components/Common/InternalError/InternalError.module.scss.js.map +1 -0
  206. package/dist/components/Common/Loading/Loading.d.ts +1 -0
  207. package/dist/components/Common/Loading/Loading.js +22 -0
  208. package/dist/components/Common/Loading/Loading.js.map +1 -0
  209. package/dist/components/Common/Loading/Loading.module.scss.js +12 -0
  210. package/dist/components/Common/Loading/Loading.module.scss.js.map +1 -0
  211. package/dist/components/Common/PaginationControl/PaginationControl.d.ts +2 -0
  212. package/dist/components/Common/PaginationControl/PaginationControl.js +86 -0
  213. package/dist/components/Common/PaginationControl/PaginationControl.js.map +1 -0
  214. package/dist/components/Common/PaginationControl/PaginationControl.module.scss.js +12 -0
  215. package/dist/components/Common/PaginationControl/PaginationControl.module.scss.js.map +1 -0
  216. package/dist/components/Common/PaginationControl/PaginationControlTypes.d.ts +9 -0
  217. package/dist/components/Common/PaginationControl/index.d.ts +2 -0
  218. package/dist/components/Common/ReorderableList/DropZone.d.ts +11 -0
  219. package/dist/components/Common/ReorderableList/DropZone.js +62 -0
  220. package/dist/components/Common/ReorderableList/DropZone.js.map +1 -0
  221. package/dist/components/Common/ReorderableList/ReorderableItem.d.ts +28 -0
  222. package/dist/components/Common/ReorderableList/ReorderableItem.js +139 -0
  223. package/dist/components/Common/ReorderableList/ReorderableItem.js.map +1 -0
  224. package/dist/components/Common/ReorderableList/ReorderableList.d.ts +25 -0
  225. package/dist/components/Common/ReorderableList/ReorderableList.js +192 -0
  226. package/dist/components/Common/ReorderableList/ReorderableList.js.map +1 -0
  227. package/dist/components/Common/ReorderableList/ReorderableList.module.scss.js +28 -0
  228. package/dist/components/Common/ReorderableList/ReorderableList.module.scss.js.map +1 -0
  229. package/dist/components/Common/ReorderableList/ReorderableListTypes.d.ts +6 -0
  230. package/dist/components/Common/ReorderableList/constants.d.ts +4 -0
  231. package/dist/components/Common/ReorderableList/constants.js +5 -0
  232. package/dist/components/Common/ReorderableList/constants.js.map +1 -0
  233. package/dist/components/Common/ReorderableList/index.d.ts +2 -0
  234. package/dist/components/Common/RequirementsList/RequirementsList.d.ts +9 -0
  235. package/dist/components/Common/RequirementsList/RequirementsList.js +21 -0
  236. package/dist/components/Common/RequirementsList/RequirementsList.js.map +1 -0
  237. package/dist/components/Common/RequirementsList/RequirementsList.module.scss.js +14 -0
  238. package/dist/components/Common/RequirementsList/RequirementsList.module.scss.js.map +1 -0
  239. package/dist/components/Common/SignatureForm/SignatureForm.d.ts +20 -0
  240. package/dist/components/Common/SignatureForm/SignatureForm.js +26 -0
  241. package/dist/components/Common/SignatureForm/SignatureForm.js.map +1 -0
  242. package/dist/components/Common/SignatureForm/SignatureForm.module.scss.js +10 -0
  243. package/dist/components/Common/SignatureForm/SignatureForm.module.scss.js.map +1 -0
  244. package/dist/components/Common/SignatureForm/SignatureFormActions.d.ts +8 -0
  245. package/dist/components/Common/SignatureForm/SignatureFormActions.js +19 -0
  246. package/dist/components/Common/SignatureForm/SignatureFormActions.js.map +1 -0
  247. package/dist/components/Common/SignatureForm/SignatureFormFields.d.ts +9 -0
  248. package/dist/components/Common/SignatureForm/SignatureFormFields.js +36 -0
  249. package/dist/components/Common/SignatureForm/SignatureFormFields.js.map +1 -0
  250. package/dist/components/Common/SignatureForm/index.d.ts +4 -0
  251. package/dist/components/Common/TaxInputs/TaxInputs.d.ts +25 -0
  252. package/dist/components/Common/TaxInputs/TaxInputs.js +144 -0
  253. package/dist/components/Common/TaxInputs/TaxInputs.js.map +1 -0
  254. package/dist/components/Common/TaxInputs/index.d.ts +1 -0
  255. package/dist/components/Common/Toast/Toast.d.ts +4 -0
  256. package/dist/components/Common/UI/Alert/Alert.d.ts +2 -0
  257. package/dist/components/Common/UI/Alert/Alert.js +32 -0
  258. package/dist/components/Common/UI/Alert/Alert.js.map +1 -0
  259. package/dist/components/Common/UI/Alert/Alert.module.scss.js +14 -0
  260. package/dist/components/Common/UI/Alert/Alert.module.scss.js.map +1 -0
  261. package/dist/components/Common/UI/Alert/AlertTypes.d.ts +23 -0
  262. package/dist/components/Common/UI/Alert/index.d.ts +1 -0
  263. package/dist/components/Common/UI/Badge/Badge.d.ts +3 -0
  264. package/dist/components/Common/UI/Badge/Badge.js +13 -0
  265. package/dist/components/Common/UI/Badge/Badge.js.map +1 -0
  266. package/dist/components/Common/UI/Badge/Badge.module.scss.js +8 -0
  267. package/dist/components/Common/UI/Badge/Badge.module.scss.js.map +1 -0
  268. package/dist/components/Common/UI/Badge/BadgeTypes.d.ts +11 -0
  269. package/dist/components/Common/UI/Button/Button.d.ts +2 -0
  270. package/dist/components/Common/UI/Button/Button.js +40 -0
  271. package/dist/components/Common/UI/Button/Button.js.map +1 -0
  272. package/dist/components/Common/UI/Button/Button.module.scss.js +8 -0
  273. package/dist/components/Common/UI/Button/Button.module.scss.js.map +1 -0
  274. package/dist/components/Common/UI/Button/ButtonIcon.d.ts +2 -0
  275. package/dist/components/Common/UI/Button/ButtonIcon.js +9 -0
  276. package/dist/components/Common/UI/Button/ButtonIcon.js.map +1 -0
  277. package/dist/components/Common/UI/Button/ButtonTypes.d.ts +41 -0
  278. package/dist/components/Common/UI/Button/index.d.ts +3 -0
  279. package/dist/components/Common/UI/CalendarPreview/CalendarLegend.d.ts +3 -0
  280. package/dist/components/Common/UI/CalendarPreview/CalendarLegend.js +37 -0
  281. package/dist/components/Common/UI/CalendarPreview/CalendarLegend.js.map +1 -0
  282. package/dist/components/Common/UI/CalendarPreview/CalendarPreview.d.ts +2 -0
  283. package/dist/components/Common/UI/CalendarPreview/CalendarPreview.js +64 -0
  284. package/dist/components/Common/UI/CalendarPreview/CalendarPreview.js.map +1 -0
  285. package/dist/components/Common/UI/CalendarPreview/CalendarPreview.module.scss.js +14 -0
  286. package/dist/components/Common/UI/CalendarPreview/CalendarPreview.module.scss.js.map +1 -0
  287. package/dist/components/Common/UI/CalendarPreview/CalendarPreviewTypes.d.ts +36 -0
  288. package/dist/components/Common/UI/CalendarPreview/index.d.ts +3 -0
  289. package/dist/components/Common/UI/Card/Card.d.ts +2 -0
  290. package/dist/components/Common/UI/Card/Card.js +25 -0
  291. package/dist/components/Common/UI/Card/Card.js.map +1 -0
  292. package/dist/components/Common/UI/Card/Card.module.scss.js +8 -0
  293. package/dist/components/Common/UI/Card/Card.module.scss.js.map +1 -0
  294. package/dist/components/Common/UI/Card/CardTypes.d.ts +19 -0
  295. package/dist/components/Common/UI/Checkbox/Checkbox.d.ts +2 -0
  296. package/dist/components/Common/UI/Checkbox/Checkbox.js +68 -0
  297. package/dist/components/Common/UI/Checkbox/Checkbox.js.map +1 -0
  298. package/dist/components/Common/UI/Checkbox/Checkbox.module.scss.js +14 -0
  299. package/dist/components/Common/UI/Checkbox/Checkbox.module.scss.js.map +1 -0
  300. package/dist/components/Common/UI/Checkbox/CheckboxTypes.d.ts +24 -0
  301. package/dist/components/Common/UI/Checkbox/index.d.ts +1 -0
  302. package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.d.ts +2 -0
  303. package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.js +105 -0
  304. package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.js.map +1 -0
  305. package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.module.scss.js +8 -0
  306. package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.module.scss.js.map +1 -0
  307. package/dist/components/Common/UI/CheckboxGroup/CheckboxGroupTypes.d.ts +46 -0
  308. package/dist/components/Common/UI/CheckboxGroup/index.d.ts +1 -0
  309. package/dist/components/Common/UI/ComboBox/ComboBox.d.ts +2 -0
  310. package/dist/components/Common/UI/ComboBox/ComboBox.js +90 -0
  311. package/dist/components/Common/UI/ComboBox/ComboBox.js.map +1 -0
  312. package/dist/components/Common/UI/ComboBox/ComboBox.module.scss.js +12 -0
  313. package/dist/components/Common/UI/ComboBox/ComboBox.module.scss.js.map +1 -0
  314. package/dist/components/Common/UI/ComboBox/ComboBoxTypes.d.ts +46 -0
  315. package/dist/components/Common/UI/DatePicker/DatePicker.d.ts +2 -0
  316. package/dist/components/Common/UI/DatePicker/DatePicker.js +102 -0
  317. package/dist/components/Common/UI/DatePicker/DatePicker.js.map +1 -0
  318. package/dist/components/Common/UI/DatePicker/DatePicker.module.scss.js +14 -0
  319. package/dist/components/Common/UI/DatePicker/DatePicker.module.scss.js.map +1 -0
  320. package/dist/components/Common/UI/DatePicker/DatePickerTypes.d.ts +36 -0
  321. package/dist/components/Common/UI/DatePicker/index.d.ts +1 -0
  322. package/dist/components/Common/UI/Heading/Heading.d.ts +2 -0
  323. package/dist/components/Common/UI/Heading/Heading.js +28 -0
  324. package/dist/components/Common/UI/Heading/Heading.js.map +1 -0
  325. package/dist/components/Common/UI/Heading/Heading.module.scss.js +23 -0
  326. package/dist/components/Common/UI/Heading/Heading.module.scss.js.map +1 -0
  327. package/dist/components/Common/UI/Heading/HeadingTypes.d.ts +19 -0
  328. package/dist/components/Common/UI/Heading/index.d.ts +2 -0
  329. package/dist/components/Common/UI/Input/Input.d.ts +2 -0
  330. package/dist/components/Common/UI/Input/Input.js +41 -0
  331. package/dist/components/Common/UI/Input/Input.js.map +1 -0
  332. package/dist/components/Common/UI/Input/Input.module.scss.js +20 -0
  333. package/dist/components/Common/UI/Input/Input.module.scss.js.map +1 -0
  334. package/dist/components/Common/UI/Input/InputTypes.d.ts +19 -0
  335. package/dist/components/Common/UI/Input/index.d.ts +2 -0
  336. package/dist/components/Common/UI/Link/Link.d.ts +2 -0
  337. package/dist/components/Common/UI/Link/Link.js +11 -0
  338. package/dist/components/Common/UI/Link/Link.js.map +1 -0
  339. package/dist/components/Common/UI/Link/Link.module.scss.js +8 -0
  340. package/dist/components/Common/UI/Link/Link.module.scss.js.map +1 -0
  341. package/dist/components/Common/UI/Link/LinkTypes.d.ts +54 -0
  342. package/dist/components/Common/UI/Link/index.d.ts +1 -0
  343. package/dist/components/Common/UI/List/List.module.scss.js +10 -0
  344. package/dist/components/Common/UI/List/List.module.scss.js.map +1 -0
  345. package/dist/components/Common/UI/List/ListTypes.d.ts +25 -0
  346. package/dist/components/Common/UI/List/OrderedList.d.ts +2 -0
  347. package/dist/components/Common/UI/List/OrderedList.js +13 -0
  348. package/dist/components/Common/UI/List/OrderedList.js.map +1 -0
  349. package/dist/components/Common/UI/List/UnorderedList.d.ts +2 -0
  350. package/dist/components/Common/UI/List/UnorderedList.js +13 -0
  351. package/dist/components/Common/UI/List/UnorderedList.js.map +1 -0
  352. package/dist/components/Common/UI/List/index.d.ts +3 -0
  353. package/dist/components/Common/UI/Menu/Menu.d.ts +2 -0
  354. package/dist/components/Common/UI/Menu/Menu.js +52 -0
  355. package/dist/components/Common/UI/Menu/Menu.js.map +1 -0
  356. package/dist/components/Common/UI/Menu/Menu.module.scss.js +12 -0
  357. package/dist/components/Common/UI/Menu/Menu.module.scss.js.map +1 -0
  358. package/dist/components/Common/UI/Menu/MenuTypes.d.ts +46 -0
  359. package/dist/components/Common/UI/Menu/index.d.ts +1 -0
  360. package/dist/components/Common/UI/NumberInput/NumberInput.d.ts +2 -0
  361. package/dist/components/Common/UI/NumberInput/NumberInput.js +99 -0
  362. package/dist/components/Common/UI/NumberInput/NumberInput.js.map +1 -0
  363. package/dist/components/Common/UI/NumberInput/NumberInput.module.scss.js +8 -0
  364. package/dist/components/Common/UI/NumberInput/NumberInput.module.scss.js.map +1 -0
  365. package/dist/components/Common/UI/NumberInput/NumberInputTypes.d.ts +49 -0
  366. package/dist/components/Common/UI/NumberInput/index.d.ts +1 -0
  367. package/dist/components/Common/UI/ProgressBar/ProgressBar.d.ts +2 -0
  368. package/dist/components/Common/UI/ProgressBar/ProgressBar.js +14 -0
  369. package/dist/components/Common/UI/ProgressBar/ProgressBar.js.map +1 -0
  370. package/dist/components/Common/UI/ProgressBar/ProgressBar.module.scss.js +8 -0
  371. package/dist/components/Common/UI/ProgressBar/ProgressBar.module.scss.js.map +1 -0
  372. package/dist/components/Common/UI/ProgressBar/ProgressBarTypes.d.ts +18 -0
  373. package/dist/components/Common/UI/ProgressBar/index.d.ts +2 -0
  374. package/dist/components/Common/UI/Radio/Radio.d.ts +2 -0
  375. package/dist/components/Common/UI/Radio/Radio.js +67 -0
  376. package/dist/components/Common/UI/Radio/Radio.js.map +1 -0
  377. package/dist/components/Common/UI/Radio/Radio.module.scss.js +16 -0
  378. package/dist/components/Common/UI/Radio/Radio.module.scss.js.map +1 -0
  379. package/dist/components/Common/UI/Radio/RadioTypes.d.ts +24 -0
  380. package/dist/components/Common/UI/Radio/index.d.ts +1 -0
  381. package/dist/components/Common/UI/RadioGroup/RadioGroup.d.ts +2 -0
  382. package/dist/components/Common/UI/RadioGroup/RadioGroup.js +103 -0
  383. package/dist/components/Common/UI/RadioGroup/RadioGroup.js.map +1 -0
  384. package/dist/components/Common/UI/RadioGroup/RadioGroup.module.scss.js +8 -0
  385. package/dist/components/Common/UI/RadioGroup/RadioGroup.module.scss.js.map +1 -0
  386. package/dist/components/Common/UI/RadioGroup/RadioGroupTypes.d.ts +46 -0
  387. package/dist/components/Common/UI/RadioGroup/index.d.ts +1 -0
  388. package/dist/components/Common/UI/Select/Select.d.ts +2 -0
  389. package/dist/components/Common/UI/Select/Select.js +91 -0
  390. package/dist/components/Common/UI/Select/Select.js.map +1 -0
  391. package/dist/components/Common/UI/Select/Select.module.scss.js +12 -0
  392. package/dist/components/Common/UI/Select/Select.module.scss.js.map +1 -0
  393. package/dist/components/Common/UI/Select/SelectTypes.d.ts +50 -0
  394. package/dist/components/Common/UI/Select/index.d.ts +1 -0
  395. package/dist/components/Common/UI/Switch/Switch.d.ts +2 -0
  396. package/dist/components/Common/UI/Switch/Switch.js +65 -0
  397. package/dist/components/Common/UI/Switch/Switch.js.map +1 -0
  398. package/dist/components/Common/UI/Switch/Switch.module.scss.js +12 -0
  399. package/dist/components/Common/UI/Switch/Switch.module.scss.js.map +1 -0
  400. package/dist/components/Common/UI/Switch/SwitchTypes.d.ts +36 -0
  401. package/dist/components/Common/UI/Switch/index.d.ts +1 -0
  402. package/dist/components/Common/UI/Table/Table.d.ts +2 -0
  403. package/dist/components/Common/UI/Table/Table.js +14 -0
  404. package/dist/components/Common/UI/Table/Table.js.map +1 -0
  405. package/dist/components/Common/UI/Table/Table.module.scss.js +8 -0
  406. package/dist/components/Common/UI/Table/Table.module.scss.js.map +1 -0
  407. package/dist/components/Common/UI/Table/TableTypes.d.ts +35 -0
  408. package/dist/components/Common/UI/Table/index.d.ts +2 -0
  409. package/dist/components/Common/UI/Text/Text.d.ts +2 -0
  410. package/dist/components/Common/UI/Text/Text.js +29 -0
  411. package/dist/components/Common/UI/Text/Text.js.map +1 -0
  412. package/dist/components/Common/UI/Text/Text.module.scss.js +26 -0
  413. package/dist/components/Common/UI/Text/Text.module.scss.js.map +1 -0
  414. package/dist/components/Common/UI/Text/TextTypes.d.ts +27 -0
  415. package/dist/components/Common/UI/Text/index.d.ts +2 -0
  416. package/dist/components/Common/UI/TextInput/TextInput.d.ts +2 -0
  417. package/dist/components/Common/UI/TextInput/TextInput.js +71 -0
  418. package/dist/components/Common/UI/TextInput/TextInput.js.map +1 -0
  419. package/dist/components/Common/UI/TextInput/TextInputTypes.d.ts +33 -0
  420. package/dist/components/Common/UI/TextInput/index.d.ts +1 -0
  421. package/dist/components/Common/UI/hooks/useFieldIds.d.ts +14 -0
  422. package/dist/components/Common/UI/hooks/useFieldIds.js +20 -0
  423. package/dist/components/Common/UI/hooks/useFieldIds.js.map +1 -0
  424. package/dist/components/Common/UI/hooks/useFieldIds.test.d.ts +1 -0
  425. package/dist/components/Common/VisuallyHidden/VisuallyHidden.d.ts +13 -0
  426. package/dist/components/Common/VisuallyHidden/VisuallyHidden.js +15 -0
  427. package/dist/components/Common/VisuallyHidden/VisuallyHidden.js.map +1 -0
  428. package/dist/components/Common/VisuallyHidden/VisuallyHidden.module.scss.js +8 -0
  429. package/dist/components/Common/VisuallyHidden/VisuallyHidden.module.scss.js.map +1 -0
  430. package/dist/components/Common/VisuallyHidden/index.d.ts +2 -0
  431. package/dist/components/Common/hooks/useAsyncError.d.ts +5 -0
  432. package/dist/components/Common/hooks/useAsyncError.js +17 -0
  433. package/dist/components/Common/hooks/useAsyncError.js.map +1 -0
  434. package/dist/components/Common/hooks/useMenu.d.ts +13 -0
  435. package/dist/components/Common/hooks/useMenu.js +25 -0
  436. package/dist/components/Common/hooks/useMenu.js.map +1 -0
  437. package/dist/components/Common/hooks/useNumberFormatter.d.ts +3 -0
  438. package/dist/components/Common/hooks/useNumberFormatter.js +16 -0
  439. package/dist/components/Common/hooks/useNumberFormatter.js.map +1 -0
  440. package/dist/components/Common/index.d.ts +23 -0
  441. package/dist/components/Company/AssignSignatory/AssignSignatory.d.ts +14 -0
  442. package/dist/components/Company/AssignSignatory/AssignSignatory.js +65 -0
  443. package/dist/components/Company/AssignSignatory/AssignSignatory.js.map +1 -0
  444. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.d.ts +1 -0
  445. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js +31 -0
  446. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js.map +1 -0
  447. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.module.scss.js +8 -0
  448. package/dist/components/Company/AssignSignatory/AssignSignatorySelection.module.scss.js.map +1 -0
  449. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.d.ts +1 -0
  450. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js +13 -0
  451. package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js.map +1 -0
  452. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.d.ts +13 -0
  453. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js +120 -0
  454. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js.map +1 -0
  455. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.module.scss.js +8 -0
  456. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.module.scss.js.map +1 -0
  457. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.d.ts +4 -0
  458. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js +139 -0
  459. package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js.map +1 -0
  460. package/dist/components/Company/AssignSignatory/CreateSignatory/Schema.d.ts +41 -0
  461. package/dist/components/Company/AssignSignatory/CreateSignatory/Schema.js +21 -0
  462. package/dist/components/Company/AssignSignatory/CreateSignatory/Schema.js.map +1 -0
  463. package/dist/components/Company/AssignSignatory/CreateSignatory/index.d.ts +2 -0
  464. package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.d.ts +11 -0
  465. package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js +17 -0
  466. package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js.map +1 -0
  467. package/dist/components/Company/AssignSignatory/Head.d.ts +1 -0
  468. package/dist/components/Company/AssignSignatory/Head.js +14 -0
  469. package/dist/components/Company/AssignSignatory/Head.js.map +1 -0
  470. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.d.ts +1 -0
  471. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js +13 -0
  472. package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js.map +1 -0
  473. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.d.ts +12 -0
  474. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js +72 -0
  475. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js.map +1 -0
  476. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.module.scss.js +8 -0
  477. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.module.scss.js.map +1 -0
  478. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.d.ts +34 -0
  479. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js +80 -0
  480. package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js.map +1 -0
  481. package/dist/components/Company/AssignSignatory/InviteSignatory/index.d.ts +2 -0
  482. package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.d.ts +10 -0
  483. package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js +17 -0
  484. package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js.map +1 -0
  485. package/dist/components/Company/AssignSignatory/SignatoryForm.d.ts +1 -0
  486. package/dist/components/Company/AssignSignatory/SignatoryForm.js +28 -0
  487. package/dist/components/Company/AssignSignatory/SignatoryForm.js.map +1 -0
  488. package/dist/components/Company/AssignSignatory/TitleSelect.d.ts +2 -0
  489. package/dist/components/Company/AssignSignatory/TitleSelect.js +25 -0
  490. package/dist/components/Company/AssignSignatory/TitleSelect.js.map +1 -0
  491. package/dist/components/Company/AssignSignatory/index.d.ts +6 -0
  492. package/dist/components/Company/AssignSignatory/useAssignSignatory.d.ts +21 -0
  493. package/dist/components/Company/AssignSignatory/useAssignSignatory.js +21 -0
  494. package/dist/components/Company/AssignSignatory/useAssignSignatory.js.map +1 -0
  495. package/dist/components/Company/BankAccount/BankAccountComponents.d.ts +16 -0
  496. package/dist/components/Company/BankAccount/BankAccountComponents.js +38 -0
  497. package/dist/components/Company/BankAccount/BankAccountComponents.js.map +1 -0
  498. package/dist/components/Company/BankAccount/BankAccountFlow.d.ts +5 -0
  499. package/dist/components/Company/BankAccount/BankAccountFlow.js +24 -0
  500. package/dist/components/Company/BankAccount/BankAccountFlow.js.map +1 -0
  501. package/dist/components/Company/BankAccount/BankAccountForm/Actions.d.ts +1 -0
  502. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js +13 -0
  503. package/dist/components/Company/BankAccount/BankAccountForm/Actions.js.map +1 -0
  504. package/dist/components/Company/BankAccount/BankAccountForm/BankAccountForm.d.ts +11 -0
  505. package/dist/components/Company/BankAccount/BankAccountForm/BankAccountForm.js +44 -0
  506. package/dist/components/Company/BankAccount/BankAccountForm/BankAccountForm.js.map +1 -0
  507. package/dist/components/Company/BankAccount/BankAccountForm/Form.d.ts +13 -0
  508. package/dist/components/Company/BankAccount/BankAccountForm/Form.js +39 -0
  509. package/dist/components/Company/BankAccount/BankAccountForm/Form.js.map +1 -0
  510. package/dist/components/Company/BankAccount/BankAccountForm/Head.d.ts +1 -0
  511. package/dist/components/Company/BankAccount/BankAccountForm/Head.js +14 -0
  512. package/dist/components/Company/BankAccount/BankAccountForm/Head.js.map +1 -0
  513. package/dist/components/Company/BankAccount/BankAccountForm/context.d.ts +5 -0
  514. package/dist/components/Company/BankAccount/BankAccountForm/context.js +17 -0
  515. package/dist/components/Company/BankAccount/BankAccountForm/context.js.map +1 -0
  516. package/dist/components/Company/BankAccount/BankAccountList/AccountView.d.ts +1 -0
  517. package/dist/components/Company/BankAccount/BankAccountList/AccountView.js +20 -0
  518. package/dist/components/Company/BankAccount/BankAccountList/AccountView.js.map +1 -0
  519. package/dist/components/Company/BankAccount/BankAccountList/Actions.d.ts +1 -0
  520. package/dist/components/Company/BankAccount/BankAccountList/Actions.js +16 -0
  521. package/dist/components/Company/BankAccount/BankAccountList/Actions.js.map +1 -0
  522. package/dist/components/Company/BankAccount/BankAccountList/BankAccountList.d.ts +12 -0
  523. package/dist/components/Company/BankAccount/BankAccountList/BankAccountList.js +55 -0
  524. package/dist/components/Company/BankAccount/BankAccountList/BankAccountList.js.map +1 -0
  525. package/dist/components/Company/BankAccount/BankAccountList/Head.d.ts +1 -0
  526. package/dist/components/Company/BankAccount/BankAccountList/Head.js +44 -0
  527. package/dist/components/Company/BankAccount/BankAccountList/Head.js.map +1 -0
  528. package/dist/components/Company/BankAccount/BankAccountList/context.d.ts +10 -0
  529. package/dist/components/Company/BankAccount/BankAccountList/context.js +7 -0
  530. package/dist/components/Company/BankAccount/BankAccountList/context.js.map +1 -0
  531. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.d.ts +1 -0
  532. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js +33 -0
  533. package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js.map +1 -0
  534. package/dist/components/Company/BankAccount/BankAccountVerify/BankAccountVerify.d.ts +12 -0
  535. package/dist/components/Company/BankAccount/BankAccountVerify/BankAccountVerify.js +54 -0
  536. package/dist/components/Company/BankAccount/BankAccountVerify/BankAccountVerify.js.map +1 -0
  537. package/dist/components/Company/BankAccount/BankAccountVerify/Form.d.ts +13 -0
  538. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js +41 -0
  539. package/dist/components/Company/BankAccount/BankAccountVerify/Form.js.map +1 -0
  540. package/dist/components/Company/BankAccount/BankAccountVerify/Head.d.ts +1 -0
  541. package/dist/components/Company/BankAccount/BankAccountVerify/Head.js +14 -0
  542. package/dist/components/Company/BankAccount/BankAccountVerify/Head.js.map +1 -0
  543. package/dist/components/Company/BankAccount/BankAccountVerify/context.d.ts +6 -0
  544. package/dist/components/Company/BankAccount/BankAccountVerify/context.js +7 -0
  545. package/dist/components/Company/BankAccount/BankAccountVerify/context.js.map +1 -0
  546. package/dist/components/Company/BankAccount/stateMachine.d.ts +6 -0
  547. package/dist/components/Company/BankAccount/stateMachine.js +66 -0
  548. package/dist/components/Company/BankAccount/stateMachine.js.map +1 -0
  549. package/dist/components/Company/DocumentSignerFlow/DocumentList/Actions.d.ts +5 -0
  550. package/dist/components/Company/DocumentSignerFlow/DocumentList/Actions.js +13 -0
  551. package/dist/components/Company/DocumentSignerFlow/DocumentList/Actions.js.map +1 -0
  552. package/dist/components/Company/DocumentSignerFlow/DocumentList/DocumentList.d.ts +13 -0
  553. package/dist/components/Company/DocumentSignerFlow/DocumentList/DocumentList.js +69 -0
  554. package/dist/components/Company/DocumentSignerFlow/DocumentList/DocumentList.js.map +1 -0
  555. package/dist/components/Company/DocumentSignerFlow/DocumentList/Head.d.ts +1 -0
  556. package/dist/components/Company/DocumentSignerFlow/DocumentList/Head.js +11 -0
  557. package/dist/components/Company/DocumentSignerFlow/DocumentList/Head.js.map +1 -0
  558. package/dist/components/Company/DocumentSignerFlow/DocumentList/List.d.ts +2 -0
  559. package/dist/components/Company/DocumentSignerFlow/DocumentList/List.js +40 -0
  560. package/dist/components/Company/DocumentSignerFlow/DocumentList/List.js.map +1 -0
  561. package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.d.ts +1 -0
  562. package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.js +35 -0
  563. package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.js.map +1 -0
  564. package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.module.scss.js +8 -0
  565. package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.module.scss.js.map +1 -0
  566. package/dist/components/Company/DocumentSignerFlow/DocumentList/index.d.ts +1 -0
  567. package/dist/components/Company/DocumentSignerFlow/DocumentList/useDocumentList.d.ts +13 -0
  568. package/dist/components/Company/DocumentSignerFlow/DocumentList/useDocumentList.js +19 -0
  569. package/dist/components/Company/DocumentSignerFlow/DocumentList/useDocumentList.js.map +1 -0
  570. package/dist/components/Company/DocumentSignerFlow/DocumentSignerFlow.d.ts +6 -0
  571. package/dist/components/Company/DocumentSignerFlow/DocumentSignerFlow.js +35 -0
  572. package/dist/components/Company/DocumentSignerFlow/DocumentSignerFlow.js.map +1 -0
  573. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Actions.d.ts +1 -0
  574. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Actions.js +20 -0
  575. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Actions.js.map +1 -0
  576. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Form.d.ts +1 -0
  577. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Form.js +20 -0
  578. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Form.js.map +1 -0
  579. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Head.d.ts +1 -0
  580. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Head.js +35 -0
  581. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Head.js.map +1 -0
  582. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Preview.d.ts +1 -0
  583. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Preview.js +20 -0
  584. package/dist/components/Company/DocumentSignerFlow/SignatureForm/Preview.js.map +1 -0
  585. package/dist/components/Company/DocumentSignerFlow/SignatureForm/SignatureForm.d.ts +17 -0
  586. package/dist/components/Company/DocumentSignerFlow/SignatureForm/SignatureForm.js +78 -0
  587. package/dist/components/Company/DocumentSignerFlow/SignatureForm/SignatureForm.js.map +1 -0
  588. package/dist/components/Company/DocumentSignerFlow/SignatureForm/index.d.ts +1 -0
  589. package/dist/components/Company/DocumentSignerFlow/SignatureForm/useSignatureForm.d.ts +9 -0
  590. package/dist/components/Company/DocumentSignerFlow/SignatureForm/useSignatureForm.js +19 -0
  591. package/dist/components/Company/DocumentSignerFlow/SignatureForm/useSignatureForm.js.map +1 -0
  592. package/dist/components/Company/DocumentSignerFlow/assignSignatoryState.d.ts +1 -0
  593. package/dist/components/Company/DocumentSignerFlow/assignSignatoryState.js +41 -0
  594. package/dist/components/Company/DocumentSignerFlow/assignSignatoryState.js.map +1 -0
  595. package/dist/components/Company/DocumentSignerFlow/documentSignerStateMachine.d.ts +11 -0
  596. package/dist/components/Company/DocumentSignerFlow/documentSignerStateMachine.js +45 -0
  597. package/dist/components/Company/DocumentSignerFlow/documentSignerStateMachine.js.map +1 -0
  598. package/dist/components/Company/DocumentSignerFlow/index.d.ts +1 -0
  599. package/dist/components/Company/DocumentSignerFlow/stateMachine.d.ts +7 -0
  600. package/dist/components/Company/DocumentSignerFlow/stateMachine.js +59 -0
  601. package/dist/components/Company/DocumentSignerFlow/stateMachine.js.map +1 -0
  602. package/dist/components/Company/DocumentSignerFlow/useDocumentSignerFlow.d.ts +6 -0
  603. package/dist/components/Company/FederalTaxes/Actions.d.ts +1 -0
  604. package/dist/components/Company/FederalTaxes/Actions.js +13 -0
  605. package/dist/components/Company/FederalTaxes/Actions.js.map +1 -0
  606. package/dist/components/Company/FederalTaxes/FederalTaxes.d.ts +11 -0
  607. package/dist/components/Company/FederalTaxes/FederalTaxes.js +67 -0
  608. package/dist/components/Company/FederalTaxes/FederalTaxes.js.map +1 -0
  609. package/dist/components/Company/FederalTaxes/Form.d.ts +1 -0
  610. package/dist/components/Company/FederalTaxes/Form.js +104 -0
  611. package/dist/components/Company/FederalTaxes/Form.js.map +1 -0
  612. package/dist/components/Company/FederalTaxes/Head.d.ts +1 -0
  613. package/dist/components/Company/FederalTaxes/Head.js +30 -0
  614. package/dist/components/Company/FederalTaxes/Head.js.map +1 -0
  615. package/dist/components/Company/FederalTaxes/index.d.ts +1 -0
  616. package/dist/components/Company/FederalTaxes/useFederalTaxes.d.ts +31 -0
  617. package/dist/components/Company/FederalTaxes/useFederalTaxes.js +27 -0
  618. package/dist/components/Company/FederalTaxes/useFederalTaxes.js.map +1 -0
  619. package/dist/components/Company/Industry/Actions.d.ts +1 -0
  620. package/dist/components/Company/Industry/Actions.js +13 -0
  621. package/dist/components/Company/Industry/Actions.js.map +1 -0
  622. package/dist/components/Company/Industry/Context.d.ts +12 -0
  623. package/dist/components/Company/Industry/Context.js +23 -0
  624. package/dist/components/Company/Industry/Context.js.map +1 -0
  625. package/dist/components/Company/Industry/Edit.d.ts +4 -0
  626. package/dist/components/Company/Industry/Edit.js +21 -0
  627. package/dist/components/Company/Industry/Edit.js.map +1 -0
  628. package/dist/components/Company/Industry/Head.d.ts +1 -0
  629. package/dist/components/Company/Industry/Head.js +14 -0
  630. package/dist/components/Company/Industry/Head.js.map +1 -0
  631. package/dist/components/Company/Industry/Industry.d.ts +11 -0
  632. package/dist/components/Company/Industry/Industry.js +40 -0
  633. package/dist/components/Company/Industry/Industry.js.map +1 -0
  634. package/dist/components/Company/Industry/IndustrySelect.d.ts +8 -0
  635. package/dist/components/Company/Industry/IndustrySelect.js +36 -0
  636. package/dist/components/Company/Industry/IndustrySelect.js.map +1 -0
  637. package/dist/components/Company/Industry/index.d.ts +1 -0
  638. package/dist/components/Company/Locations/LocationForm/Actions.d.ts +1 -0
  639. package/dist/components/Company/Locations/LocationForm/Actions.js +16 -0
  640. package/dist/components/Company/Locations/LocationForm/Actions.js.map +1 -0
  641. package/dist/components/Company/Locations/LocationForm/Form.d.ts +28 -0
  642. package/dist/components/Company/Locations/LocationForm/Form.js +110 -0
  643. package/dist/components/Company/Locations/LocationForm/Form.js.map +1 -0
  644. package/dist/components/Company/Locations/LocationForm/Head.d.ts +1 -0
  645. package/dist/components/Company/Locations/LocationForm/Head.js +14 -0
  646. package/dist/components/Company/Locations/LocationForm/Head.js.map +1 -0
  647. package/dist/components/Company/Locations/LocationForm/LocationForm.d.ts +12 -0
  648. package/dist/components/Company/Locations/LocationForm/LocationForm.js +99 -0
  649. package/dist/components/Company/Locations/LocationForm/LocationForm.js.map +1 -0
  650. package/dist/components/Company/Locations/LocationForm/useLocationForm.d.ts +6 -0
  651. package/dist/components/Company/Locations/LocationForm/useLocationForm.js +19 -0
  652. package/dist/components/Company/Locations/LocationForm/useLocationForm.js.map +1 -0
  653. package/dist/components/Company/Locations/LocationsFlow.d.ts +5 -0
  654. package/dist/components/Company/Locations/LocationsFlow.js +21 -0
  655. package/dist/components/Company/Locations/LocationsFlow.js.map +1 -0
  656. package/dist/components/Company/Locations/LocationsList/Actions.d.ts +1 -0
  657. package/dist/components/Company/Locations/LocationsList/Actions.js +16 -0
  658. package/dist/components/Company/Locations/LocationsList/Actions.js.map +1 -0
  659. package/dist/components/Company/Locations/LocationsList/Head.d.ts +1 -0
  660. package/dist/components/Company/Locations/LocationsList/Head.js +14 -0
  661. package/dist/components/Company/Locations/LocationsList/Head.js.map +1 -0
  662. package/dist/components/Company/Locations/LocationsList/List.d.ts +2 -0
  663. package/dist/components/Company/Locations/LocationsList/List.js +78 -0
  664. package/dist/components/Company/Locations/LocationsList/List.js.map +1 -0
  665. package/dist/components/Company/Locations/LocationsList/LocationsList.d.ts +11 -0
  666. package/dist/components/Company/Locations/LocationsList/LocationsList.js +72 -0
  667. package/dist/components/Company/Locations/LocationsList/LocationsList.js.map +1 -0
  668. package/dist/components/Company/Locations/LocationsList/index.d.ts +1 -0
  669. package/dist/components/Company/Locations/LocationsList/useLocationsList.d.ts +16 -0
  670. package/dist/components/Company/Locations/LocationsList/useLocationsList.js +19 -0
  671. package/dist/components/Company/Locations/LocationsList/useLocationsList.js.map +1 -0
  672. package/dist/components/Company/Locations/locationsStateMachine.d.ts +15 -0
  673. package/dist/components/Company/Locations/locationsStateMachine.js +18 -0
  674. package/dist/components/Company/Locations/locationsStateMachine.js.map +1 -0
  675. package/dist/components/Company/Locations/stateMachine.d.ts +6 -0
  676. package/dist/components/Company/Locations/stateMachine.js +61 -0
  677. package/dist/components/Company/Locations/stateMachine.js.map +1 -0
  678. package/dist/components/Company/OnboardingFlow/OnboardingFlow.d.ts +2 -0
  679. package/dist/components/Company/OnboardingFlow/OnboardingFlow.js +26 -0
  680. package/dist/components/Company/OnboardingFlow/OnboardingFlow.js.map +1 -0
  681. package/dist/components/Company/OnboardingFlow/OnboardingFlowComponents.d.ts +26 -0
  682. package/dist/components/Company/OnboardingFlow/OnboardingFlowComponents.js +74 -0
  683. package/dist/components/Company/OnboardingFlow/OnboardingFlowComponents.js.map +1 -0
  684. package/dist/components/Company/OnboardingFlow/onboardingStateMachine.d.ts +12 -0
  685. package/dist/components/Company/OnboardingFlow/onboardingStateMachine.js +83 -0
  686. package/dist/components/Company/OnboardingFlow/onboardingStateMachine.js.map +1 -0
  687. package/dist/components/Company/OnboardingOverview/Completed.d.ts +1 -0
  688. package/dist/components/Company/OnboardingOverview/Completed.js +17 -0
  689. package/dist/components/Company/OnboardingOverview/Completed.js.map +1 -0
  690. package/dist/components/Company/OnboardingOverview/MissingRequirements.d.ts +1 -0
  691. package/dist/components/Company/OnboardingOverview/MissingRequirements.js +32 -0
  692. package/dist/components/Company/OnboardingOverview/MissingRequirements.js.map +1 -0
  693. package/dist/components/Company/OnboardingOverview/OnboardingOverview.d.ts +6 -0
  694. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js +39 -0
  695. package/dist/components/Company/OnboardingOverview/OnboardingOverview.js.map +1 -0
  696. package/dist/components/Company/OnboardingOverview/context.d.ts +9 -0
  697. package/dist/components/Company/OnboardingOverview/context.js +17 -0
  698. package/dist/components/Company/OnboardingOverview/context.js.map +1 -0
  699. package/dist/components/Company/PaySchedule/PaySchedule.d.ts +14 -0
  700. package/dist/components/Company/PaySchedule/PaySchedule.js +168 -0
  701. package/dist/components/Company/PaySchedule/PaySchedule.js.map +1 -0
  702. package/dist/components/Company/PaySchedule/_parts/Actions.d.ts +1 -0
  703. package/dist/components/Company/PaySchedule/_parts/Actions.js +62 -0
  704. package/dist/components/Company/PaySchedule/_parts/Actions.js.map +1 -0
  705. package/dist/components/Company/PaySchedule/_parts/Edit.d.ts +1 -0
  706. package/dist/components/Company/PaySchedule/_parts/Edit.js +115 -0
  707. package/dist/components/Company/PaySchedule/_parts/Edit.js.map +1 -0
  708. package/dist/components/Company/PaySchedule/_parts/Edit.module.scss.js +14 -0
  709. package/dist/components/Company/PaySchedule/_parts/Edit.module.scss.js.map +1 -0
  710. package/dist/components/Company/PaySchedule/_parts/Head.d.ts +1 -0
  711. package/dist/components/Company/PaySchedule/_parts/Head.js +47 -0
  712. package/dist/components/Company/PaySchedule/_parts/Head.js.map +1 -0
  713. package/dist/components/Company/PaySchedule/_parts/List.d.ts +1 -0
  714. package/dist/components/Company/PaySchedule/_parts/List.js +57 -0
  715. package/dist/components/Company/PaySchedule/_parts/List.js.map +1 -0
  716. package/dist/components/Company/PaySchedule/_parts/List.module.scss.js +8 -0
  717. package/dist/components/Company/PaySchedule/_parts/List.module.scss.js.map +1 -0
  718. package/dist/components/Company/PaySchedule/_parts/index.d.ts +4 -0
  719. package/dist/components/Company/PaySchedule/index.d.ts +1 -0
  720. package/dist/components/Company/PaySchedule/usePaySchedule.d.ts +52 -0
  721. package/dist/components/Company/PaySchedule/usePaySchedule.js +28 -0
  722. package/dist/components/Company/PaySchedule/usePaySchedule.js.map +1 -0
  723. package/dist/components/Company/StateTaxes/StateTaxesFlow.d.ts +5 -0
  724. package/dist/components/Company/StateTaxes/StateTaxesFlow.js +21 -0
  725. package/dist/components/Company/StateTaxes/StateTaxesFlow.js.map +1 -0
  726. package/dist/components/Company/StateTaxes/StateTaxesFlowComponents.d.ts +8 -0
  727. package/dist/components/Company/StateTaxes/StateTaxesFlowComponents.js +25 -0
  728. package/dist/components/Company/StateTaxes/StateTaxesFlowComponents.js.map +1 -0
  729. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.d.ts +1 -0
  730. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js +16 -0
  731. package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js.map +1 -0
  732. package/dist/components/Company/StateTaxes/StateTaxesForm/Form.d.ts +4 -0
  733. package/dist/components/Company/StateTaxes/StateTaxesForm/Form.js +34 -0
  734. package/dist/components/Company/StateTaxes/StateTaxesForm/Form.js.map +1 -0
  735. package/dist/components/Company/StateTaxes/StateTaxesForm/Head.d.ts +1 -0
  736. package/dist/components/Company/StateTaxes/StateTaxesForm/Head.js +12 -0
  737. package/dist/components/Company/StateTaxes/StateTaxesForm/Head.js.map +1 -0
  738. package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.d.ts +12 -0
  739. package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js +100 -0
  740. package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js.map +1 -0
  741. package/dist/components/Company/StateTaxes/StateTaxesForm/context.d.ts +9 -0
  742. package/dist/components/Company/StateTaxes/StateTaxesForm/context.js +17 -0
  743. package/dist/components/Company/StateTaxes/StateTaxesForm/context.js.map +1 -0
  744. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.d.ts +1 -0
  745. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js +13 -0
  746. package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js.map +1 -0
  747. package/dist/components/Company/StateTaxes/StateTaxesList/Head.d.ts +1 -0
  748. package/dist/components/Company/StateTaxes/StateTaxesList/Head.js +11 -0
  749. package/dist/components/Company/StateTaxes/StateTaxesList/Head.js.map +1 -0
  750. package/dist/components/Company/StateTaxes/StateTaxesList/List.d.ts +1 -0
  751. package/dist/components/Company/StateTaxes/StateTaxesList/List.js +40 -0
  752. package/dist/components/Company/StateTaxes/StateTaxesList/List.js.map +1 -0
  753. package/dist/components/Company/StateTaxes/StateTaxesList/StateTaxesList.d.ts +11 -0
  754. package/dist/components/Company/StateTaxes/StateTaxesList/StateTaxesList.js +45 -0
  755. package/dist/components/Company/StateTaxes/StateTaxesList/StateTaxesList.js.map +1 -0
  756. package/dist/components/Company/StateTaxes/StateTaxesList/context.d.ts +9 -0
  757. package/dist/components/Company/StateTaxes/StateTaxesList/context.js +17 -0
  758. package/dist/components/Company/StateTaxes/StateTaxesList/context.js.map +1 -0
  759. package/dist/components/Company/StateTaxes/stateTaxesStateMachine.d.ts +5 -0
  760. package/dist/components/Company/StateTaxes/stateTaxesStateMachine.js +48 -0
  761. package/dist/components/Company/StateTaxes/stateTaxesStateMachine.js.map +1 -0
  762. package/dist/components/Company/index.d.ts +12 -0
  763. package/dist/components/Company/index.js +27 -0
  764. package/dist/components/Company/index.js.map +1 -0
  765. package/dist/components/Employee/Compensation/Actions.d.ts +1 -0
  766. package/dist/components/Employee/Compensation/Actions.js +38 -0
  767. package/dist/components/Employee/Compensation/Actions.js.map +1 -0
  768. package/dist/components/Employee/Compensation/Compensation.d.ts +25 -0
  769. package/dist/components/Employee/Compensation/Compensation.js +207 -0
  770. package/dist/components/Employee/Compensation/Compensation.js.map +1 -0
  771. package/dist/components/Employee/Compensation/Edit.d.ts +5 -0
  772. package/dist/components/Employee/Compensation/Edit.js +166 -0
  773. package/dist/components/Employee/Compensation/Edit.js.map +1 -0
  774. package/dist/components/Employee/Compensation/Head.d.ts +1 -0
  775. package/dist/components/Employee/Compensation/Head.js +22 -0
  776. package/dist/components/Employee/Compensation/Head.js.map +1 -0
  777. package/dist/components/Employee/Compensation/List.d.ts +1 -0
  778. package/dist/components/Employee/Compensation/List.js +71 -0
  779. package/dist/components/Employee/Compensation/List.js.map +1 -0
  780. package/dist/components/Employee/Compensation/index.d.ts +1 -0
  781. package/dist/components/Employee/Compensation/useCompensation.d.ts +116 -0
  782. package/dist/components/Employee/Compensation/useCompensation.js +49 -0
  783. package/dist/components/Employee/Compensation/useCompensation.js.map +1 -0
  784. package/dist/components/Employee/Deductions/Actions.d.ts +1 -0
  785. package/dist/components/Employee/Deductions/Actions.js +25 -0
  786. package/dist/components/Employee/Deductions/Actions.js.map +1 -0
  787. package/dist/components/Employee/Deductions/DeductionForm.d.ts +1 -0
  788. package/dist/components/Employee/Deductions/DeductionForm.js +68 -0
  789. package/dist/components/Employee/Deductions/DeductionForm.js.map +1 -0
  790. package/dist/components/Employee/Deductions/Deductions.d.ts +17 -0
  791. package/dist/components/Employee/Deductions/Deductions.js +155 -0
  792. package/dist/components/Employee/Deductions/Deductions.js.map +1 -0
  793. package/dist/components/Employee/Deductions/DeductionsList.d.ts +2 -0
  794. package/dist/components/Employee/Deductions/DeductionsList.js +58 -0
  795. package/dist/components/Employee/Deductions/DeductionsList.js.map +1 -0
  796. package/dist/components/Employee/Deductions/Head.d.ts +1 -0
  797. package/dist/components/Employee/Deductions/Head.js +13 -0
  798. package/dist/components/Employee/Deductions/Head.js.map +1 -0
  799. package/dist/components/Employee/Deductions/IncludeDeductionsForm.d.ts +1 -0
  800. package/dist/components/Employee/Deductions/IncludeDeductionsForm.js +24 -0
  801. package/dist/components/Employee/Deductions/IncludeDeductionsForm.js.map +1 -0
  802. package/dist/components/Employee/Deductions/index.d.ts +1 -0
  803. package/dist/components/Employee/Deductions/useDeductions.d.ts +49 -0
  804. package/dist/components/Employee/Deductions/useDeductions.js +30 -0
  805. package/dist/components/Employee/Deductions/useDeductions.js.map +1 -0
  806. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.d.ts +1 -0
  807. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js +13 -0
  808. package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js.map +1 -0
  809. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.d.ts +11 -0
  810. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js +46 -0
  811. package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js.map +1 -0
  812. package/dist/components/Employee/DocumentSigner/DocumentList/Head.d.ts +2 -0
  813. package/dist/components/Employee/DocumentSigner/DocumentList/Head.js +11 -0
  814. package/dist/components/Employee/DocumentSigner/DocumentList/Head.js.map +1 -0
  815. package/dist/components/Employee/DocumentSigner/DocumentList/List.d.ts +1 -0
  816. package/dist/components/Employee/DocumentSigner/DocumentList/List.js +37 -0
  817. package/dist/components/Employee/DocumentSigner/DocumentList/List.js.map +1 -0
  818. package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.d.ts +11 -0
  819. package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js +17 -0
  820. package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js.map +1 -0
  821. package/dist/components/Employee/DocumentSigner/DocumentSignerFlow.d.ts +5 -0
  822. package/dist/components/Employee/DocumentSigner/DocumentSignerFlow.js +21 -0
  823. package/dist/components/Employee/DocumentSigner/DocumentSignerFlow.js.map +1 -0
  824. package/dist/components/Employee/DocumentSigner/SignatureForm/Actions.d.ts +1 -0
  825. package/dist/components/Employee/DocumentSigner/SignatureForm/Actions.js +20 -0
  826. package/dist/components/Employee/DocumentSigner/SignatureForm/Actions.js.map +1 -0
  827. package/dist/components/Employee/DocumentSigner/SignatureForm/Form.d.ts +1 -0
  828. package/dist/components/Employee/DocumentSigner/SignatureForm/Form.js +20 -0
  829. package/dist/components/Employee/DocumentSigner/SignatureForm/Form.js.map +1 -0
  830. package/dist/components/Employee/DocumentSigner/SignatureForm/Head.d.ts +1 -0
  831. package/dist/components/Employee/DocumentSigner/SignatureForm/Head.js +35 -0
  832. package/dist/components/Employee/DocumentSigner/SignatureForm/Head.js.map +1 -0
  833. package/dist/components/Employee/DocumentSigner/SignatureForm/Preview.d.ts +1 -0
  834. package/dist/components/Employee/DocumentSigner/SignatureForm/Preview.js +20 -0
  835. package/dist/components/Employee/DocumentSigner/SignatureForm/Preview.js.map +1 -0
  836. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.d.ts +14 -0
  837. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js +73 -0
  838. package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -0
  839. package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.d.ts +9 -0
  840. package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js +17 -0
  841. package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -0
  842. package/dist/components/Employee/DocumentSigner/documentSignerStateMachine.d.ts +16 -0
  843. package/dist/components/Employee/DocumentSigner/documentSignerStateMachine.js +25 -0
  844. package/dist/components/Employee/DocumentSigner/documentSignerStateMachine.js.map +1 -0
  845. package/dist/components/Employee/DocumentSigner/index.d.ts +1 -0
  846. package/dist/components/Employee/DocumentSigner/stateMachine.d.ts +5 -0
  847. package/dist/components/Employee/DocumentSigner/stateMachine.js +48 -0
  848. package/dist/components/Employee/DocumentSigner/stateMachine.js.map +1 -0
  849. package/dist/components/Employee/EmployeeList/Actions.d.ts +1 -0
  850. package/dist/components/Employee/EmployeeList/Actions.js +13 -0
  851. package/dist/components/Employee/EmployeeList/Actions.js.map +1 -0
  852. package/dist/components/Employee/EmployeeList/EmployeeList.d.ts +15 -0
  853. package/dist/components/Employee/EmployeeList/EmployeeList.js +107 -0
  854. package/dist/components/Employee/EmployeeList/EmployeeList.js.map +1 -0
  855. package/dist/components/Employee/EmployeeList/Head.d.ts +1 -0
  856. package/dist/components/Employee/EmployeeList/Head.js +12 -0
  857. package/dist/components/Employee/EmployeeList/Head.js.map +1 -0
  858. package/dist/components/Employee/EmployeeList/List.d.ts +2 -0
  859. package/dist/components/Employee/EmployeeList/List.js +113 -0
  860. package/dist/components/Employee/EmployeeList/List.js.map +1 -0
  861. package/dist/components/Employee/EmployeeList/List.module.scss.js +8 -0
  862. package/dist/components/Employee/EmployeeList/List.module.scss.js.map +1 -0
  863. package/dist/components/Employee/EmployeeList/useEmployeeList.d.ts +19 -0
  864. package/dist/components/Employee/EmployeeList/useEmployeeList.js +17 -0
  865. package/dist/components/Employee/EmployeeList/useEmployeeList.js.map +1 -0
  866. package/dist/components/Employee/Landing/Landing.d.ts +7 -0
  867. package/dist/components/Employee/Landing/Landing.js +53 -0
  868. package/dist/components/Employee/Landing/Landing.js.map +1 -0
  869. package/dist/components/Employee/Landing/Landing.module.scss.js +8 -0
  870. package/dist/components/Employee/Landing/Landing.module.scss.js.map +1 -0
  871. package/dist/components/Employee/Landing/index.d.ts +1 -0
  872. package/dist/components/Employee/OnboardingSummary/OnboardingSummary.d.ts +8 -0
  873. package/dist/components/Employee/OnboardingSummary/OnboardingSummary.js +83 -0
  874. package/dist/components/Employee/OnboardingSummary/OnboardingSummary.js.map +1 -0
  875. package/dist/components/Employee/OnboardingSummary/OnboardingSummary.module.scss.js +16 -0
  876. package/dist/components/Employee/OnboardingSummary/OnboardingSummary.module.scss.js.map +1 -0
  877. package/dist/components/Employee/OnboardingSummary/index.d.ts +1 -0
  878. package/dist/components/Employee/PaymentMethod/Actions.d.ts +1 -0
  879. package/dist/components/Employee/PaymentMethod/Actions.js +18 -0
  880. package/dist/components/Employee/PaymentMethod/Actions.js.map +1 -0
  881. package/dist/components/Employee/PaymentMethod/BankAccount.d.ts +22 -0
  882. package/dist/components/Employee/PaymentMethod/BankAccount.js +13 -0
  883. package/dist/components/Employee/PaymentMethod/BankAccount.js.map +1 -0
  884. package/dist/components/Employee/PaymentMethod/BankAccountEdit.d.ts +1 -0
  885. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js +56 -0
  886. package/dist/components/Employee/PaymentMethod/BankAccountEdit.js.map +1 -0
  887. package/dist/components/Employee/PaymentMethod/BankAccountsList.d.ts +1 -0
  888. package/dist/components/Employee/PaymentMethod/BankAccountsList.js +47 -0
  889. package/dist/components/Employee/PaymentMethod/BankAccountsList.js.map +1 -0
  890. package/dist/components/Employee/PaymentMethod/Constants.d.ts +8 -0
  891. package/dist/components/Employee/PaymentMethod/Constants.js +6 -0
  892. package/dist/components/Employee/PaymentMethod/Constants.js.map +1 -0
  893. package/dist/components/Employee/PaymentMethod/Head.d.ts +1 -0
  894. package/dist/components/Employee/PaymentMethod/Head.js +13 -0
  895. package/dist/components/Employee/PaymentMethod/Head.js.map +1 -0
  896. package/dist/components/Employee/PaymentMethod/PaymentMethod.d.ts +8 -0
  897. package/dist/components/Employee/PaymentMethod/PaymentMethod.js +174 -0
  898. package/dist/components/Employee/PaymentMethod/PaymentMethod.js.map +1 -0
  899. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.d.ts +11 -0
  900. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js +37 -0
  901. package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js.map +1 -0
  902. package/dist/components/Employee/PaymentMethod/Split.d.ts +1 -0
  903. package/dist/components/Employee/PaymentMethod/Split.js +161 -0
  904. package/dist/components/Employee/PaymentMethod/Split.js.map +1 -0
  905. package/dist/components/Employee/PaymentMethod/index.d.ts +1 -0
  906. package/dist/components/Employee/PaymentMethod/usePaymentMethod.d.ts +108 -0
  907. package/dist/components/Employee/PaymentMethod/usePaymentMethod.js +56 -0
  908. package/dist/components/Employee/PaymentMethod/usePaymentMethod.js.map +1 -0
  909. package/dist/components/Employee/Profile/Actions.d.ts +1 -0
  910. package/dist/components/Employee/Profile/Actions.js +13 -0
  911. package/dist/components/Employee/Profile/Actions.js.map +1 -0
  912. package/dist/components/Employee/Profile/AdminPersonalDetails.d.ts +69 -0
  913. package/dist/components/Employee/Profile/AdminPersonalDetails.js +45 -0
  914. package/dist/components/Employee/Profile/AdminPersonalDetails.js.map +1 -0
  915. package/dist/components/Employee/Profile/Head.d.ts +1 -0
  916. package/dist/components/Employee/Profile/Head.js +14 -0
  917. package/dist/components/Employee/Profile/Head.js.map +1 -0
  918. package/dist/components/Employee/Profile/HomeAddress.d.ts +34 -0
  919. package/dist/components/Employee/Profile/HomeAddress.js +106 -0
  920. package/dist/components/Employee/Profile/HomeAddress.js.map +1 -0
  921. package/dist/components/Employee/Profile/PersonalDetailsInputs.d.ts +98 -0
  922. package/dist/components/Employee/Profile/PersonalDetailsInputs.js +139 -0
  923. package/dist/components/Employee/Profile/PersonalDetailsInputs.js.map +1 -0
  924. package/dist/components/Employee/Profile/Profile.d.ts +36 -0
  925. package/dist/components/Employee/Profile/Profile.js +261 -0
  926. package/dist/components/Employee/Profile/Profile.js.map +1 -0
  927. package/dist/components/Employee/Profile/SelfPersonalDetails.d.ts +45 -0
  928. package/dist/components/Employee/Profile/SelfPersonalDetails.js +26 -0
  929. package/dist/components/Employee/Profile/SelfPersonalDetails.js.map +1 -0
  930. package/dist/components/Employee/Profile/WorkAddress.d.ts +1 -0
  931. package/dist/components/Employee/Profile/WorkAddress.js +21 -0
  932. package/dist/components/Employee/Profile/WorkAddress.js.map +1 -0
  933. package/dist/components/Employee/Profile/WorkAddress.module.scss.js +8 -0
  934. package/dist/components/Employee/Profile/WorkAddress.module.scss.js.map +1 -0
  935. package/dist/components/Employee/Profile/getEmployeeAddressForProfile.d.ts +2 -0
  936. package/dist/components/Employee/Profile/getEmployeeAddressForProfile.js +8 -0
  937. package/dist/components/Employee/Profile/getEmployeeAddressForProfile.js.map +1 -0
  938. package/dist/components/Employee/Profile/getEmployeeAddressForProfile.test.d.ts +1 -0
  939. package/dist/components/Employee/Profile/index.d.ts +1 -0
  940. package/dist/components/Employee/Profile/useProfile.d.ts +15 -0
  941. package/dist/components/Employee/Profile/useProfile.js +17 -0
  942. package/dist/components/Employee/Profile/useProfile.js.map +1 -0
  943. package/dist/components/Employee/Taxes/Actions.d.ts +1 -0
  944. package/dist/components/Employee/Taxes/Actions.js +13 -0
  945. package/dist/components/Employee/Taxes/Actions.js.map +1 -0
  946. package/dist/components/Employee/Taxes/FederalForm.d.ts +29 -0
  947. package/dist/components/Employee/Taxes/FederalForm.js +106 -0
  948. package/dist/components/Employee/Taxes/FederalForm.js.map +1 -0
  949. package/dist/components/Employee/Taxes/FederalHead.d.ts +1 -0
  950. package/dist/components/Employee/Taxes/FederalHead.js +24 -0
  951. package/dist/components/Employee/Taxes/FederalHead.js.map +1 -0
  952. package/dist/components/Employee/Taxes/StateForm.d.ts +10 -0
  953. package/dist/components/Employee/Taxes/StateForm.js +32 -0
  954. package/dist/components/Employee/Taxes/StateForm.js.map +1 -0
  955. package/dist/components/Employee/Taxes/Taxes.d.ts +14 -0
  956. package/dist/components/Employee/Taxes/Taxes.js +124 -0
  957. package/dist/components/Employee/Taxes/Taxes.js.map +1 -0
  958. package/dist/components/Employee/Taxes/index.d.ts +1 -0
  959. package/dist/components/Employee/Taxes/useTaxes.d.ts +8 -0
  960. package/dist/components/Employee/Taxes/useTaxes.js +17 -0
  961. package/dist/components/Employee/Taxes/useTaxes.js.map +1 -0
  962. package/dist/components/Employee/index.d.ts +9 -0
  963. package/dist/components/Employee/index.js +21 -0
  964. package/dist/components/Employee/index.js.map +1 -0
  965. package/dist/components/Flow/EmployeeOnboardingFlow.d.ts +27 -0
  966. package/dist/components/Flow/EmployeeOnboardingFlow.js +29 -0
  967. package/dist/components/Flow/EmployeeOnboardingFlow.js.map +1 -0
  968. package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingComponents.d.ts +5 -0
  969. package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingComponents.js +58 -0
  970. package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingComponents.js.map +1 -0
  971. package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingFlow.d.ts +13 -0
  972. package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingFlow.js +26 -0
  973. package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingFlow.js.map +1 -0
  974. package/dist/components/Flow/Flow.d.ts +10 -0
  975. package/dist/components/Flow/Flow.js +37 -0
  976. package/dist/components/Flow/Flow.js.map +1 -0
  977. package/dist/components/Flow/StateMachines/employeeOnboarding.d.ts +10 -0
  978. package/dist/components/Flow/StateMachines/employeeOnboarding.js +136 -0
  979. package/dist/components/Flow/StateMachines/employeeOnboarding.js.map +1 -0
  980. package/dist/components/Flow/StateMachines/employeeSelfOnboarding.d.ts +7 -0
  981. package/dist/components/Flow/StateMachines/employeeSelfOnboarding.js +73 -0
  982. package/dist/components/Flow/StateMachines/employeeSelfOnboarding.js.map +1 -0
  983. package/dist/components/Flow/StateMachines/index.d.ts +2 -0
  984. package/dist/components/Flow/index.d.ts +2 -0
  985. package/dist/components/Flow/index.js +7 -0
  986. package/dist/components/Flow/index.js.map +1 -0
  987. package/dist/components/Flow/useFlow.d.ts +12 -0
  988. package/dist/components/Flow/useFlow.js +13 -0
  989. package/dist/components/Flow/useFlow.js.map +1 -0
  990. package/dist/components/index.d.ts +3 -0
  991. package/dist/contexts/ApiProvider/ApiProvider.d.ts +5 -0
  992. package/dist/contexts/ApiProvider/ApiProvider.js +34 -0
  993. package/dist/contexts/ApiProvider/ApiProvider.js.map +1 -0
  994. package/dist/contexts/ComponentAdapter/ComponentsProvider.d.ts +8 -0
  995. package/dist/contexts/ComponentAdapter/ComponentsProvider.js +11 -0
  996. package/dist/contexts/ComponentAdapter/ComponentsProvider.js.map +1 -0
  997. package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.d.ts +2 -0
  998. package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js +55 -0
  999. package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js.map +1 -0
  1000. package/dist/contexts/ComponentAdapter/componentAdapterTypes.d.ts +18 -0
  1001. package/dist/contexts/ComponentAdapter/useComponentContext.d.ts +53 -0
  1002. package/dist/contexts/ComponentAdapter/useComponentContext.js +12 -0
  1003. package/dist/contexts/ComponentAdapter/useComponentContext.js.map +1 -0
  1004. package/dist/contexts/GustoApiProvider/index.d.ts +2 -0
  1005. package/dist/contexts/GustoProvider/GustoProvider.d.ts +11 -0
  1006. package/dist/contexts/GustoProvider/GustoProvider.js +16 -0
  1007. package/dist/contexts/GustoProvider/GustoProvider.js.map +1 -0
  1008. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.d.ts +32 -0
  1009. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js +39 -0
  1010. package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js.map +1 -0
  1011. package/dist/contexts/GustoProvider/SDKI18next.d.ts +4 -0
  1012. package/dist/contexts/GustoProvider/SDKI18next.js +17 -0
  1013. package/dist/contexts/GustoProvider/SDKI18next.js.map +1 -0
  1014. package/dist/contexts/GustoProvider/index.d.ts +3 -0
  1015. package/dist/contexts/LocaleProvider/LocaleProvider.d.ts +5 -0
  1016. package/dist/contexts/LocaleProvider/LocaleProvider.js +13 -0
  1017. package/dist/contexts/LocaleProvider/LocaleProvider.js.map +1 -0
  1018. package/dist/contexts/LocaleProvider/index.d.ts +2 -0
  1019. package/dist/contexts/LocaleProvider/useLocale.d.ts +7 -0
  1020. package/dist/contexts/LocaleProvider/useLocale.js +22 -0
  1021. package/dist/contexts/LocaleProvider/useLocale.js.map +1 -0
  1022. package/dist/contexts/ThemeProvider/ThemeProvider.d.ts +8 -0
  1023. package/dist/contexts/ThemeProvider/ThemeProvider.js +37 -0
  1024. package/dist/contexts/ThemeProvider/ThemeProvider.js.map +1 -0
  1025. package/dist/contexts/ThemeProvider/createTheme.d.ts +22 -0
  1026. package/dist/contexts/ThemeProvider/createTheme.js +271 -0
  1027. package/dist/contexts/ThemeProvider/createTheme.js.map +1 -0
  1028. package/dist/contexts/ThemeProvider/createTheme.test.d.ts +1 -0
  1029. package/dist/contexts/ThemeProvider/customRender.d.ts +4 -0
  1030. package/dist/contexts/ThemeProvider/index.d.ts +3 -0
  1031. package/dist/contexts/ThemeProvider/test-utils.d.ts +4 -0
  1032. package/dist/contexts/ThemeProvider/useTheme.d.ts +5 -0
  1033. package/dist/contexts/ThemeProvider/useTheme.js +7 -0
  1034. package/dist/contexts/ThemeProvider/useTheme.js.map +1 -0
  1035. package/dist/contexts/index.d.ts +4 -0
  1036. package/dist/helpers/LRUCache.d.ts +7 -0
  1037. package/dist/helpers/LRUCache.js +22 -0
  1038. package/dist/helpers/LRUCache.js.map +1 -0
  1039. package/dist/helpers/dateFormatting.d.ts +2 -0
  1040. package/dist/helpers/dateFormatting.js +10 -0
  1041. package/dist/helpers/dateFormatting.js.map +1 -0
  1042. package/dist/helpers/ensureRequired.d.ts +1 -0
  1043. package/dist/helpers/ensureRequired.js +10 -0
  1044. package/dist/helpers/ensureRequired.js.map +1 -0
  1045. package/dist/helpers/ensureRequired.test.d.ts +1 -0
  1046. package/dist/helpers/federalEin.d.ts +8 -0
  1047. package/dist/helpers/federalEin.js +11 -0
  1048. package/dist/helpers/federalEin.js.map +1 -0
  1049. package/dist/helpers/federalEin.test.d.ts +1 -0
  1050. package/dist/helpers/formattedStrings.d.ts +19 -0
  1051. package/dist/helpers/formattedStrings.js +22 -0
  1052. package/dist/helpers/formattedStrings.js.map +1 -0
  1053. package/dist/helpers/formattedStrings.test.d.ts +1 -0
  1054. package/dist/helpers/getDataProps.d.ts +2 -0
  1055. package/dist/helpers/getDataProps.js +17 -0
  1056. package/dist/helpers/getDataProps.js.map +1 -0
  1057. package/dist/helpers/getDataProps.test.d.ts +1 -0
  1058. package/dist/helpers/mask.d.ts +23 -0
  1059. package/dist/helpers/mask.js +37 -0
  1060. package/dist/helpers/mask.js.map +1 -0
  1061. package/dist/helpers/mask.test.d.ts +1 -0
  1062. package/dist/helpers/payRateCalculator.d.ts +2 -0
  1063. package/dist/helpers/payRateCalculator.js +20 -0
  1064. package/dist/helpers/payRateCalculator.js.map +1 -0
  1065. package/dist/helpers/rem.d.ts +7 -0
  1066. package/dist/helpers/rem.js +17 -0
  1067. package/dist/helpers/rem.js.map +1 -0
  1068. package/dist/helpers/responsive.d.ts +15 -0
  1069. package/dist/helpers/responsive.js +43 -0
  1070. package/dist/helpers/responsive.js.map +1 -0
  1071. package/dist/helpers/responsive.test.d.ts +1 -0
  1072. package/dist/helpers/ssn.d.ts +3 -0
  1073. package/dist/helpers/ssn.js +11 -0
  1074. package/dist/helpers/ssn.js.map +1 -0
  1075. package/dist/helpers/validations.d.ts +8 -0
  1076. package/dist/helpers/validations.js +14 -0
  1077. package/dist/helpers/validations.js.map +1 -0
  1078. package/dist/hooks/useContainerBreakpoints/useContainerBreakpoints.d.ts +12 -0
  1079. package/dist/hooks/useContainerBreakpoints/useContainerBreakpoints.js +30 -0
  1080. package/dist/hooks/useContainerBreakpoints/useContainerBreakpoints.js.map +1 -0
  1081. package/dist/hooks/useDebounce/useDebounce.d.ts +2 -0
  1082. package/dist/hooks/useDebounce/useDebounce.js +19 -0
  1083. package/dist/hooks/useDebounce/useDebounce.js.map +1 -0
  1084. package/dist/hooks/useForkRef/index.d.ts +1 -0
  1085. package/dist/hooks/useForkRef/useForkRef.d.ts +7 -0
  1086. package/dist/hooks/useForkRef/useForkRef.js +12 -0
  1087. package/dist/hooks/useForkRef/useForkRef.js.map +1 -0
  1088. package/dist/i18n/I18n.d.ts +7 -0
  1089. package/dist/i18n/I18n.js +35 -0
  1090. package/dist/i18n/I18n.js.map +1 -0
  1091. package/dist/{Company.AddBank--N4kK8CC.js → i18n/en/Company.AddBank.json.js} +1 -1
  1092. package/dist/i18n/en/Company.AddBank.json.js.map +1 -0
  1093. package/dist/{Company.Addresses-BLDgBmOD.js → i18n/en/Company.Addresses.json.js} +1 -1
  1094. package/dist/i18n/en/Company.Addresses.json.js.map +1 -0
  1095. package/dist/{Company.AssignSignatory-CUCZtm6s.js → i18n/en/Company.AssignSignatory.json.js} +1 -1
  1096. package/dist/i18n/en/Company.AssignSignatory.json.js.map +1 -0
  1097. package/dist/i18n/en/Company.BankAccount.json.js +63 -0
  1098. package/dist/i18n/en/Company.BankAccount.json.js.map +1 -0
  1099. package/dist/{Company.DocumentList-D-h6c4bI.js → i18n/en/Company.DocumentList.json.js} +1 -1
  1100. package/dist/i18n/en/Company.DocumentList.json.js.map +1 -0
  1101. package/dist/{Company.FederalTaxes-BuTN_7W0.js → i18n/en/Company.FederalTaxes.json.js} +1 -1
  1102. package/dist/i18n/en/Company.FederalTaxes.json.js.map +1 -0
  1103. package/dist/{Company.Industry-DLXwZPaw.js → i18n/en/Company.Industry.json.js} +1 -1
  1104. package/dist/i18n/en/Company.Industry.json.js.map +1 -0
  1105. package/dist/{Company.Locations-Cp9h8ZGu.js → i18n/en/Company.Locations.json.js} +1 -1
  1106. package/dist/i18n/en/Company.Locations.json.js.map +1 -0
  1107. package/dist/i18n/en/Company.OnboardingOverview.json.js +50 -0
  1108. package/dist/i18n/en/Company.OnboardingOverview.json.js.map +1 -0
  1109. package/dist/{Company.PaySchedule-CxoupNmN.js → i18n/en/Company.PaySchedule.json.js} +32 -30
  1110. package/dist/i18n/en/Company.PaySchedule.json.js.map +1 -0
  1111. package/dist/i18n/en/Company.SignatureForm.json.js +28 -0
  1112. package/dist/i18n/en/Company.SignatureForm.json.js.map +1 -0
  1113. package/dist/i18n/en/Company.StateTaxes.json.js +33 -0
  1114. package/dist/i18n/en/Company.StateTaxes.json.js.map +1 -0
  1115. package/dist/{Employee.BankAccount-DFNmm0eF.js → i18n/en/Employee.BankAccount.json.js} +1 -1
  1116. package/dist/i18n/en/Employee.BankAccount.json.js.map +1 -0
  1117. package/dist/i18n/en/Employee.Compensation.json.js +98 -0
  1118. package/dist/i18n/en/Employee.Compensation.json.js.map +1 -0
  1119. package/dist/{Employee.Deductions-yskR0evJ.js → i18n/en/Employee.Deductions.json.js} +1 -1
  1120. package/dist/i18n/en/Employee.Deductions.json.js.map +1 -0
  1121. package/dist/{Employee.DocumentSigner-DgbuxBnJ.js → i18n/en/Employee.DocumentSigner.json.js} +17 -19
  1122. package/dist/i18n/en/Employee.DocumentSigner.json.js.map +1 -0
  1123. package/dist/i18n/en/Employee.EmployeeList.json.js +44 -0
  1124. package/dist/i18n/en/Employee.EmployeeList.json.js.map +1 -0
  1125. package/dist/{Employee.HomeAddress-DQ-CWfZA.js → i18n/en/Employee.HomeAddress.json.js} +1 -1
  1126. package/dist/i18n/en/Employee.HomeAddress.json.js.map +1 -0
  1127. package/dist/{Employee.Landing-Hpn09zPP.js → i18n/en/Employee.Landing.json.js} +1 -1
  1128. package/dist/i18n/en/Employee.Landing.json.js.map +1 -0
  1129. package/dist/{Employee.OnboardingSummary-CmxhPw5V.js → i18n/en/Employee.OnboardingSummary.json.js} +21 -23
  1130. package/dist/i18n/en/Employee.OnboardingSummary.json.js.map +1 -0
  1131. package/dist/{Employee.PaySchedules-C3chTJFz.js → i18n/en/Employee.PaySchedules.json.js} +1 -1
  1132. package/dist/i18n/en/Employee.PaySchedules.json.js.map +1 -0
  1133. package/dist/{Employee.PaymentMethod-B1tieS6Y.js → i18n/en/Employee.PaymentMethod.json.js} +1 -1
  1134. package/dist/i18n/en/Employee.PaymentMethod.json.js.map +1 -0
  1135. package/dist/{Employee.Profile-u_Zt7QkR.js → i18n/en/Employee.Profile.json.js} +1 -1
  1136. package/dist/i18n/en/Employee.Profile.json.js.map +1 -0
  1137. package/dist/{Employee.SplitPaycheck-DuzIuN4Y.js → i18n/en/Employee.SplitPaycheck.json.js} +1 -1
  1138. package/dist/i18n/en/Employee.SplitPaycheck.json.js.map +1 -0
  1139. package/dist/{Employee.StateTaxes-5hNQeRZm.js → i18n/en/Employee.StateTaxes.json.js} +1 -1
  1140. package/dist/i18n/en/Employee.StateTaxes.json.js.map +1 -0
  1141. package/dist/i18n/en/Employee.Taxes.json.js +55 -0
  1142. package/dist/i18n/en/Employee.Taxes.json.js.map +1 -0
  1143. package/dist/{Payroll.PayrollHistoryList-vkBomN9P.js → i18n/en/Payroll.PayrollHistoryList.json.js} +1 -1
  1144. package/dist/i18n/en/Payroll.PayrollHistoryList.json.js.map +1 -0
  1145. package/dist/{Payroll.PayrollSchedule-DR1oc4YN.js → i18n/en/Payroll.PayrollSchedule.json.js} +1 -1
  1146. package/dist/i18n/en/Payroll.PayrollSchedule.json.js.map +1 -0
  1147. package/dist/i18n/en/common.json.d.ts +153 -0
  1148. package/dist/i18n/en/common.json.js +168 -0
  1149. package/dist/i18n/en/common.json.js.map +1 -0
  1150. package/dist/i18n/index.d.ts +1 -0
  1151. package/dist/index.d.ts +5 -1516
  1152. package/dist/index.js +17 -49644
  1153. package/dist/index.js.map +1 -1
  1154. package/dist/models/NAICSCodes.d.ts +4 -0
  1155. package/dist/models/NAICSCodes.js +5 -0
  1156. package/dist/models/NAICSCodes.js.map +1 -0
  1157. package/dist/models/NAICSValues.d.ts +2 -0
  1158. package/dist/{NAICSValues-DHi955wK.js → models/NAICSValues.js} +1 -1
  1159. package/dist/models/NAICSValues.js.map +1 -0
  1160. package/dist/models/PayPeriod.d.ts +18 -0
  1161. package/dist/models/Payroll.d.ts +40 -0
  1162. package/dist/models/PayrollTotals.d.ts +24 -0
  1163. package/dist/models/WA_RISK_CODES.d.ts +2866 -0
  1164. package/dist/models/WA_RISK_CODES.js +3826 -0
  1165. package/dist/models/WA_RISK_CODES.js.map +1 -0
  1166. package/dist/shared/constants.d.ts +234 -0
  1167. package/dist/shared/constants.js +208 -0
  1168. package/dist/shared/constants.js.map +1 -0
  1169. package/dist/style.css +1 -1
  1170. package/dist/test-utils/renderWithProviders.d.ts +9 -0
  1171. package/dist/types/GTheme.d.ts +255 -0
  1172. package/dist/types/Helpers.d.ts +27 -0
  1173. package/dist/types/i18next.d.ts +918 -0
  1174. package/dist/types/sass.d.ts +4 -0
  1175. package/dist/types/svg.d.ts +14 -0
  1176. package/package.json +39 -27
  1177. package/dist/Company.AddBank--N4kK8CC.js.map +0 -1
  1178. package/dist/Company.Addresses-BLDgBmOD.js.map +0 -1
  1179. package/dist/Company.AssignSignatory-CUCZtm6s.js.map +0 -1
  1180. package/dist/Company.DocumentList-D-h6c4bI.js.map +0 -1
  1181. package/dist/Company.FederalTaxes-BuTN_7W0.js.map +0 -1
  1182. package/dist/Company.Industry-DLXwZPaw.js.map +0 -1
  1183. package/dist/Company.Locations-Cp9h8ZGu.js.map +0 -1
  1184. package/dist/Company.PaySchedule-CxoupNmN.js.map +0 -1
  1185. package/dist/Company.SignatureForm-DC4MsbLt.js +0 -30
  1186. package/dist/Company.SignatureForm-DC4MsbLt.js.map +0 -1
  1187. package/dist/Employee.BankAccount-DFNmm0eF.js.map +0 -1
  1188. package/dist/Employee.Compensation-TuS8Bmv_.js +0 -83
  1189. package/dist/Employee.Compensation-TuS8Bmv_.js.map +0 -1
  1190. package/dist/Employee.Deductions-yskR0evJ.js.map +0 -1
  1191. package/dist/Employee.DocumentSigner-DgbuxBnJ.js.map +0 -1
  1192. package/dist/Employee.EmployeeList-BGB23n1N.js +0 -40
  1193. package/dist/Employee.EmployeeList-BGB23n1N.js.map +0 -1
  1194. package/dist/Employee.HomeAddress-DQ-CWfZA.js.map +0 -1
  1195. package/dist/Employee.Landing-Hpn09zPP.js.map +0 -1
  1196. package/dist/Employee.OnboardingSummary-CmxhPw5V.js.map +0 -1
  1197. package/dist/Employee.PaySchedules-C3chTJFz.js.map +0 -1
  1198. package/dist/Employee.PaymentMethod-B1tieS6Y.js.map +0 -1
  1199. package/dist/Employee.Profile-u_Zt7QkR.js.map +0 -1
  1200. package/dist/Employee.SplitPaycheck-DuzIuN4Y.js.map +0 -1
  1201. package/dist/Employee.StateTaxes-5hNQeRZm.js.map +0 -1
  1202. package/dist/Employee.Taxes-DQX-wk0E.js +0 -53
  1203. package/dist/Employee.Taxes-DQX-wk0E.js.map +0 -1
  1204. package/dist/NAICSValues-DHi955wK.js.map +0 -1
  1205. package/dist/Payroll.PayrollHistoryList-vkBomN9P.js.map +0 -1
  1206. package/dist/Payroll.PayrollSchedule-DR1oc4YN.js.map +0 -1
@@ -0,0 +1,2866 @@
1
+ export declare const WA_RISK_CLASS_CODES: readonly [{
2
+ readonly code: "010102";
3
+ readonly description: "Excavation and Grading N.O.C.: Excavation work and land clearing, N.O.C.: Pool or pond excavation, and placement of pool or pond liners";
4
+ }, {
5
+ readonly code: "010103";
6
+ readonly description: "Excavation and Grading N.O.C.: Grading NOC";
7
+ }, {
8
+ readonly code: "010116";
9
+ readonly description: "Excavation and Grading N.O.C.: Rail Const & Repair or Dismtl";
10
+ }, {
11
+ readonly code: "010117";
12
+ readonly description: "Excavation and Grading N.O.C.: Retain Walls with Road Const";
13
+ }, {
14
+ readonly code: "010136";
15
+ readonly description: "Excavation and Grading N.O.C.: Tree Care & Pruning Service";
16
+ }, {
17
+ readonly code: "010137";
18
+ readonly description: "Excavation and Grading N.O.C.: Soil Remediation";
19
+ }, {
20
+ readonly code: "010140";
21
+ readonly description: "Excavation and Grading N.O.C.: Mowing-Roadways/Right of Ways";
22
+ }, {
23
+ readonly code: "010141";
24
+ readonly description: "Excavation and Grading N.O.C.: Logging Machine Operators";
25
+ }, {
26
+ readonly code: "010309";
27
+ readonly description: "Drilling and Geophysical Exploration N.O.C.: Drilling NOC";
28
+ }, {
29
+ readonly code: "010310";
30
+ readonly description: "Drilling and Geophysical Exploration N.O.C.: Geophysical Explor - Seismic";
31
+ }, {
32
+ readonly code: "010412";
33
+ readonly description: "Dredging N.O.C.: Dredging NOC";
34
+ }, {
35
+ readonly code: "010513";
36
+ readonly description: "Fence Erection N.O.C.: Fence Const & Rpr NOC";
37
+ }, {
38
+ readonly code: "010600";
39
+ readonly description: "Tree care and pruning services, N.O.C.";
40
+ }, {
41
+ readonly code: "010700";
42
+ readonly description: "Underground Utility Line Const. & Pipelaying N.O.C.: Coaxl/CDT Ugd TV Utility NOC";
43
+ }, {
44
+ readonly code: "010701";
45
+ readonly description: "Underground Utility Line Const. & Pipelaying N.O.C.: Pipelaying NOC";
46
+ }, {
47
+ readonly code: "010800";
48
+ readonly description: "Sewer and Septic System Construction: Ditches & Canals NOC";
49
+ }, {
50
+ readonly code: "010801";
51
+ readonly description: "Sewer and Septic System Construction: Sewer Const/Septic Tank Inst";
52
+ }, {
53
+ readonly code: "010802";
54
+ readonly description: "Sewer and Septic System Construction: Tanks NOC - Underground";
55
+ }, {
56
+ readonly code: "011200";
57
+ readonly description: "Sand and Gravel Production Including Dealers: Comm Prod Sand/GRVL/Clay/Stone";
58
+ }, {
59
+ readonly code: "011201";
60
+ readonly description: "Sand and Gravel Production Including Dealers: Humus/Peat Digging";
61
+ }, {
62
+ readonly code: "011202";
63
+ readonly description: "Sand and Gravel Production Including Dealers: Pit/Crush/Bunk Oper-Rd Const";
64
+ }, {
65
+ readonly code: "011203";
66
+ readonly description: "Sand and Gravel Production Including Dealers: Sand/Gravel/Shale Digging";
67
+ }, {
68
+ readonly code: "020101";
69
+ readonly description: "Bridge Bulkhead and Tunnel Construction: Bridge/OVHD Crossing Const/Rpr";
70
+ }, {
71
+ readonly code: "020104";
72
+ readonly description: "Bridge Bulkhead and Tunnel Construction: Brkwtr Jetty/Levee Const/Rpr";
73
+ }, {
74
+ readonly code: "020105";
75
+ readonly description: "Bridge Bulkhead and Tunnel Construction: Bulkhead Retaining Wall Const";
76
+ }, {
77
+ readonly code: "020106";
78
+ readonly description: "Bridge Bulkhead and Tunnel Construction: Culvert Instal - Over 12 ft";
79
+ }, {
80
+ readonly code: "020108";
81
+ readonly description: "Bridge Bulkhead and Tunnel Construction: Tunnel/Approach Const";
82
+ }, {
83
+ readonly code: "020109";
84
+ readonly description: "Bridge Bulkhead and Tunnel Construction: Diking NOC";
85
+ }, {
86
+ readonly code: "020202";
87
+ readonly description: "Pile Driving with Water Hazard: Pile";
88
+ }, {
89
+ readonly code: "020203";
90
+ readonly description: "Pile Driving with Water Hazard: Wharf/Pier Const/Maint/Repair";
91
+ }, {
92
+ readonly code: "020204";
93
+ readonly description: "Pile Driving with Water Hazard: Diving & Subaqueous Work NOC";
94
+ }, {
95
+ readonly code: "020205";
96
+ readonly description: "Pile Driving with Water Hazard: Geoduck harvesting by divers";
97
+ }, {
98
+ readonly code: "020206";
99
+ readonly description: "Pile construction: Drilled method";
100
+ }, {
101
+ readonly code: "021000";
102
+ readonly description: "Asphalt Paving - Streets and Roads: Asphalt Paving - Roadways";
103
+ }, {
104
+ readonly code: "021200";
105
+ readonly description: "Asphalt Paving N.O.C.: Asphalt Paving NOC";
106
+ }, {
107
+ readonly code: "021400";
108
+ readonly description: "Concrete Work - Streets and Roads: Concrete Paving - Roadways";
109
+ }, {
110
+ readonly code: "021401";
111
+ readonly description: "Concrete Work - Streets and Roads: Concr Curb/Sidewalk - Roadways";
112
+ }, {
113
+ readonly code: "021402";
114
+ readonly description: "Concrete Work - Streets and Roads: Median/Retaining Walls - Roadways";
115
+ }, {
116
+ readonly code: "021403";
117
+ readonly description: "Concrete Work - Streets and Roads: Concr Saw/Drill/Cut - Roadways";
118
+ }, {
119
+ readonly code: "021700";
120
+ readonly description: "Concrete Work - Foundations and Sidewalks: Concrete Flatwork NOC";
121
+ }, {
122
+ readonly code: "021701";
123
+ readonly description: "Concrete Work - Foundations and Sidewalks: Concr Found/Flatwork-Wood Bldg";
124
+ }, {
125
+ readonly code: "021702";
126
+ readonly description: "Concrete Work - Foundations and Sidewalks: Concrete Saw/Drill/Cut NOC";
127
+ }, {
128
+ readonly code: "021900";
129
+ readonly description: "Guardrails Street Signs and Traffic Lights Installation: Highway Light/Sign Inst NOC";
130
+ }, {
131
+ readonly code: "021901";
132
+ readonly description: "Guardrails Street Signs and Traffic Lights Installation: Road/Park Lot Striping NOC";
133
+ }, {
134
+ readonly code: "030104";
135
+ readonly description: "Landscape Construction and Renovation: Lawn-Type Sprinkler Sysm Instl";
136
+ }, {
137
+ readonly code: "030106";
138
+ readonly description: "Landscape Construction and Renovation: Agricult Irrigation Sys Instal";
139
+ }, {
140
+ readonly code: "030108";
141
+ readonly description: "Landscape Construction and Renovation: Landscape Const Operations NOC";
142
+ }, {
143
+ readonly code: "030201";
144
+ readonly description: "Masonry Construction: Brick/Slate/Masonry NOC";
145
+ }, {
146
+ readonly code: "030202";
147
+ readonly description: "Masonry Construction: Masonry NOC Chim/Fire Pl Const";
148
+ }, {
149
+ readonly code: "030300";
150
+ readonly description: "Plastering Stuccoing and Lathing: Buildings: Plaster/Stucco Work NOC";
151
+ }, {
152
+ readonly code: "030600";
153
+ readonly description: "Plumbing: Plumbing NOC Sewer Pipe Clng";
154
+ }, {
155
+ readonly code: "030602";
156
+ readonly description: "Plumbing: Sprinkler Installation Auto";
157
+ }, {
158
+ readonly code: "030603";
159
+ readonly description: "Plumbing: Steam Pipe/Boiler Cover/Instal";
160
+ }, {
161
+ readonly code: "030604";
162
+ readonly description: "Plumbing: Boilers NOC Instal/Svc/Repair";
163
+ }, {
164
+ readonly code: "030605";
165
+ readonly description: "Plumbing: Pump Installation, Service or Repair";
166
+ }, {
167
+ readonly code: "030606";
168
+ readonly description: "Plumbing: Water Treatment Systems";
169
+ }, {
170
+ readonly code: "030607";
171
+ readonly description: "Plumbing: Hot Water Heater-Inst/Svc/Rep";
172
+ }, {
173
+ readonly code: "030701";
174
+ readonly description: "HVAC Systems Installation Service and Repair: Heating Syst Instal/Svc/Repair";
175
+ }, {
176
+ readonly code: "030704";
177
+ readonly description: "HVAC Systems Installation Service and Repair: Vent/Air Cd/Refrig Syst Instal";
178
+ }, {
179
+ readonly code: "030705";
180
+ readonly description: "HVAC Systems Installation Service and Repair: Wood Stove Install Excl Masnry";
181
+ }, {
182
+ readonly code: "030800";
183
+ readonly description: "Lawn Care Maintenance: Chem Spraying/Fumigating";
184
+ }, {
185
+ readonly code: "030801";
186
+ readonly description: "Lawn Care Maintenance: Lawn Care Maintenance";
187
+ }, {
188
+ readonly code: "040300";
189
+ readonly description: "Sign Erection: Sign Erect/Paint/Repair/Remove";
190
+ }, {
191
+ readonly code: "040310";
192
+ readonly description: "Sign Erection: Sign Paint/Letter Outside Bldg";
193
+ }, {
194
+ readonly code: "050204";
195
+ readonly description: "Floor Covering Installation: Floor & Counter Covrng Install";
196
+ }, {
197
+ readonly code: "050299";
198
+ readonly description: "Floor Covering Installation: Flooring - No Employees";
199
+ }, {
200
+ readonly code: "050406";
201
+ readonly description: "Painting: Building and Structures - Exterior Work: Waterproofing NOC";
202
+ }, {
203
+ readonly code: "050418";
204
+ readonly description: "Painting: Building and Structures - Exterior Work: Presr Wash/Sandbl Bldg/Struct";
205
+ }, {
206
+ readonly code: "050420";
207
+ readonly description: "Painting: Building and Structures - Exterior Work: Lead Abatement NOC";
208
+ }, {
209
+ readonly code: "050421";
210
+ readonly description: "Painting: Building and Structures - Exterior Work: Painting-Ext. Bldg/Struct NOC";
211
+ }, {
212
+ readonly code: "050705";
213
+ readonly description: "Roofing Work - Construction and Repair: Roof Const or Repair-All Types";
214
+ }, {
215
+ readonly code: "050799";
216
+ readonly description: "Roofing Work - Construction and Repair: Roof Const - No Employees";
217
+ }, {
218
+ readonly code: "050800";
219
+ readonly description: "Structural Steel Erection - Towers Tanks and Cranes: Radio/TV Tower/Towers NOC Erec";
220
+ }, {
221
+ readonly code: "050801";
222
+ readonly description: "Structural Steel Erection - Towers Tanks and Cranes: Smokestack Construction/Repair";
223
+ }, {
224
+ readonly code: "050802";
225
+ readonly description: "Structural Steel Erection - Towers Tanks and Cranes: Windmill/Silo Erect/Maint/Rpr";
226
+ }, {
227
+ readonly code: "050803";
228
+ readonly description: "Structural Steel Erection - Towers Tanks and Cranes: Oil Still/Refinery Const";
229
+ }, {
230
+ readonly code: "050804";
231
+ readonly description: "Structural Steel Erection - Towers Tanks and Cranes: Blast Furnace & Metal Burner";
232
+ }, {
233
+ readonly code: "050808";
234
+ readonly description: "Structural Steel Erection - Towers Tanks and Cranes: Elevated Railway/Tram Const";
235
+ }, {
236
+ readonly code: "050809";
237
+ readonly description: "Structural Steel Erection - Towers Tanks and Cranes: Exterior Tanks Erect NOC";
238
+ }, {
239
+ readonly code: "050811";
240
+ readonly description: "Structural Steel Erection - Towers Tanks and Cranes: Crane/Derrick Installation";
241
+ }, {
242
+ readonly code: "050812";
243
+ readonly description: "Structural Steel Erection - Towers Tanks and Cranes: Water Cooling Towers Erection";
244
+ }, {
245
+ readonly code: "050900";
246
+ readonly description: "Overhead Power and Transmission Lines Construction: OVHD Phone/Telegraph Lns Erect";
247
+ }, {
248
+ readonly code: "050901";
249
+ readonly description: "Overhead Power and Transmission Lines Construction: OVHD Television Lines Erect";
250
+ }, {
251
+ readonly code: "050902";
252
+ readonly description: "Overhead Power and Transmission Lines Construction: OVHD Elec Trans Lines Erect";
253
+ }, {
254
+ readonly code: "050903";
255
+ readonly description: "Overhead Power and Transmission Lines Construction: OVHD Trans Lines Erect NOC";
256
+ }, {
257
+ readonly code: "051000";
258
+ readonly description: "Wood Frame Building Construction: Wood Frame Bldg Construction";
259
+ }, {
260
+ readonly code: "051099";
261
+ readonly description: "Construction contractor: No employees";
262
+ }, {
263
+ readonly code: "051100";
264
+ readonly description: "Glass Installation: Buildings: Glass Installation In Bldgs";
265
+ }, {
266
+ readonly code: "051200";
267
+ readonly description: "Insulation Installation and Asbestos Abatement Work: Insulation/Sound Proofing Inst";
268
+ }, {
269
+ readonly code: "051201";
270
+ readonly description: "Insulation Installation and Asbestos Abatement Work: Asbestos Abatement - All Oper";
271
+ }, {
272
+ readonly code: "051300";
273
+ readonly description: "Interior Finish Carpentry: Interior Finish Carpentry";
274
+ }, {
275
+ readonly code: "051400";
276
+ readonly description: "Garage Door Installation: Garage/OVHD Door Installation";
277
+ }, {
278
+ readonly code: "051401";
279
+ readonly description: "Garage Door Installation: Awning/Fire Escape Inst/Rpr";
280
+ }, {
281
+ readonly code: "051600";
282
+ readonly description: "Carpentry N.O.C.: Bldg Repair/Carpentry NOC";
283
+ }, {
284
+ readonly code: "051601";
285
+ readonly description: "Carpentry N.O.C.: Wood Playground Equip Install";
286
+ }, {
287
+ readonly code: "051602";
288
+ readonly description: "Building repair, remodeling and carpentry, N.O.C.";
289
+ }, {
290
+ readonly code: "051700";
291
+ readonly description: "Factory Built Home Set-Up By Contractor/Manufacturer: Mobile Home Set Up-Contractor";
292
+ }, {
293
+ readonly code: "051701";
294
+ readonly description: "Factory Built Home Set-Up By Contractor/Manufacturer: Bldg Raising Moving & Undrpin";
295
+ }, {
296
+ readonly code: "051800";
297
+ readonly description: "Non Wood Frame Building Construction: Building/Concrete Const NOC";
298
+ }, {
299
+ readonly code: "051801";
300
+ readonly description: "Non Wood Frame Building Construction: Metal Carport Construction";
301
+ }, {
302
+ readonly code: "051802";
303
+ readonly description: "Non Wood Frame Building Construction: Metal Ser Station Canopy Const";
304
+ }, {
305
+ readonly code: "051803";
306
+ readonly description: "Non Wood Frame Building Construction: Building Wrecking/Demolition";
307
+ }, {
308
+ readonly code: "051900";
309
+ readonly description: "Sheet Metal Siding Gutters and Downspout Installation: Sheet metal work in building construction N.O.C.";
310
+ }, {
311
+ readonly code: "052100";
312
+ readonly description: "Painting: Buildings - Interior Work: Painting-Int Bldg Incl Wallp";
313
+ }, {
314
+ readonly code: "054000";
315
+ readonly description: "Wallboard Installation - Discounted Rate: Drywall Install (Disc/Sq Ft)";
316
+ }, {
317
+ readonly code: "054100";
318
+ readonly description: "Wallboard Taping - Discounted Rate: Drywall Taping (Disc/Sq Ft)";
319
+ }, {
320
+ readonly code: "055000";
321
+ readonly description: "Wallboard installation, including scrapping: Nondiscounted rate (to be assigned only by the drywall underwriter)";
322
+ }, {
323
+ readonly code: "055099";
324
+ readonly description: "Wallboard Installation - Undiscounted Rate: Drywall - No Employees";
325
+ }, {
326
+ readonly code: "055100";
327
+ readonly description: "Wallboard Taping - Undiscounted Rate: Drywall Taping (Undisc/Sq Ft)";
328
+ }, {
329
+ readonly code: "060100";
330
+ readonly description: "Electrical Wiring: Buildings and Structures: Elect Wire In Bldgs/Floodlight";
331
+ }, {
332
+ readonly code: "060107";
333
+ readonly description: "Electrical Wiring: Buildings and Structures: Elec Mach/Aux Apparatus Instal";
334
+ }, {
335
+ readonly code: "060108";
336
+ readonly description: "Electrical Wiring: Buildings and Structures: Temp Flood/Srchlt Oper On Trk";
337
+ }, {
338
+ readonly code: "060115";
339
+ readonly description: "Electrical Wiring: Buildings and Structures: TV Cable Instl In Bldg by Cont";
340
+ }, {
341
+ readonly code: "060203";
342
+ readonly description: "Elevator Installation Service and Repair: Elevator Install/Serv/Rpr";
343
+ }, {
344
+ readonly code: "060300";
345
+ readonly description: "Machinery Installation Service and Repair: Machinery Instal Milrit Wk NOC";
346
+ }, {
347
+ readonly code: "060305";
348
+ readonly description: "Machinery Installation Service and Repair: Dynamos Instal/Service/Repair";
349
+ }, {
350
+ readonly code: "060307";
351
+ readonly description: "Machinery Installation Service and Repair: Plant Maintenance by Contrctor";
352
+ }, {
353
+ readonly code: "060308";
354
+ readonly description: "Machinery Installation Service and Repair: Metal Playground Equip Install";
355
+ }, {
356
+ readonly code: "060309";
357
+ readonly description: "Machinery Installation Service and Repair: Commercial Equipment Install.";
358
+ }, {
359
+ readonly code: "060404";
360
+ readonly description: "Scrap Metal Dealers and Processors: Metal Scrap Dealers/Processors";
361
+ }, {
362
+ readonly code: "060601";
363
+ readonly description: "Vending Machine Installation Service and Repair: Vending Machine Operation";
364
+ }, {
365
+ readonly code: "060602";
366
+ readonly description: "Vending Machine Installation Service and Repair: Fire Extinguisher Sales & Srvc";
367
+ }, {
368
+ readonly code: "060603";
369
+ readonly description: "Vending Machine Installation Service and Repair: Money Collection Serv:Coin Op";
370
+ }, {
371
+ readonly code: "060612";
372
+ readonly description: "Vending Machine Installation Service and Repair: Amusement Device Install/Maint";
373
+ }, {
374
+ readonly code: "060711";
375
+ readonly description: "Household Appliance Installation Service and Repair: Household Appliances Instl/Svc";
376
+ }, {
377
+ readonly code: "060716";
378
+ readonly description: "Household Appliance Installation Service and Repair: TV Antenna Install & Rpr";
379
+ }, {
380
+ readonly code: "060717";
381
+ readonly description: "Household Appliance Installation Service and Repair: Safe/Vault/Deadbolt Install";
382
+ }, {
383
+ readonly code: "060718";
384
+ readonly description: "Household Appliance Installation Service and Repair: Blinds/Curtains/Drapes Install";
385
+ }, {
386
+ readonly code: "060719";
387
+ readonly description: "Household Appliance Installation Service and Repair: Display Service for Stores";
388
+ }, {
389
+ readonly code: "060721";
390
+ readonly description: "Household Appliance Installation Service and Repair: Meat Slicer/Grinder Instal/Svc";
391
+ }, {
392
+ readonly code: "060722";
393
+ readonly description: "Household Appliance Installation Service and Repair: Rubber Dock Bumper Install";
394
+ }, {
395
+ readonly code: "060723";
396
+ readonly description: "Household Appliance Installation Service and Repair: Car Stereo/Radio/Phone Install";
397
+ }, {
398
+ readonly code: "060801";
399
+ readonly description: "Telephone and Electrical Alarm System Installation: Elec Alarm Sys Install/Svc/Rpr";
400
+ }, {
401
+ readonly code: "060802";
402
+ readonly description: "Telephone and Electrical Alarm System Installation: Intercom/Audio Bx Inst/Svc/Rpr";
403
+ }, {
404
+ readonly code: "060804";
405
+ readonly description: "Telephone and Electrical Alarm System Installation: Telephone Svc Prewire by Contr";
406
+ }, {
407
+ readonly code: "070100";
408
+ readonly description: "Dam Construction: Dam Const - All Opr";
409
+ }, {
410
+ readonly code: "080300";
411
+ readonly description: "Cities - All Other Employees N.O.C.: Cities & Towns All Operations";
412
+ }, {
413
+ readonly code: "090100";
414
+ readonly description: "Shipbuilding or Repair N.O.C.: Ship-Building/Repair NOC";
415
+ }, {
416
+ readonly code: "100200";
417
+ readonly description: "Sawmills and Automated Shake and Shingle Mills: Sawmills - Oper/Maint";
418
+ }, {
419
+ readonly code: "100208";
420
+ readonly description: "Sawmills and Automated Shake and Shingle Mills: Shake and shingle mills automated process (to be assigned by classification underwriter)";
421
+ }, {
422
+ readonly code: "100303";
423
+ readonly description: "Pole Yards and Log Home Manufacturing: Creosote works; pile and pole treating, dry kiln operations, pole yards, masts and spars yards and log home manufacturing";
424
+ }, {
425
+ readonly code: "100400";
426
+ readonly description: "Log Storage or Sorting Yards: Log Storage & Sorting Yards";
427
+ }, {
428
+ readonly code: "100502";
429
+ readonly description: "Shake and Shingle Mills - Non-Automated: Shake and/or Shingle Mills";
430
+ }, {
431
+ readonly code: "100600";
432
+ readonly description: "Land surveying services, N.O.C.";
433
+ }, {
434
+ readonly code: "100708";
435
+ readonly description: "Grading Inspection Bureaus/Forestry Services N.O.C.: Geophysical Exploration NOC";
436
+ }, {
437
+ readonly code: "100709";
438
+ readonly description: "Grading Inspection Bureaus/Forestry Services N.O.C.: Pipeline Inspecting-Radiograph";
439
+ }, {
440
+ readonly code: "100715";
441
+ readonly description: "Grading Inspection Bureaus/Forestry Services N.O.C.: Inspection & Grading Bureaus";
442
+ }, {
443
+ readonly code: "100716";
444
+ readonly description: "Grading Inspection Bureaus/Forestry Services N.O.C.: Foresters";
445
+ }, {
446
+ readonly code: "100718";
447
+ readonly description: "Grading Inspection Bureaus/Forestry Services N.O.C.: Scientific Tree Studies";
448
+ }, {
449
+ readonly code: "100719";
450
+ readonly description: "Grading Inspection Bureaus/Forestry Services N.O.C.: Timber Cruisers";
451
+ }, {
452
+ readonly code: "100720";
453
+ readonly description: "Grading Inspection Bureaus/Forestry Services N.O.C.: Tree Auditing";
454
+ }, {
455
+ readonly code: "100721";
456
+ readonly description: "Grading Inspection Bureaus/Forestry Services N.O.C.: Environmental Surveyor Service";
457
+ }, {
458
+ readonly code: "110104";
459
+ readonly description: "Parcel and Package Delivery Service: Automobile Delivery/Repossess";
460
+ }, {
461
+ readonly code: "110106";
462
+ readonly description: "Parcel and Package Delivery Service: Delivery by Whsl/Retail Distr";
463
+ }, {
464
+ readonly code: "110109";
465
+ readonly description: "Parcel and Package Delivery Service: Parcel Delivery Co-No Bulk Mer";
466
+ }, {
467
+ readonly code: "110114";
468
+ readonly description: "Parcel and Package Delivery Service: Delivery of Magazines & Books";
469
+ }, {
470
+ readonly code: "110117";
471
+ readonly description: "Parcel and Package Delivery Service: Driver Delivery Sales NOC";
472
+ }, {
473
+ readonly code: "110119";
474
+ readonly description: "Parcel and Package Delivery Service: Route Food Services";
475
+ }, {
476
+ readonly code: "110120";
477
+ readonly description: "Parcel and Package Delivery Service: Computer Tape/Acct Rec Del Svc";
478
+ }, {
479
+ readonly code: "110121";
480
+ readonly description: "Parcel and Package Delivery Service: Delivery Service";
481
+ }, {
482
+ readonly code: "110202";
483
+ readonly description: "Trucking N.O.C.: Trucking: Interstate";
484
+ }, {
485
+ readonly code: "110203";
486
+ readonly description: "Trucking N.O.C.: Trucking: Intrastate";
487
+ }, {
488
+ readonly code: "110204";
489
+ readonly description: "Trucking N.O.C.: Trucking: Combined Inter/Intra";
490
+ }, {
491
+ readonly code: "110300";
492
+ readonly description: "Solid Fuel Topsoil Firewood and Pallet Dealers: Coal & Solid Fuel Yards";
493
+ }, {
494
+ readonly code: "110302";
495
+ readonly description: "Solid Fuel Topsoil Firewood and Pallet Dealers: Firewood Dlrs Yard Operations";
496
+ }, {
497
+ readonly code: "110304";
498
+ readonly description: "Solid Fuel Topsoil Firewood and Pallet Dealers: Composting";
499
+ }, {
500
+ readonly code: "110306";
501
+ readonly description: "Solid Fuel Topsoil Firewood and Pallet Dealers: Top Soil/Beauty Bark Dlrs NOC";
502
+ }, {
503
+ readonly code: "110400";
504
+ readonly description: "Auto Wrecking: Auto/Truck Wrecking";
505
+ }, {
506
+ readonly code: "110500";
507
+ readonly description: "Septic Tank Pumping and Street Sweeping Services: Septic Tank Pumping";
508
+ }, {
509
+ readonly code: "110501";
510
+ readonly description: "Septic Tank Pumping and Street Sweeping Services: Str/Prk Lot Sweep & Pt Toil Sv";
511
+ }, {
512
+ readonly code: "110502";
513
+ readonly description: "Septic Tank Pumping and Street Sweeping Services: Vacuum Truck Service";
514
+ }, {
515
+ readonly code: "110600";
516
+ readonly description: "Tool Rental Stores: Rental Stores NOC";
517
+ }, {
518
+ readonly code: "110802";
519
+ readonly description: "Glass Merchants: Glass Tempering";
520
+ }, {
521
+ readonly code: "110803";
522
+ readonly description: "Glass Merchants: Glass Merchants-Flat or Sheet";
523
+ }, {
524
+ readonly code: "110804";
525
+ readonly description: "Glass Merchants: Auto Glass Merchants";
526
+ }, {
527
+ readonly code: "110805";
528
+ readonly description: "Glass Merchants: Combined Auto/Flat Glass Merch";
529
+ }, {
530
+ readonly code: "110806";
531
+ readonly description: "Glass Merchants: Glass: Cut/Etch/Bevel/Grind";
532
+ }, {
533
+ readonly code: "110900";
534
+ readonly description: "Auto Towing Services: Auto/Truck Towing Company NOC";
535
+ }, {
536
+ readonly code: "130100";
537
+ readonly description: "Electric Power Plants: Electric Light & Powerplants";
538
+ }, {
539
+ readonly code: "130101";
540
+ readonly description: "Electric Power Plants: Electric Light & Power Coops";
541
+ }, {
542
+ readonly code: "130102";
543
+ readonly description: "Electric Power Plants: Elec Light & Power Cos & Puds";
544
+ }, {
545
+ readonly code: "130105";
546
+ readonly description: "Electric Power Plants: Steam Heat/Power Plant Operatn";
547
+ }, {
548
+ readonly code: "130300";
549
+ readonly description: "Telephone Companies - All Other Employees N.O.C.: Telephone Cos All Other Emplys";
550
+ }, {
551
+ readonly code: "130301";
552
+ readonly description: "Telephone Companies - All Other Employees N.O.C.: Telegraph Cos All Other Emplys";
553
+ }, {
554
+ readonly code: "130400";
555
+ readonly description: "Telephone Companies - Office and Admin. Staff: Telephone Cos Adm Incl Cl/Sale";
556
+ }, {
557
+ readonly code: "130401";
558
+ readonly description: "Telephone Companies - Office and Admin. Staff: Telegraph Cos Adm Incl Cl/Sale";
559
+ }, {
560
+ readonly code: "130500";
561
+ readonly description: "TV Cable Companies - All Other Employees N.O.C.: TV Cable Cos Operation";
562
+ }, {
563
+ readonly code: "140101";
564
+ readonly description: "Taxi Cab Companies: Taxi-Flat rate/driver";
565
+ }, {
566
+ readonly code: "140102";
567
+ readonly description: "Taxi Cab Companies: Taxi-Flat rate/vehicle";
568
+ }, {
569
+ readonly code: "140103";
570
+ readonly description: "Taxi Cab Companies: Taxi-Actual hours";
571
+ }, {
572
+ readonly code: "140104";
573
+ readonly description: "Taxi Cab Companies: Pedicab & horse-drawn carriage co.";
574
+ }, {
575
+ readonly code: "140406";
576
+ readonly description: "Cabulance and Paratransit: Vessels/Ferries NOC";
577
+ }, {
578
+ readonly code: "140407";
579
+ readonly description: "Cabulance and Paratransit: Train Rides";
580
+ }, {
581
+ readonly code: "140411";
582
+ readonly description: "Cabulance and Paratransit: Escort & Pilot Cars";
583
+ }, {
584
+ readonly code: "140412";
585
+ readonly description: "Cabulance and Paratransit: Cabulance & Paratransit";
586
+ }, {
587
+ readonly code: "140500";
588
+ readonly description: "Ambulance Service: Ambulance Services";
589
+ }, {
590
+ readonly code: "140700";
591
+ readonly description: "Bus Companies - Private: Bus Companies - Private";
592
+ }, {
593
+ readonly code: "150100";
594
+ readonly description: "County and Tribal Councils-All Other Employees N.O.C.: County/Tax Dist NOC Othr Empls";
595
+ }, {
596
+ readonly code: "150101";
597
+ readonly description: "County and Tribal Councils-All Other Employees N.O.C.: Housing Auth All Other Emplys";
598
+ }, {
599
+ readonly code: "150108";
600
+ readonly description: "County and Tribal Councils-All Other Employees N.O.C.: Ind Trbl Concl All Othr Emplys";
601
+ }, {
602
+ readonly code: "150109";
603
+ readonly description: "County and Tribal Councils-All Other Employees N.O.C.: Military Base Maintenance";
604
+ }, {
605
+ readonly code: "150120";
606
+ readonly description: "County and Tribal Councils-All Other Employees N.O.C.: Comm Act Org - All Other/NOC";
607
+ }, {
608
+ readonly code: "150701";
609
+ readonly description: "Waterworks Operations Repair and Maintenance: Irrigation Ditches - Operation";
610
+ }, {
611
+ readonly code: "150702";
612
+ readonly description: "Waterworks Operations Repair and Maintenance: Water Works Opn Inc Meter Redr";
613
+ }, {
614
+ readonly code: "170102";
615
+ readonly description: "Ore Reduction: Ore Reduction";
616
+ }, {
617
+ readonly code: "170201";
618
+ readonly description: "Underground Mines: Mines NOC Udrgrnd All Opns";
619
+ }, {
620
+ readonly code: "170301";
621
+ readonly description: "Surface Mines: Open Cut Mining All Types";
622
+ }, {
623
+ readonly code: "170402";
624
+ readonly description: "Quarries: Quarries NOC Incl Crushing";
625
+ }, {
626
+ readonly code: "180101";
627
+ readonly description: "Lead Smelting Rolling Mills and Metal Recovery: Smelt/Sinter/Refine Lead";
628
+ }, {
629
+ readonly code: "180103";
630
+ readonly description: "Lead Smelting Rolling Mills and Metal Recovery: Rolling Mills Steel/Iron";
631
+ }, {
632
+ readonly code: "180108";
633
+ readonly description: "Lead Smelting Rolling Mills and Metal Recovery: Smelt/Sinter/Refine Ores NOC";
634
+ }, {
635
+ readonly code: "180109";
636
+ readonly description: "Lead Smelting Rolling Mills and Metal Recovery: Recover/Refine/Reproc Metals";
637
+ }, {
638
+ readonly code: "180200";
639
+ readonly description: "Aluminum Smelting: Aluminum Smelting";
640
+ }, {
641
+ readonly code: "200213";
642
+ readonly description: "Freight Handling Services: Freight Handling NOC";
643
+ }, {
644
+ readonly code: "200231";
645
+ readonly description: "Freight Handling Services: Refrig Car Load/Unload/Icing";
646
+ }, {
647
+ readonly code: "200421";
648
+ readonly description: "Iron and Steel Merchants: Iron/Steel Merchants-Not Scrap";
649
+ }, {
650
+ readonly code: "200702";
651
+ readonly description: "Grain Bean and Pea Elevators or Warehouses: Grain Elevator/Warehouse";
652
+ }, {
653
+ readonly code: "200703";
654
+ readonly description: "Grain Bean and Pea Elevators or Warehouses: Bean/Pea Elevator or Warehouse";
655
+ }, {
656
+ readonly code: "200801";
657
+ readonly description: "Field Bonded Warehouses: Warehouse-Fld Bond Incl Cl";
658
+ }, {
659
+ readonly code: "200900";
660
+ readonly description: "Lumber Yards and Building Material Dealers: Bldg.Material Dlrs/Lumber Yard";
661
+ }, {
662
+ readonly code: "200901";
663
+ readonly description: "Lumber Yards and Building Material Dealers: Electrical Supply Dealers";
664
+ }, {
665
+ readonly code: "200902";
666
+ readonly description: "Lumber Yards and Building Material Dealers: Farm Supply Stores";
667
+ }, {
668
+ readonly code: "200903";
669
+ readonly description: "Lumber Yards and Building Material Dealers: Hardware Store W/Bldg Material";
670
+ }, {
671
+ readonly code: "200904";
672
+ readonly description: "Lumber Yards and Building Material Dealers: Pump Plumbing Pipe Dealers";
673
+ }, {
674
+ readonly code: "200905";
675
+ readonly description: "Lumber Yards and Building Material Dealers: Warehouse Centers";
676
+ }, {
677
+ readonly code: "200906";
678
+ readonly description: "Lumber Yards and Building Material Dealers: Hvac Supply Dealers";
679
+ }, {
680
+ readonly code: "210100";
681
+ readonly description: "Grain Feed and Flour Mills: Grain & Feed Mills & Feed Mfg";
682
+ }, {
683
+ readonly code: "210101";
684
+ readonly description: "Grain Feed and Flour Mills: Hay Grain or Feed Dealers";
685
+ }, {
686
+ readonly code: "210102";
687
+ readonly description: "Grain Feed and Flour Mills: Seed Merchants & Grain Drying";
688
+ }, {
689
+ readonly code: "210105";
690
+ readonly description: "Grain Feed and Flour Mills: Hop Pellet Manufacturing";
691
+ }, {
692
+ readonly code: "210200";
693
+ readonly description: "Warehouses N.O.C. Grocery Dist & Recycle Centers: Warehouse-General Merchandise";
694
+ }, {
695
+ readonly code: "210204";
696
+ readonly description: "Warehouses N.O.C. Grocery Dist & Recycle Centers: Coll/Rec Sta/Dlr for Recyl Mat";
697
+ }, {
698
+ readonly code: "210211";
699
+ readonly description: "Warehouses N.O.C. Grocery Dist & Recycle Centers: Groc/Fruit/Prod Dist-Whsl/Retl";
700
+ }, {
701
+ readonly code: "210228";
702
+ readonly description: "Warehouses N.O.C. Grocery Dist & Recycle Centers: Wool/Cotton Merchants";
703
+ }, {
704
+ readonly code: "210300";
705
+ readonly description: "Fulfillment Centers";
706
+ }, {
707
+ readonly code: "210401";
708
+ readonly description: "Fruit & Vegetable Packing - Fresh: Vegetable Packing - Fresh";
709
+ }, {
710
+ readonly code: "210402";
711
+ readonly description: "Fruit & Vegetable Packing - Fresh: Fruit Packing - Fresh";
712
+ }, {
713
+ readonly code: "210500";
714
+ readonly description: "Beer Wine and Soft Drink Distributors: Comb Ber/Ale/Win/Sft Dnk Dist";
715
+ }, {
716
+ readonly code: "210501";
717
+ readonly description: "Beer Wine and Soft Drink Distributors: Beer/Ale/Wine Dist - All Oper";
718
+ }, {
719
+ readonly code: "210502";
720
+ readonly description: "Beer Wine and Soft Drink Distributors: Soft Drink Dist-All Oper";
721
+ }, {
722
+ readonly code: "210600";
723
+ readonly description: "Fertilizer Dealer: Fertilizer Dealer/Mfg/Delivery";
724
+ }, {
725
+ readonly code: "210601";
726
+ readonly description: "Fertilizer Dealer: Explosive Powder & Chemical Dealers";
727
+ }, {
728
+ readonly code: "220101";
729
+ readonly description: "Laundry & Dry Cleaning Services: Laundry or Dry Cleaning";
730
+ }, {
731
+ readonly code: "220203";
732
+ readonly description: "Carpet Cleaning: Carpet/Rug/Uph Cleaning";
733
+ }, {
734
+ readonly code: "220300";
735
+ readonly description: "Laundries - Commercial: Laundries-Commrcial/Industrial";
736
+ }, {
737
+ readonly code: "220400";
738
+ readonly description: "Laundries - Coin Operated: Laundry/Dry Clean-Coin Oper";
739
+ }, {
740
+ readonly code: "240100";
741
+ readonly description: "Pulp and Paper Goods Manufacturing N.O.C.: Paper or Pulp Mfg";
742
+ }, {
743
+ readonly code: "240103";
744
+ readonly description: "Pulp and Paper Goods Manufacturing N.O.C.: Corrugated/Fiber Bd Contnr Mfg";
745
+ }, {
746
+ readonly code: "240104";
747
+ readonly description: "Pulp and Paper Goods Manufacturing N.O.C.: Paper Coating/Corrugating";
748
+ }, {
749
+ readonly code: "240108";
750
+ readonly description: "Pulp and Paper Goods Manufacturing N.O.C.: Paper Goods Mfg NOC";
751
+ }, {
752
+ readonly code: "290300";
753
+ readonly description: "Wood Products Manufacturing N.O.C.: Manufacturing wood chips, hog fuel, bark, bark flour, fire logs or laths";
754
+ }, {
755
+ readonly code: "290308";
756
+ readonly description: "Wood Products Manufacturing N.O.C.: Manufacturing and assembly of wood doors, jambs, windows, sashes, stairs, molding or other miscellaneous millwork";
757
+ }, {
758
+ readonly code: "290310";
759
+ readonly description: "Wood Products Manufacturing N.O.C.: Manufacturing, assembly, or repair of wood containers or pallets; wood pallet dealer or recycle operations: Including repairs of pallets";
760
+ }, {
761
+ readonly code: "290312";
762
+ readonly description: "Wood Products Manufacturing N.O.C.: Manufacturing or assembly of wood products not otherwise classified (N.O.C.)";
763
+ }, {
764
+ readonly code: "290320";
765
+ readonly description: "Wood Products Manufacturing N.O.C.: Sign Manufacturing - Wood";
766
+ }, {
767
+ readonly code: "290321";
768
+ readonly description: "Wood Products Manufacturing N.O.C.: Truss Manufacturing - Wood";
769
+ }, {
770
+ readonly code: "290327";
771
+ readonly description: "Wood Products Manufacturing N.O.C.: Ridge Cap and/or Shim Mfg.";
772
+ }, {
773
+ readonly code: "290328";
774
+ readonly description: "Wood Products Manufacturing N.O.C.: Wood Boat Mfg/Repair";
775
+ }, {
776
+ readonly code: "290400";
777
+ readonly description: "Plywood and Veneer Manufacturing: Veneer-Commercial Production";
778
+ }, {
779
+ readonly code: "290401";
780
+ readonly description: "Plywood and Veneer Manufacturing: Plywood Manufacturing";
781
+ }, {
782
+ readonly code: "290500";
783
+ readonly description: "Furniture and Casket Manufacturing - Wood: Furn/Casket Mfg Wood/Refinish";
784
+ }, {
785
+ readonly code: "290601";
786
+ readonly description: "Pattern or Model Manufacturing; Wood Instrument Mfg.: Pattern or Model Mfg";
787
+ }, {
788
+ readonly code: "290614";
789
+ readonly description: "Pattern or Model Manufacturing; Wood Instrument Mfg.: Piano/Musical Instrument Mfg";
790
+ }, {
791
+ readonly code: "290700";
792
+ readonly description: "Cabinet and Countertop Manufacturing - Wood: Cabinet/Countertop/Fixture Mfg";
793
+ }, {
794
+ readonly code: "290800";
795
+ readonly description: "Factory Built Housing Manufacturing: Factory Built Housing";
796
+ }, {
797
+ readonly code: "290802";
798
+ readonly description: "Factory Built Housing Manufacturing: Cmpr/Trvl Trlr Factry Blt-Shop";
799
+ }, {
800
+ readonly code: "290803";
801
+ readonly description: "Factory Built Housing Manufacturing: Truck Canopy Mfg - Shop Only";
802
+ }, {
803
+ readonly code: "290900";
804
+ readonly description: "Woodenware Products Manufacturing: Woodenware:Hshld/Sprtng Gd Mfg";
805
+ }, {
806
+ readonly code: "310105";
807
+ readonly description: "Redi-Mix Concrete Dealers: Ready Mix Concrete Dealers";
808
+ }, {
809
+ readonly code: "310204";
810
+ readonly description: "Rock Wool Insulation Manufacturing: Stone wool insulation: Manufacturing";
811
+ }, {
812
+ readonly code: "310301";
813
+ readonly description: "Cement Manufacturing: Cement/Lime Manufacturing";
814
+ }, {
815
+ readonly code: "310302";
816
+ readonly description: "Cement Manufacturing: Bldg/Insulation Material Mfg";
817
+ }, {
818
+ readonly code: "310408";
819
+ readonly description: "Stone Cutting and Monument Dealers: Plaster Mills/Whiting Mfg";
820
+ }, {
821
+ readonly code: "310452";
822
+ readonly description: "Stone Cutting and Monument Dealers: Asbestos Prod/Mica Goods Mfg";
823
+ }, {
824
+ readonly code: "310453";
825
+ readonly description: "Stone Cutting and Monument Dealers: Soapstone/Soapstone Prods Mfg";
826
+ }, {
827
+ readonly code: "310455";
828
+ readonly description: "Stone Cutting and Monument Dealers: Plasterboard/Plaster Block Mfg";
829
+ }, {
830
+ readonly code: "310457";
831
+ readonly description: "Stone Cutting and Monument Dealers: Coating of Bldg Mat NOC - Shop";
832
+ }, {
833
+ readonly code: "310458";
834
+ readonly description: "Stone Cutting and Monument Dealers: Monument Dealers/Stone Cutting";
835
+ }, {
836
+ readonly code: "310506";
837
+ readonly description: "Concrete Products Manufacturing: Concrete Blk/Brick/Tile Mfg";
838
+ }, {
839
+ readonly code: "310507";
840
+ readonly description: "Concrete Products Manufacturing: Concrete Sewer/Irrig Pipe Mfg";
841
+ }, {
842
+ readonly code: "330307";
843
+ readonly description: "Meat Fish and Poultry Dealers - Retail: Fish Dealers-Retail";
844
+ }, {
845
+ readonly code: "330308";
846
+ readonly description: "Meat Fish and Poultry Dealers - Retail: Meat/Poultry Dealers-Retail";
847
+ }, {
848
+ readonly code: "330400";
849
+ readonly description: "Meat Fish and Poultry Dealers - Wholesale: Fish Processors-Wholesale";
850
+ }, {
851
+ readonly code: "330401";
852
+ readonly description: "Meat Fish and Poultry Dealers - Wholesale: Meat-Poultry Dealers/Whlse/Ret";
853
+ }, {
854
+ readonly code: "330902";
855
+ readonly description: "Motorcycle Dealers: Golf Cars Sales/Rntl Agencies";
856
+ }, {
857
+ readonly code: "330903";
858
+ readonly description: "Motorcycle Dealers: Motorcycle Sales/Rntl Agencies";
859
+ }, {
860
+ readonly code: "340201";
861
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Printing/Bookbinding Mach Mfg";
862
+ }, {
863
+ readonly code: "340202";
864
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Pump, safe, scale, auto jack, water meter, air compressor and elevator: Manufacturing or assembly";
865
+ }, {
866
+ readonly code: "340203";
867
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Shoe/Textile Machine Mfg";
868
+ }, {
869
+ readonly code: "340204";
870
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Confection/Food Proc Mach Mfg";
871
+ }, {
872
+ readonly code: "340205";
873
+ readonly description: "Machine shops, N.O.C., job shops, tool sharpening, mobile welding shops, storage battery manufacturing, assembly or repair, multimedia blasting, die casting, and heat treating metal";
874
+ }, {
875
+ readonly code: "340206";
876
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Power Saw/Lawn Eqmt/Sm Mtr Rpr";
877
+ }, {
878
+ readonly code: "340207";
879
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Gear Manufacturing or Grinding";
880
+ }, {
881
+ readonly code: "340208";
882
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Elevator Manufacturing";
883
+ }, {
884
+ readonly code: "340211";
885
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Metal Good Mfg & Machine Svs";
886
+ }, {
887
+ readonly code: "340212";
888
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Multi Media Blasting In Shop";
889
+ }, {
890
+ readonly code: "340214";
891
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Furnace/Heater/Radiator Mfg";
892
+ }, {
893
+ readonly code: "340216";
894
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Die Casting Manufacturing";
895
+ }, {
896
+ readonly code: "340226";
897
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Saw blade and abrasive wheel: Manufacturing, assembly, or sharpening";
898
+ }, {
899
+ readonly code: "340228";
900
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Heat Treating Metal";
901
+ }, {
902
+ readonly code: "340229";
903
+ readonly description: "Nut, bolt, screw, nail, tack, rivet, eyelet spike, needle, bedspring, wire mattress, N.O.C.: Manufacturing; sprinkler head, speedometer, carburetor: Manufacturing or assembly";
904
+ }, {
905
+ readonly code: "340232";
906
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Abrasive Wheel Mfg";
907
+ }, {
908
+ readonly code: "340240";
909
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Welding or Cutting NOC";
910
+ }, {
911
+ readonly code: "340248";
912
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Auto/Truck Radiatr/Htr Mfg/Rpr";
913
+ }, {
914
+ readonly code: "340260";
915
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Office Mach/Cash Register Mfg";
916
+ }, {
917
+ readonly code: "340261";
918
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Small Arms Mfg/Assembly";
919
+ }, {
920
+ readonly code: "340274";
921
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Tool: Manufacturing, not hot forming or stamping; machine finishing tools, die: Manufacturing ferrous";
922
+ }, {
923
+ readonly code: "340277";
924
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Auto, truck, semi-trailer and bus body: Manufacturing; travel trailer body: Manufacturing or repair; automobile or motorcycle: Manufacturing or assembly";
925
+ }, {
926
+ readonly code: "340283";
927
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Tool Mfg/Machine Finishing";
928
+ }, {
929
+ readonly code: "340285";
930
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Auto/Truck Parts Machng/Rebld";
931
+ }, {
932
+ readonly code: "340286";
933
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Auto/Truck/Aircraft Engine Mfg";
934
+ }, {
935
+ readonly code: "340291";
936
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Bed Springs/Wire Mattress Mfg";
937
+ }, {
938
+ readonly code: "340293";
939
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Valve Mfg";
940
+ }, {
941
+ readonly code: "340294";
942
+ readonly description: "Precision machined parts, N.O.C.: Manufacturing, gear: Manufacturing or grinding, small arms and ammunition: Manufacturing, assembly or rebuild, valve: Manufacturing";
943
+ }, {
944
+ readonly code: "340295";
945
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Battery Mfg";
946
+ }, {
947
+ readonly code: "340296";
948
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Auto or Motorcycle Mfg";
949
+ }, {
950
+ readonly code: "340298";
951
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Machinery Mfg/Assembly NOC";
952
+ }, {
953
+ readonly code: "340299";
954
+ readonly description: "Machine Shops and Machinery Mfg. N.O.C.: Photo Processing Machine Mfg";
955
+ }, {
956
+ readonly code: "340300";
957
+ readonly description: "Aircraft Manufacturing: Aircraft Mfg";
958
+ }, {
959
+ readonly code: "340401";
960
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Can Mfg";
961
+ }, {
962
+ readonly code: "340402";
963
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Galvanized Iron Works Mfg";
964
+ }, {
965
+ readonly code: "340403";
966
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Hardware Mfg NOC";
967
+ }, {
968
+ readonly code: "340404";
969
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Metal Stamping Incl Platng/Pol";
970
+ }, {
971
+ readonly code: "340406";
972
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Sign Mfg Metal - No Install";
973
+ }, {
974
+ readonly code: "340407";
975
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Metal Goods Mfg NOC/Undr 9 Ga";
976
+ }, {
977
+ readonly code: "340412";
978
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Aluminum Ware Mfg - Sheet Alum";
979
+ }, {
980
+ readonly code: "340418";
981
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Casket Manufacturing Metal";
982
+ }, {
983
+ readonly code: "340419";
984
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Awning Mfg-Metal-No Install";
985
+ }, {
986
+ readonly code: "340420";
987
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Metal furniture, shower door, showcases, coffin/casket: Manufacturing or assembly";
988
+ }, {
989
+ readonly code: "340421";
990
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Stove or Water Heater: Mfg.";
991
+ }, {
992
+ readonly code: "340424";
993
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Electric/Gas Light Fixture Mfg";
994
+ }, {
995
+ readonly code: "340425";
996
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Brass/Copper Goods Mfg";
997
+ }, {
998
+ readonly code: "340426";
999
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Aluminum window, sash, door and metal awnings: Manufacturing or assembly";
1000
+ }, {
1001
+ readonly code: "340427";
1002
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Auto Parts Mfg/Misc Stampd Pts";
1003
+ }, {
1004
+ readonly code: "340429";
1005
+ readonly description: "Metal Goods Manufacturing N.O.C. - Under 9 Gauge: Ski/Toboggan Mfg - Metal";
1006
+ }, {
1007
+ readonly code: "340502";
1008
+ readonly description: "Aircraft Parts Manufacturing N.O.C.: Precision Mach Parts Mfg NOC";
1009
+ }, {
1010
+ readonly code: "340600";
1011
+ readonly description: "Gas Stations-Full Service Car Washes and Detailers: Auto/Truck Service Stations";
1012
+ }, {
1013
+ readonly code: "340601";
1014
+ readonly description: "Gas Stations-Full Service Car Washes and Detailers: Auto/Truck Storage Garages";
1015
+ }, {
1016
+ readonly code: "340604";
1017
+ readonly description: "Gas Stations-Full Service Car Washes and Detailers: Auto/Truck Detailing by Cntrct";
1018
+ }, {
1019
+ readonly code: "340605";
1020
+ readonly description: "Gas Stations-Full Service Car Washes and Detailers: Auto or Truck Car Washes";
1021
+ }, {
1022
+ readonly code: "340700";
1023
+ readonly description: "Gas or Oil Dealers: Oil/Gas Dealers Whlsl/Retail";
1024
+ }, {
1025
+ readonly code: "340701";
1026
+ readonly description: "Gas or Oil Dealers: Asphalt/Bitumen Dealers";
1027
+ }, {
1028
+ readonly code: "340702";
1029
+ readonly description: "Gas or Oil Dealers: Processing Waste Oils Etc.";
1030
+ }, {
1031
+ readonly code: "340703";
1032
+ readonly description: "Gas or Oil Dealers: Oil Refining-Petroleum";
1033
+ }, {
1034
+ readonly code: "340704";
1035
+ readonly description: "Gas or Oil Dealers: Asphalt/Tar Distilling/Refinng";
1036
+ }, {
1037
+ readonly code: "340705";
1038
+ readonly description: "Gas or Oil Dealers: Oil/Gas Wells Operation";
1039
+ }, {
1040
+ readonly code: "340707";
1041
+ readonly description: "Gas or Oil Dealers: Oil/Gas Wells-Cementing";
1042
+ }, {
1043
+ readonly code: "340712";
1044
+ readonly description: "Gas or Oil Dealers: Oil/Gas Pipeline Operation";
1045
+ }, {
1046
+ readonly code: "340717";
1047
+ readonly description: "Gas or Oil Dealers: Asphalt Roofing Material Mfg";
1048
+ }, {
1049
+ readonly code: "340718";
1050
+ readonly description: "Gas or Oil Dealers: Asphalt Paving Material Mfg";
1051
+ }, {
1052
+ readonly code: "340719";
1053
+ readonly description: "Gas or Oil Dealers: Dewater Process Filter";
1054
+ }, {
1055
+ readonly code: "340800";
1056
+ readonly description: "Natural Gas Companies: Natural Gas Co Incl Cl/Sls";
1057
+ }, {
1058
+ readonly code: "340900";
1059
+ readonly description: "Gas Stations-Self Service - No Groceries: Self Service Gas Stations";
1060
+ }, {
1061
+ readonly code: "341000";
1062
+ readonly description: "Convenience Grocery Store - with Self Service Gas: Convenience Groc Marts W/Gas";
1063
+ }, {
1064
+ readonly code: "341100";
1065
+ readonly description: "Automobile Dealers Rentals and Service Shops: Auto/Motor Home Dealer/Rental";
1066
+ }, {
1067
+ readonly code: "341101";
1068
+ readonly description: "Automobile Dealers Rentals and Service Shops: Auto/Pickup Truck Repair Shop";
1069
+ }, {
1070
+ readonly code: "341102";
1071
+ readonly description: "Automobile Dealers Rentals and Service Shops: Auto Service Specialty Shop";
1072
+ }, {
1073
+ readonly code: "341200";
1074
+ readonly description: "Automobile Body Repair Centers Repair: Aut/Truck Body/Fender Rpr Shop";
1075
+ }, {
1076
+ readonly code: "341400";
1077
+ readonly description: "Boat Dealers Marinas and Boat Houses: Boat Dlrs Incl Parts/Svc/Rpr";
1078
+ }, {
1079
+ readonly code: "341401";
1080
+ readonly description: "Boat Dealers Marinas and Boat Houses: Marinas/Boat House Operations";
1081
+ }, {
1082
+ readonly code: "341500";
1083
+ readonly description: "Factory Built Housing Dealers: Manufactured/Modular Home Dlrs";
1084
+ }, {
1085
+ readonly code: "350100";
1086
+ readonly description: "Brick or Clay Product Manufacturing N.O.C.: Brick/Clay Products Mfg NOC";
1087
+ }, {
1088
+ readonly code: "350101";
1089
+ readonly description: "Brick or Clay Product Manufacturing N.O.C.: Flue Lining/Roofing Tile Mfg";
1090
+ }, {
1091
+ readonly code: "350317";
1092
+ readonly description: "Pottery and Glass Product Manufacturing: Pottery/China Mfg";
1093
+ }, {
1094
+ readonly code: "350319";
1095
+ readonly description: "Pottery and Glass Product Manufacturing: Decorative Tile Mfg";
1096
+ }, {
1097
+ readonly code: "350320";
1098
+ readonly description: "Pottery and Glass Product Manufacturing: Glassware Mfg NOC";
1099
+ }, {
1100
+ readonly code: "350321";
1101
+ readonly description: "Pottery and Glass Product Manufacturing: Glass Mfg NOC";
1102
+ }, {
1103
+ readonly code: "350323";
1104
+ readonly description: "Pottery and Glass Product Manufacturing: Agate or Enamel Ware Mfg";
1105
+ }, {
1106
+ readonly code: "350602";
1107
+ readonly description: "Mobile Crane and Hoisting Services: Crane/Hoist Rigging Contrs";
1108
+ }, {
1109
+ readonly code: "350603";
1110
+ readonly description: "Mobile Crane and Hoisting Services: Concrete Pump Truck Svc";
1111
+ }, {
1112
+ readonly code: "350901";
1113
+ readonly description: "Statuary and Ornament Manufacturing: Plaster Statuary or Orna Mfg";
1114
+ }, {
1115
+ readonly code: "351005";
1116
+ readonly description: "Plastic Goods Mfg. N.O.C.: Plastics: Foam Molding";
1117
+ }, {
1118
+ readonly code: "351006";
1119
+ readonly description: "Plastic Goods Mfg. N.O.C.: Plastics: Injection Molding";
1120
+ }, {
1121
+ readonly code: "351007";
1122
+ readonly description: "Plastic Products Manufacturing: Plastics manufacture, N.O.C.";
1123
+ }, {
1124
+ readonly code: "351102";
1125
+ readonly description: "Fiberglass Products Manufacturing N.O.C.: Fiberglass Goods Mfg";
1126
+ }, {
1127
+ readonly code: "351202";
1128
+ readonly description: "Plastic - Cutting Bending and Milling: Plastic-Cut Mill or Bend";
1129
+ }, {
1130
+ readonly code: "351300";
1131
+ readonly description: "Rubber Goods Manufacturing N.O.C.: Rubber Goods Mfg NOC";
1132
+ }, {
1133
+ readonly code: "360201";
1134
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Tel/Radio Apparatus Mfg NOC";
1135
+ }, {
1136
+ readonly code: "360202";
1137
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Instrmt Mfg/Rpr-Scie/Med/Prof";
1138
+ }, {
1139
+ readonly code: "360203";
1140
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Sound Recordg Equip Mfg/Repair";
1141
+ }, {
1142
+ readonly code: "360204";
1143
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Thermometer-Steam Ga Mfg/Rpr";
1144
+ }, {
1145
+ readonly code: "360205";
1146
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Dental Lab";
1147
+ }, {
1148
+ readonly code: "360206";
1149
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Jewelry Mfg/Trophy Engraving";
1150
+ }, {
1151
+ readonly code: "360207";
1152
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Electronic Parts Assbly";
1153
+ }, {
1154
+ readonly code: "360208";
1155
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Elec Cordset/Radio Ign Assbly";
1156
+ }, {
1157
+ readonly code: "360209";
1158
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Watch/Watch Case Mfg";
1159
+ }, {
1160
+ readonly code: "360210";
1161
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Camera/Motion Pic Proj Mfg/Rpr";
1162
+ }, {
1163
+ readonly code: "360211";
1164
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Fishing Tackle Mfg/Assbly NOC";
1165
+ }, {
1166
+ readonly code: "360212";
1167
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Incandest Lamp Elect Tube Mfg";
1168
+ }, {
1169
+ readonly code: "360214";
1170
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Metal Music Instrument Repair";
1171
+ }, {
1172
+ readonly code: "360223";
1173
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Electronics Products Mfg";
1174
+ }, {
1175
+ readonly code: "360224";
1176
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Tag/Fastener Bottle Cap Mfg";
1177
+ }, {
1178
+ readonly code: "360227";
1179
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Electronic Circuit Bd Assbly";
1180
+ }, {
1181
+ readonly code: "360228";
1182
+ readonly description: "Electronic Products and Jewelry Mfg./Dental Labs: Stereo Component Mfg or Assbly";
1183
+ }, {
1184
+ readonly code: "360310";
1185
+ readonly description: "Electroplating and Detinning N.O.C.: Furn Strip/Metal Plate/Polish";
1186
+ }, {
1187
+ readonly code: "360311";
1188
+ readonly description: "Electroplating and Detinning N.O.C.: Electroplating/De-Tinning NOC";
1189
+ }, {
1190
+ readonly code: "360312";
1191
+ readonly description: "Electroplating and Detinning N.O.C.: Painting In Shop NOC";
1192
+ }, {
1193
+ readonly code: "360416";
1194
+ readonly description: "Galvanizing or Tinning N.O.C.: Galvanizing or Tinning";
1195
+ }, {
1196
+ readonly code: "360528";
1197
+ readonly description: "Truck Manufacturing: Truck Mfg or Assembly";
1198
+ }, {
1199
+ readonly code: "370106";
1200
+ readonly description: "Chemical Mixing and Manufacturing: Chemicals, N.O.C.: Manufacturing chemical mixing, blending, and repackaging nitrate recovery from X-ray and photo films";
1201
+ }, {
1202
+ readonly code: "370108";
1203
+ readonly description: "Chemical Mixing and Manufacturing: Cosmetic, pharmaceutical, serum: Manufacturing";
1204
+ }, {
1205
+ readonly code: "370114";
1206
+ readonly description: "Chemical Mixing and Manufacturing: Extract, alcohol, perfume, manufacturing; mint, including distillation of essential oils N.O.C.";
1207
+ }, {
1208
+ readonly code: "370122";
1209
+ readonly description: "Chemical Mixing and Manufacturing: Pigment solutions or emulsion: Manufacturing";
1210
+ }, {
1211
+ readonly code: "370127";
1212
+ readonly description: "Chemical Mixing and Manufacturing: Haz/Toxic Material Repack";
1213
+ }, {
1214
+ readonly code: "370201";
1215
+ readonly description: "Breweries Wineries and Beverage Bottling: Breweries/Malt Houses";
1216
+ }, {
1217
+ readonly code: "370203";
1218
+ readonly description: "Breweries Wineries and Beverage Bottling: Bottling Beverages NOC";
1219
+ }, {
1220
+ readonly code: "370205";
1221
+ readonly description: "Breweries Wineries and Beverage Bottling: Wine Making or Wineries";
1222
+ }, {
1223
+ readonly code: "370814";
1224
+ readonly description: "Textile Good Manufacturing N.O.C.: Hide or Leather Dealers";
1225
+ }, {
1226
+ readonly code: "370815";
1227
+ readonly description: "Textile Good Manufacturing N.O.C.: Coating/WateRproof Textiles";
1228
+ }, {
1229
+ readonly code: "370816";
1230
+ readonly description: "Textile Good Manufacturing N.O.C.: Bleaching/Dyeing Textiles";
1231
+ }, {
1232
+ readonly code: "370818";
1233
+ readonly description: "Textile Good Manufacturing N.O.C.: Broom/Brush Mfg or Assembly";
1234
+ }, {
1235
+ readonly code: "370819";
1236
+ readonly description: "Textile Good Manufacturing N.O.C.: Cordage Rope/Twine Mfg";
1237
+ }, {
1238
+ readonly code: "370822";
1239
+ readonly description: "Textile Good Manufacturing N.O.C.: Pelting";
1240
+ }, {
1241
+ readonly code: "370823";
1242
+ readonly description: "Textile Good Manufacturing N.O.C.: Taxidermists";
1243
+ }, {
1244
+ readonly code: "370826";
1245
+ readonly description: "Textile Good Manufacturing N.O.C.: Net Webbing Thread Yarn Mfg";
1246
+ }, {
1247
+ readonly code: "370827";
1248
+ readonly description: "Textile Good Manufacturing N.O.C.: Spin or Weave Plush/Felt Mfg";
1249
+ }, {
1250
+ readonly code: "370829";
1251
+ readonly description: "Textile Good Manufacturing N.O.C.: Mattress/Box Springs Mfg NOC";
1252
+ }, {
1253
+ readonly code: "370832";
1254
+ readonly description: "Textile Good Manufacturing N.O.C.: Carpet/Rug Mfg";
1255
+ }, {
1256
+ readonly code: "370834";
1257
+ readonly description: "Textile Good Manufacturing N.O.C.: Batting or Wadding Mfg";
1258
+ }, {
1259
+ readonly code: "370839";
1260
+ readonly description: "Textile Good Manufacturing N.O.C.: Textile Goods NOC - Mfg";
1261
+ }, {
1262
+ readonly code: "370840";
1263
+ readonly description: "Textile Good Manufacturing N.O.C.: Bags/Sack: Mfg-Industrial Size";
1264
+ }, {
1265
+ readonly code: "380234";
1266
+ readonly description: "Garments/Handbag/Pack/Tent Manufacturing: Embroidery or screen printing services on fabric products or garments; knitted fabric; knitted garments; or wigs: Manufacturing";
1267
+ }, {
1268
+ readonly code: "380240";
1269
+ readonly description: "Garments/Handbag/Pack/Tent Manufacturing: Miscellaneous soft goods manufacturing: Hand or machine sewing N.O.C.";
1270
+ }, {
1271
+ readonly code: "380244";
1272
+ readonly description: "Shoe, boot, hat, artificial feather, artificial flower, handcarved rug or inlaid rug: Manufacturing; Rubber or pliable goods manufacturing by cutting or gluing, N.O.C.";
1273
+ }, {
1274
+ readonly code: "380800";
1275
+ readonly description: "Upholstery Work N.O.C.: Upholstery Work NOC";
1276
+ }, {
1277
+ readonly code: "390100";
1278
+ readonly description: "Bakeries - Retail: Bakeries - Retail";
1279
+ }, {
1280
+ readonly code: "390101";
1281
+ readonly description: "Bakeries - Retail: Bakeries-Retail Specialty Shop";
1282
+ }, {
1283
+ readonly code: "390200";
1284
+ readonly description: "Fruit/Vegetable Canneries/Food Product Mfg. N.O.C.: Fruit and vegetable: Cannery and freezer operations; fruit syrup or juice, cider, jam or jelly";
1285
+ }, {
1286
+ readonly code: "390201";
1287
+ readonly description: "Fruit/Vegetable Canneries/Food Product Mfg. N.O.C.: Fruit/Veg Evap/Preserv/Dehydr";
1288
+ }, {
1289
+ readonly code: "390211";
1290
+ readonly description: "Fruit/Vegetable Canneries/Food Product Mfg. N.O.C.: Miscellaneous foods: Manufacturing";
1291
+ }, {
1292
+ readonly code: "390214";
1293
+ readonly description: "Fruit/Vegetable Canneries/Food Product Mfg. N.O.C.: Food Sundries Mfg/Process NOC";
1294
+ }, {
1295
+ readonly code: "390228";
1296
+ readonly description: "Dairy products: Bottling or Manufacturing";
1297
+ }, {
1298
+ readonly code: "390308";
1299
+ readonly description: "Sugar Refining: Sugar Refining";
1300
+ }, {
1301
+ readonly code: "390500";
1302
+ readonly description: "Restaurants and Taverns: Restaurants";
1303
+ }, {
1304
+ readonly code: "390501";
1305
+ readonly description: "Restaurants and Taverns: Food trucks, food, drink, and candy vendors or concessionaires";
1306
+ }, {
1307
+ readonly code: "390503";
1308
+ readonly description: "Restaurants and Taverns: Commissaries Constr/Logging Op";
1309
+ }, {
1310
+ readonly code: "390504";
1311
+ readonly description: "Restaurants and Taverns: Eating Establishments NOC";
1312
+ }, {
1313
+ readonly code: "390506";
1314
+ readonly description: "Restaurants and Taverns: Taverns";
1315
+ }, {
1316
+ readonly code: "390507";
1317
+ readonly description: "Restaurants and Taverns: Restaurant/Spirits Beer Wine";
1318
+ }, {
1319
+ readonly code: "390508";
1320
+ readonly description: "Restaurants and Taverns: Pizza Parlors";
1321
+ }, {
1322
+ readonly code: "390509";
1323
+ readonly description: "Restaurants and Taverns: Fast Foods-Drive-Ins NOC";
1324
+ }, {
1325
+ readonly code: "390511";
1326
+ readonly description: "Restaurants and Taverns: Soft Drink Lounges";
1327
+ }, {
1328
+ readonly code: "390512";
1329
+ readonly description: "Restaurants and Taverns: Ice Cream Parlors";
1330
+ }, {
1331
+ readonly code: "390513";
1332
+ readonly description: "Restaurants and Taverns: Candy/Nut/Popcorn Stores-Rtl";
1333
+ }, {
1334
+ readonly code: "390514";
1335
+ readonly description: "Restaurants and Taverns: Espresso/Coffee Stands or Cart";
1336
+ }, {
1337
+ readonly code: "390600";
1338
+ readonly description: "Bakeries, cracker, potato chip, ravioli/tamale, pasta, and pizza: Manufacturing N.O.C.";
1339
+ }, {
1340
+ readonly code: "390605";
1341
+ readonly description: "Bakeries, cracker, potato chip, ravioli/tamale, pasta, and pizza: Confectionery, chewing gum or cough drop: Manufacturing";
1342
+ }, {
1343
+ readonly code: "390900";
1344
+ readonly description: "Catering Services: Catering Service";
1345
+ }, {
1346
+ readonly code: "400200";
1347
+ readonly description: "Dairy Products Manufacturing N.O.C.: Dairy Products Mfg NOC";
1348
+ }, {
1349
+ readonly code: "400201";
1350
+ readonly description: "Dairy Products Manufacturing N.O.C.: Butter/Cheese/Ice Cream Mfg";
1351
+ }, {
1352
+ readonly code: "410100";
1353
+ readonly description: "Printing: Printing/Lithography/Engraving";
1354
+ }, {
1355
+ readonly code: "410102";
1356
+ readonly description: "Printing: Rubber Stamp Mfg/Assembling";
1357
+ }, {
1358
+ readonly code: "410103";
1359
+ readonly description: "Printing: Book Binding";
1360
+ }, {
1361
+ readonly code: "410301";
1362
+ readonly description: "Newspaper Publishing: Newspaper Publishing";
1363
+ }, {
1364
+ readonly code: "410704";
1365
+ readonly description: "Business Machines-Installation Service and Repair: Business Machine Svc & Rpr";
1366
+ }, {
1367
+ readonly code: "410720";
1368
+ readonly description: "Business Machines-Installation Service and Repair: Piano Tuning";
1369
+ }, {
1370
+ readonly code: "410815";
1371
+ readonly description: "Mailing Services: Ltr/Mail/Add Co-Incl Cl/Sls";
1372
+ }, {
1373
+ readonly code: "410910";
1374
+ readonly description: "Sign Painting - In Shop and Buildings: Sign Paint/Letter In Building";
1375
+ }, {
1376
+ readonly code: "410918";
1377
+ readonly description: "Sign Painting - In Shop and Buildings: Sign Painting In Shop";
1378
+ }, {
1379
+ readonly code: "420100";
1380
+ readonly description: "Port Districts: Longshoring & Stevedoring";
1381
+ }, {
1382
+ readonly code: "420102";
1383
+ readonly description: "Port Districts: Port Districts Incl Salesmen";
1384
+ }, {
1385
+ readonly code: "430105";
1386
+ readonly description: "Meat Products Mfg./Slaughter and Packing Houses: Glue Lard or Tallow Mfg";
1387
+ }, {
1388
+ readonly code: "430110";
1389
+ readonly description: "Meat Products Mfg./Slaughter and Packing Houses: Sausage Mfg";
1390
+ }, {
1391
+ readonly code: "430111";
1392
+ readonly description: "Meat Products Mfg./Slaughter and Packing Houses: Packing House - All Operations";
1393
+ }, {
1394
+ readonly code: "430112";
1395
+ readonly description: "Meat Products Mfg./Slaughter and Packing Houses: Meat Products Mfg";
1396
+ }, {
1397
+ readonly code: "430113";
1398
+ readonly description: "Meat Products Mfg./Slaughter and Packing Houses: Peat Moss Shredding & Baling";
1399
+ }, {
1400
+ readonly code: "430117";
1401
+ readonly description: "Meat Products Mfg./Slaughter and Packing Houses: Tanneries Fur Mfg";
1402
+ }, {
1403
+ readonly code: "430119";
1404
+ readonly description: "Meat Products Mfg./Slaughter and Packing Houses: Sausage Casing-Wholesale Dealr";
1405
+ }, {
1406
+ readonly code: "430121";
1407
+ readonly description: "Meat Products Mfg./Slaughter and Packing Houses: Rendering Works NOC";
1408
+ }, {
1409
+ readonly code: "430122";
1410
+ readonly description: "Meat Products Mfg./Slaughter and Packing Houses: Slaughter Houses";
1411
+ }, {
1412
+ readonly code: "430214";
1413
+ readonly description: "Custom Meat Cutting: Custom Meat Cutting-Shop Only";
1414
+ }, {
1415
+ readonly code: "430215";
1416
+ readonly description: "Custom Meat Cutting: Custom Meat Cutting-Farm Kill";
1417
+ }, {
1418
+ readonly code: "430216";
1419
+ readonly description: "Custom Meat Cutting: Farm Kill Only";
1420
+ }, {
1421
+ readonly code: "430400";
1422
+ readonly description: "Feed Lots and Stock Yards: Feed Lots/Stockyards";
1423
+ }, {
1424
+ readonly code: "430402";
1425
+ readonly description: "Feed Lots and Stock Yards: Livestock Auct/Sales Yd/Buyers";
1426
+ }, {
1427
+ readonly code: "430506";
1428
+ readonly description: "Solid Waste Collection Services/Landfill Operations: Garbage Landfill Works";
1429
+ }, {
1430
+ readonly code: "430518";
1431
+ readonly description: "Solid Waste Collection Services/Landfill Operations: Solid Waste/Refuse Collection";
1432
+ }, {
1433
+ readonly code: "430520";
1434
+ readonly description: "Solid Waste Collection Services/Landfill Operations: Haz/Toxic Mat.Process/Hdlg";
1435
+ }, {
1436
+ readonly code: "430521";
1437
+ readonly description: "Solid Waste Collection Services/Landfill Operations: Tire Collection Center";
1438
+ }, {
1439
+ readonly code: "430522";
1440
+ readonly description: "Solid Waste Collection Services/Landfill Operations: Debris Removal Const/Non-Const";
1441
+ }, {
1442
+ readonly code: "440100";
1443
+ readonly description: "Cold Storage Lockers: Cold Storage Locker Operations";
1444
+ }, {
1445
+ readonly code: "440200";
1446
+ readonly description: "Ice Dealers: Ice Mfg/Artificial/Ice Harvest";
1447
+ }, {
1448
+ readonly code: "440202";
1449
+ readonly description: "Ice Dealers: Ice Dealers";
1450
+ }, {
1451
+ readonly code: "440405";
1452
+ readonly description: "Cold Storage Warehouse: Storage Warehouse - Cold";
1453
+ }, {
1454
+ readonly code: "450100";
1455
+ readonly description: "Radio or Television - Field Employees: Radio/TV-Trnmtr & Field Emplys";
1456
+ }, {
1457
+ readonly code: "450200";
1458
+ readonly description: "Radio or Television - All Other Employees: Radio Stations-All Other Empl";
1459
+ }, {
1460
+ readonly code: "450201";
1461
+ readonly description: "Radio or Television - All Other Employees: TV Stn or Video Pr-All Otr Emp";
1462
+ }, {
1463
+ readonly code: "450202";
1464
+ readonly description: "Radio or Television - All Other Employees: Recording Co-All Other Empl";
1465
+ }, {
1466
+ readonly code: "450203";
1467
+ readonly description: "Radio or Television - All Other Employees: TV Cable Co-All Other Empl";
1468
+ }, {
1469
+ readonly code: "450400";
1470
+ readonly description: "Movie and Live Theaters: Theatres-All Types Incl Cl/Sls";
1471
+ }, {
1472
+ readonly code: "460101";
1473
+ readonly description: "Explosives Manufacturing: Fireworks Mfg";
1474
+ }, {
1475
+ readonly code: "460102";
1476
+ readonly description: "Explosives Manufacturing: Powder Works Mfg";
1477
+ }, {
1478
+ readonly code: "460103";
1479
+ readonly description: "Explosives Manufacturing: Comb Chemicals/Explosives Mfg";
1480
+ }, {
1481
+ readonly code: "480100";
1482
+ readonly description: "Geoduck Harvest By Divers: Geoduck Harvest by Divers";
1483
+ }, {
1484
+ readonly code: "480202";
1485
+ readonly description: "Vegetable Farms - Machine Harvest: Farms: Berry";
1486
+ }, {
1487
+ readonly code: "480203";
1488
+ readonly description: "Vegetable Farms - Machine Harvest: Farms: Bulb raising, flower or vegetable seeds, floral grow operations - Florists - Cultivating or gardening";
1489
+ }, {
1490
+ readonly code: "480206";
1491
+ readonly description: "Vegetable Farms - Machine Harvest: Picking Forest Products";
1492
+ }, {
1493
+ readonly code: "480212";
1494
+ readonly description: "Vegetable Farms - Machine Harvest: Farms: Field vegetable crops - Mechanically harvested for fresh market";
1495
+ }, {
1496
+ readonly code: "480302";
1497
+ readonly description: "Orchards: Orchards: Fruit";
1498
+ }, {
1499
+ readonly code: "480304";
1500
+ readonly description: "Orchards: Orchards: Nut";
1501
+ }, {
1502
+ readonly code: "480316";
1503
+ readonly description: "Orchards: Farms: NOC";
1504
+ }, {
1505
+ readonly code: "480400";
1506
+ readonly description: "Poultry Farms: Farms: Poultry";
1507
+ }, {
1508
+ readonly code: "480403";
1509
+ readonly description: "Poultry Farms: Egg Production";
1510
+ }, {
1511
+ readonly code: "480405";
1512
+ readonly description: "Poultry Farms: Farms: Mink/Fox/Rabbit/Rodent";
1513
+ }, {
1514
+ readonly code: "480406";
1515
+ readonly description: "Poultry Farms: Farms: Worm";
1516
+ }, {
1517
+ readonly code: "480407";
1518
+ readonly description: "Poultry Farms: Farms: Apiaries - Bees";
1519
+ }, {
1520
+ readonly code: "480408";
1521
+ readonly description: "Poultry Farms: Farms: Aviaries - Birds";
1522
+ }, {
1523
+ readonly code: "480409";
1524
+ readonly description: "Poultry Farms: Egg Grading/Candling/Packing";
1525
+ }, {
1526
+ readonly code: "480500";
1527
+ readonly description: "Nurseries: Nurseries: NOC";
1528
+ }, {
1529
+ readonly code: "480505";
1530
+ readonly description: "Nurseries: Nurseries: Tree";
1531
+ }, {
1532
+ readonly code: "480506";
1533
+ readonly description: "Nurseries: Farms: Sod Growing";
1534
+ }, {
1535
+ readonly code: "480507";
1536
+ readonly description: "Nurseries: Farms: Aquatic Plant Raising";
1537
+ }, {
1538
+ readonly code: "480508";
1539
+ readonly description: "Nurseries: Farms: Shellfish-Hand Harvest";
1540
+ }, {
1541
+ readonly code: "480509";
1542
+ readonly description: "Nurseries: Xmas Tree Sales-Retail/U-Cut";
1543
+ }, {
1544
+ readonly code: "480601";
1545
+ readonly description: "Berry Picking: Farms: Ground Handpicking";
1546
+ }, {
1547
+ readonly code: "480801";
1548
+ readonly description: "Diversified Field Crops: Farms: Field crops - Not for fresh market";
1549
+ }, {
1550
+ readonly code: "480807";
1551
+ readonly description: "Diversified Field Crops: Farms: Potato Sorting/Storage";
1552
+ }, {
1553
+ readonly code: "480811";
1554
+ readonly description: "Diversified Field Crops: Custom farm services (by contractor)";
1555
+ }, {
1556
+ readonly code: "480901";
1557
+ readonly description: "Greenhouses: Greenhouses NOC";
1558
+ }, {
1559
+ readonly code: "480904";
1560
+ readonly description: "Greenhouses: Farms: Mushroom Raising/Harv";
1561
+ }, {
1562
+ readonly code: "480905";
1563
+ readonly description: "Greenhouses: Farms: Sprout Raising/Harv";
1564
+ }, {
1565
+ readonly code: "481000";
1566
+ readonly description: "Vegetable Farms - Hand Harvest: Farms: Vegetable-Hand Harvest";
1567
+ }, {
1568
+ readonly code: "481100";
1569
+ readonly description: "Hop and Mint Farms: Farms: Hops";
1570
+ }, {
1571
+ readonly code: "481101";
1572
+ readonly description: "Hop and Mint Farms: Farms: Mint";
1573
+ }, {
1574
+ readonly code: "481200";
1575
+ readonly description: "Fish Hatcheries: Fish & Shellfish Hatcheries";
1576
+ }, {
1577
+ readonly code: "481300";
1578
+ readonly description: "Vineyards: Vineyards";
1579
+ }, {
1580
+ readonly code: "481400";
1581
+ readonly description: "Farms: Internship program (to be assigned only by the agricultural specialist)";
1582
+ }, {
1583
+ readonly code: "481500";
1584
+ readonly description: "Farms: Internship program (to be assigned only by the agricultural specialist)";
1585
+ }, {
1586
+ readonly code: "481600";
1587
+ readonly description: "Farms: Internship program (to be assigned only by the agricultural specialist)";
1588
+ }, {
1589
+ readonly code: "490000";
1590
+ readonly description: "Construction Project or Site Superintendent/Manager: Superint/Proj. Mgr - Const";
1591
+ }, {
1592
+ readonly code: "490100";
1593
+ readonly description: "Consulting Engineers and Architectural Services: Consult Engineer/Architect Frm";
1594
+ }, {
1595
+ readonly code: "490116";
1596
+ readonly description: "Consulting Engineers and Architectural Services: Geologists NOC - Oil or Gas";
1597
+ }, {
1598
+ readonly code: "490117";
1599
+ readonly description: "Consulting Engineers and Architectural Services: Land Surveying Services";
1600
+ }, {
1601
+ readonly code: "490200";
1602
+ readonly description: "State Government - Office and Admin. Employees: State Govt: Clerical/Admin Ofc";
1603
+ }, {
1604
+ readonly code: "490306";
1605
+ readonly description: "Insurance Inspection Services: Marine Appraising";
1606
+ }, {
1607
+ readonly code: "490307";
1608
+ readonly description: "Insurance Inspection Services: Boiler Inspecting NOC";
1609
+ }, {
1610
+ readonly code: "490308";
1611
+ readonly description: "Insurance Inspection Services: Elevator Inspecting-No Service";
1612
+ }, {
1613
+ readonly code: "490309";
1614
+ readonly description: "Insurance Inspection Services: Inspection for Insurance/Value";
1615
+ }, {
1616
+ readonly code: "490310";
1617
+ readonly description: "Insurance Inspection Services: Inspection of Buildings";
1618
+ }, {
1619
+ readonly code: "490400";
1620
+ readonly description: "Clerical Office N.O.C.: Clerical Office NOC & Draftsmn";
1621
+ }, {
1622
+ readonly code: "490413";
1623
+ readonly description: "Clerical Office N.O.C.: Clerical Office - Insurance Co";
1624
+ }, {
1625
+ readonly code: "490417";
1626
+ readonly description: "Clerical Office N.O.C.: Clerical Off-Employee Leasing";
1627
+ }, {
1628
+ readonly code: "490420";
1629
+ readonly description: "Clerical Office N.O.C.: Comm Act Org - Clerical Office";
1630
+ }, {
1631
+ readonly code: "490504";
1632
+ readonly description: "Motels and Hotels: Hotels/Motels";
1633
+ }, {
1634
+ readonly code: "490601";
1635
+ readonly description: "Colleges & Universities: Public Instit - Higher Lrng";
1636
+ }, {
1637
+ readonly code: "490602";
1638
+ readonly description: "Colleges & Universities: Private Instit - Higher Lrng";
1639
+ }, {
1640
+ readonly code: "490700";
1641
+ readonly description: "Inmates - Prison Industries: Inmates - Prison Industries";
1642
+ }, {
1643
+ readonly code: "490701";
1644
+ readonly description: "Inmates - Prison Industries: Inmate Wk Opport-City";
1645
+ }, {
1646
+ readonly code: "490702";
1647
+ readonly description: "Inmates - Prison Industries: Inmate Wk Opport-County";
1648
+ }, {
1649
+ readonly code: "490800";
1650
+ readonly description: "Inmates - Adult Camps: Inmates - Adult Honor Camps";
1651
+ }, {
1652
+ readonly code: "490900";
1653
+ readonly description: "Inmates - Juvenile Camps: Inmates - Juvenile Forest Camp";
1654
+ }, {
1655
+ readonly code: "491000";
1656
+ readonly description: "Property and Building Management Services: Property & Building Management";
1657
+ }, {
1658
+ readonly code: "491001";
1659
+ readonly description: "Property and Building Management Services: Chimney cleaning - Residential and commercial buildings";
1660
+ }, {
1661
+ readonly code: "491002";
1662
+ readonly description: "Property and Building Management Services: Mini Storage Warehouse";
1663
+ }, {
1664
+ readonly code: "491003";
1665
+ readonly description: "Property and Building Management Services: Real Estate Signs-Temporary";
1666
+ }, {
1667
+ readonly code: "491100";
1668
+ readonly description: "Construction Estimator: Construction Estimators";
1669
+ }, {
1670
+ readonly code: "500103";
1671
+ readonly description: "Logging Operations N.O.C.: Logging NOC";
1672
+ }, {
1673
+ readonly code: "500104";
1674
+ readonly description: "Logging Operations N.O.C.: Shake/Shingle Cutting In Woods";
1675
+ }, {
1676
+ readonly code: "500105";
1677
+ readonly description: "Logging Operations N.O.C.: Firewood Cutting-All Woods Opn";
1678
+ }, {
1679
+ readonly code: "500106";
1680
+ readonly description: "Logging Operations N.O.C.: Sawmill Operations In Woods";
1681
+ }, {
1682
+ readonly code: "500200";
1683
+ readonly description: "Log Booming and Rafting: Booming & Rafting Logs";
1684
+ }, {
1685
+ readonly code: "500301";
1686
+ readonly description: "Log Hauling: Log Hauling by Contractor";
1687
+ }, {
1688
+ readonly code: "500302";
1689
+ readonly description: "Log Hauling: Log Truck Drivers NOC";
1690
+ }, {
1691
+ readonly code: "500404";
1692
+ readonly description: "Forestry and Timberland Services - Manual Labor: Animal Damage Ctrl-Manual";
1693
+ }, {
1694
+ readonly code: "500405";
1695
+ readonly description: "Forestry and Timberland Services - Manual Labor: Beaver Trapping";
1696
+ }, {
1697
+ readonly code: "500406";
1698
+ readonly description: "Forestry and Timberland Services - Manual Labor: Chemical Spraying-Manual";
1699
+ }, {
1700
+ readonly code: "500407";
1701
+ readonly description: "Forestry and Timberland Services - Manual Labor: Cone Picking-Manual";
1702
+ }, {
1703
+ readonly code: "500409";
1704
+ readonly description: "Forestry and Timberland Services - Manual Labor: Hydro Seed/Erosion Ctrl-Manual";
1705
+ }, {
1706
+ readonly code: "500411";
1707
+ readonly description: "Forestry and Timberland Services - Manual Labor: Pruning-Manual";
1708
+ }, {
1709
+ readonly code: "500412";
1710
+ readonly description: "Forestry and Timberland Services - Manual Labor: Tree Netting-Manual";
1711
+ }, {
1712
+ readonly code: "500413";
1713
+ readonly description: "Forestry and Timberland Services - Manual Labor: Tree Planting-Manual";
1714
+ }, {
1715
+ readonly code: "500414";
1716
+ readonly description: "Forestry and Timberland Services - Manual Labor: Tree Thinning/Hand Slashing";
1717
+ }, {
1718
+ readonly code: "500418";
1719
+ readonly description: "Forestry and Timberland Services - Manual Labor: Misc Forest Svcs NOC-Manual";
1720
+ }, {
1721
+ readonly code: "500500";
1722
+ readonly description: "Mechanized Logging: Mechanical Logging/Tree Thin.";
1723
+ }, {
1724
+ readonly code: "500501";
1725
+ readonly description: "Logging Machine Operators";
1726
+ }, {
1727
+ readonly code: "500600";
1728
+ readonly description: "Forestry/Timberland Services - Machine Operations: Brush Clearing-Machine";
1729
+ }, {
1730
+ readonly code: "500601";
1731
+ readonly description: "Forestry/Timberland Services - Machine Operations: Dust Control-Machine";
1732
+ }, {
1733
+ readonly code: "500602";
1734
+ readonly description: "Forestry/Timberland Services - Machine Operations: Forest Fire Fighting-Machine";
1735
+ }, {
1736
+ readonly code: "500603";
1737
+ readonly description: "Forestry/Timberland Services - Machine Operations: Forest Trail Const-Machine";
1738
+ }, {
1739
+ readonly code: "500604";
1740
+ readonly description: "Forestry/Timberland Services - Machine Operations: Scarifying-Machine";
1741
+ }, {
1742
+ readonly code: "500605";
1743
+ readonly description: "Forestry/Timberland Services - Machine Operations: Slash Burning-Machine";
1744
+ }, {
1745
+ readonly code: "500606";
1746
+ readonly description: "Forestry/Timberland Services - Machine Operations: Slash Piling-Machine";
1747
+ }, {
1748
+ readonly code: "500607";
1749
+ readonly description: "Forestry/Timberland Services - Machine Operations: Slope Grooming-Machine";
1750
+ }, {
1751
+ readonly code: "500608";
1752
+ readonly description: "Forestry/Timberland Services - Machine Operations: Misc Forest Svcs NOC-Machine";
1753
+ }, {
1754
+ readonly code: "510131";
1755
+ readonly description: "Pipe Manufacturing - Iron or Steel: Iron/Steel Mfg: Pipe or Tube";
1756
+ }, {
1757
+ readonly code: "510300";
1758
+ readonly description: "Foundries N.O.C.: Foundries Ferrous/Non Ferrous";
1759
+ }, {
1760
+ readonly code: "510608";
1761
+ readonly description: "Blacksmithing and Forging Works: Blacksmithing Spring/Bumpr Mfg";
1762
+ }, {
1763
+ readonly code: "510609";
1764
+ readonly description: "Blacksmithing and Forging Works: Tool Forging - Hot Form/Stamp";
1765
+ }, {
1766
+ readonly code: "510610";
1767
+ readonly description: "Blacksmithing and Forging Works: Forging Works Drop/Machine";
1768
+ }, {
1769
+ readonly code: "510855";
1770
+ readonly description: "Cable or Wire Rope Manufacturing: Cable/Wire Rope Mfg - Drawing";
1771
+ }, {
1772
+ readonly code: "510856";
1773
+ readonly description: "Cable or Wire Rope Manufacturing: Cable/Wire Rope Mfg No Drawing";
1774
+ }, {
1775
+ readonly code: "510857";
1776
+ readonly description: "Cable or Wire Rope Manufacturing: Cable/Wire Insul/Covering Mfg";
1777
+ }, {
1778
+ readonly code: "510946";
1779
+ readonly description: "Heavy Machinery Manufacturing: Hvy Mach & Equip Mfg or Rpr";
1780
+ }, {
1781
+ readonly code: "510947";
1782
+ readonly description: "Heavy Machinery Manufacturing: Hvy Arms Mfg or Rpr";
1783
+ }, {
1784
+ readonly code: "520175";
1785
+ readonly description: "Electric Equipment Manufacturing: Elect Power/Transmission Mfg";
1786
+ }, {
1787
+ readonly code: "520176";
1788
+ readonly description: "Electric Equipment Manufacturing: Elect Appl & Wire Harness Mfg";
1789
+ }, {
1790
+ readonly code: "520178";
1791
+ readonly description: "Electric Equipment Manufacturing: Elect Mtrs & Generators Mfg";
1792
+ }, {
1793
+ readonly code: "520458";
1794
+ readonly description: "Railroad Car Manufacturing: Railroad Car Mfg/Rpr";
1795
+ }, {
1796
+ readonly code: "520678";
1797
+ readonly description: "Construction or Logging Contractors - Permanent Yard: Logging Permanent Yard or Shop";
1798
+ }, {
1799
+ readonly code: "520679";
1800
+ readonly description: "Construction or Logging Contractors - Permanent Yard: Contractors Perm Yard or Shop";
1801
+ }, {
1802
+ readonly code: "520680";
1803
+ readonly description: "Construction or Logging Contractors - Permanent Yard: Permanent Yard/Shop: Trucking";
1804
+ }, {
1805
+ readonly code: "520700";
1806
+ readonly description: "Bowling Centers and Skating Rinks: Bowling Centers";
1807
+ }, {
1808
+ readonly code: "520701";
1809
+ readonly description: "Bowling Centers and Skating Rinks: Skating Rinks - Ice or Roller";
1810
+ }, {
1811
+ readonly code: "520800";
1812
+ readonly description: "Iron Works - Shop: Iron/Steelworks Shop Mfg";
1813
+ }, {
1814
+ readonly code: "520801";
1815
+ readonly description: "Iron Works - Shop: Brass/Bronze/Iron Ornament Mfg";
1816
+ }, {
1817
+ readonly code: "520802";
1818
+ readonly description: "Iron Works - Shop: Iron Works Shop Fab Assemb/Mfg";
1819
+ }, {
1820
+ readonly code: "520900";
1821
+ readonly description: "Metal Goods Manufacturing N.O.C. - 9 Gauge or More: Boilermaking/Tank Bldg";
1822
+ }, {
1823
+ readonly code: "520901";
1824
+ readonly description: "Metal Goods Manufacturing N.O.C. - 9 Gauge or More: Metal Goods Mfg NOC";
1825
+ }, {
1826
+ readonly code: "520902";
1827
+ readonly description: "Metal Goods Manufacturing N.O.C. - 9 Gauge or More: Wood Stove Mfg";
1828
+ }, {
1829
+ readonly code: "530000";
1830
+ readonly description: "State Government - Admin. Field Personnel: State Govt - Admin Field Staff";
1831
+ }, {
1832
+ readonly code: "530110";
1833
+ readonly description: "Accounting Law and Service Companies: Accounting/Bookkeeping Firms";
1834
+ }, {
1835
+ readonly code: "530111";
1836
+ readonly description: "Accounting Law and Service Companies: Law Firms Incl Cl/Sls";
1837
+ }, {
1838
+ readonly code: "530112";
1839
+ readonly description: "Accounting Law and Service Companies: Management Analyst Svcs";
1840
+ }, {
1841
+ readonly code: "530113";
1842
+ readonly description: "Accounting Law and Service Companies: Collection Agency/Cred Bureau";
1843
+ }, {
1844
+ readonly code: "530114";
1845
+ readonly description: "Accounting Law and Service Companies: Employment Agency Incl Cl/Sls";
1846
+ }, {
1847
+ readonly code: "530115";
1848
+ readonly description: "Accounting Law and Service Companies: Court Report Svc Incl Cl/Sls";
1849
+ }, {
1850
+ readonly code: "530116";
1851
+ readonly description: "Accounting Law and Service Companies: Service/Prof Organizations NOC";
1852
+ }, {
1853
+ readonly code: "530118";
1854
+ readonly description: "Accounting Law and Service Companies: Telephone Answ Svc Incl Cl/Sls";
1855
+ }, {
1856
+ readonly code: "530119";
1857
+ readonly description: "Accounting Law and Service Companies: Travel Agencies Incl Cl/Sls";
1858
+ }, {
1859
+ readonly code: "530121";
1860
+ readonly description: "Accounting Law and Service Companies: Word Proc/Secr Svc Incl Cl/Sls";
1861
+ }, {
1862
+ readonly code: "530200";
1863
+ readonly description: "Software Design & Engineering and Internet Service Providers: Computer Consulting Programng";
1864
+ }, {
1865
+ readonly code: "530506";
1866
+ readonly description: "Cities - Office and Admin. Employees: Cities/Towns: Admin/Cl Office";
1867
+ }, {
1868
+ readonly code: "530607";
1869
+ readonly description: "Counties - Office and Admin. Employees: Counties/Tax Dist Adm/Cl Offc";
1870
+ }, {
1871
+ readonly code: "530625";
1872
+ readonly description: "Counties - Office and Admin. Employees: Indian Tribal Cncl Adm/Cl Offc";
1873
+ }, {
1874
+ readonly code: "530626";
1875
+ readonly description: "Counties - Office and Admin. Employees: Housing Authority Adm/Cl Offc";
1876
+ }, {
1877
+ readonly code: "530627";
1878
+ readonly description: "Counties - Office and Admin. Employees: Military Base Maint Adm/Cl Off";
1879
+ }, {
1880
+ readonly code: "530700";
1881
+ readonly description: "State Government - All Other Employees N.O.C.: State Government NOC";
1882
+ }, {
1883
+ readonly code: "530701";
1884
+ readonly description: "State Government Employees - Juvenile Rehabilitation Custody";
1885
+ }, {
1886
+ readonly code: "530820";
1887
+ readonly description: "Community Action Orgs - Professionals & Admin Field: Comm Act Org-Prof/Admin Field";
1888
+ }, {
1889
+ readonly code: "555103";
1890
+ readonly description: "LSI - Tier 1 - 5% Discount of 5001: Logging";
1891
+ }, {
1892
+ readonly code: "555104";
1893
+ readonly description: "LSI - Tier 1 - 5% Discount of 5001: Shake & Shingle";
1894
+ }, {
1895
+ readonly code: "555105";
1896
+ readonly description: "LSI - Tier 1 - 5% Discount of 5001: Firewood cutting";
1897
+ }, {
1898
+ readonly code: "555106";
1899
+ readonly description: "LSI - Tier 1 - 5% Discount of 5001: Sawmill in woods";
1900
+ }, {
1901
+ readonly code: "555203";
1902
+ readonly description: "LSI - Tier 1 - 10% Discount of 5001: Logging";
1903
+ }, {
1904
+ readonly code: "555204";
1905
+ readonly description: "LSI - Tier 1 - 10% Discount of 5001: Shake & Shingle";
1906
+ }, {
1907
+ readonly code: "555205";
1908
+ readonly description: "LSI - Tier 1 - 10% Discount of 5001: Firewood cutting";
1909
+ }, {
1910
+ readonly code: "555206";
1911
+ readonly description: "LSI - Tier 1 - 10% Discount of 5001: Sawmill in woods";
1912
+ }, {
1913
+ readonly code: "555303";
1914
+ readonly description: "LSI - Tier 1 - 20% Discount of 5001: Logging";
1915
+ }, {
1916
+ readonly code: "555304";
1917
+ readonly description: "LSI - Tier 1 - 20% Discount of 5001: Shake & Shingle";
1918
+ }, {
1919
+ readonly code: "555305";
1920
+ readonly description: "LSI - Tier 1 - 20% Discount of 5001: Firewood cutting";
1921
+ }, {
1922
+ readonly code: "555306";
1923
+ readonly description: "LSI - Tier 1 - 20% Discount of 5001: Sawmill in woods";
1924
+ }, {
1925
+ readonly code: "610301";
1926
+ readonly description: "Schools Churches and Day Care - Prof./Clerical Staff: Schools: K-12 Prof/Admin/Cl";
1927
+ }, {
1928
+ readonly code: "610302";
1929
+ readonly description: "Schools Churches and Day Care - Prof./Clerical Staff: Schools:Voc Prof/Admin/Cl";
1930
+ }, {
1931
+ readonly code: "610303";
1932
+ readonly description: "Schools Churches and Day Care - Prof./Clerical Staff: Libraries NOC - Prof/Admin/Cl";
1933
+ }, {
1934
+ readonly code: "610304";
1935
+ readonly description: "Schools Churches and Day Care - Prof./Clerical Staff: Churches - Clergy/Admin/Cl";
1936
+ }, {
1937
+ readonly code: "610305";
1938
+ readonly description: "Schools Churches and Day Care - Prof./Clerical Staff: Museums - Prof/Admin/Cl";
1939
+ }, {
1940
+ readonly code: "610306";
1941
+ readonly description: "Schools Churches and Day Care - Prof./Clerical Staff: Day Care Center-Prof/Admin/Cl";
1942
+ }, {
1943
+ readonly code: "610310";
1944
+ readonly description: "Schools Churches and Day Care - Prof./Clerical Staff: Flight Instructor Clasrm Only";
1945
+ }, {
1946
+ readonly code: "610311";
1947
+ readonly description: "Schools Churches and Day Care - Prof./Clerical Staff: Schools NOC Prof/Admin/Cl";
1948
+ }, {
1949
+ readonly code: "610312";
1950
+ readonly description: "Schools Churches and Day Care - Prof./Clerical Staff: Athletic Offic-Amateur Sport";
1951
+ }, {
1952
+ readonly code: "610313";
1953
+ readonly description: "Longshore and stevedore trainees, N.O.C.";
1954
+ }, {
1955
+ readonly code: "610401";
1956
+ readonly description: "Schools Churches and Day Care - All Other Staff: Schools K-12 All Other Emplys";
1957
+ }, {
1958
+ readonly code: "610402";
1959
+ readonly description: "Schools Churches and Day Care - All Other Staff: Schools-Trade/Voc-All Othr Emp";
1960
+ }, {
1961
+ readonly code: "610403";
1962
+ readonly description: "Schools Churches and Day Care - All Other Staff: Libraries-All Other Employees";
1963
+ }, {
1964
+ readonly code: "610404";
1965
+ readonly description: "Schools Churches and Day Care - All Other Staff: Churches All Other Employees";
1966
+ }, {
1967
+ readonly code: "610405";
1968
+ readonly description: "Schools Churches and Day Care - All Other Staff: Museums-All Other Empl";
1969
+ }, {
1970
+ readonly code: "610406";
1971
+ readonly description: "Schools Churches and Day Care - All Other Staff: Day Care Centers All Oth Empl";
1972
+ }, {
1973
+ readonly code: "610411";
1974
+ readonly description: "Schools Churches and Day Care - All Other Staff: Schools NOC - All Other Empl";
1975
+ }, {
1976
+ readonly code: "610505";
1977
+ readonly description: "Hospitals N.O.C.: Hospitals NOC/Hosp Districts";
1978
+ }, {
1979
+ readonly code: "610701";
1980
+ readonly description: "Veterinary Services: Veterinary Hosp-Incl Cl/Sls";
1981
+ }, {
1982
+ readonly code: "610800";
1983
+ readonly description: "Nursing Homes: Convalescent/Nursing/Rest Home";
1984
+ }, {
1985
+ readonly code: "610900";
1986
+ readonly description: "Physicians & Medical Clinics: Physician/Surgeon NOC-All Oper";
1987
+ }, {
1988
+ readonly code: "610901";
1989
+ readonly description: "Physicians & Medical Clinics: Dentists NOC-All Operations";
1990
+ }, {
1991
+ readonly code: "610902";
1992
+ readonly description: "Physicians & Medical Clinics: Chiropractors NOC-All Oper";
1993
+ }, {
1994
+ readonly code: "610904";
1995
+ readonly description: "Physicians & Medical Clinics: Naturopaths NOC-All Operations";
1996
+ }, {
1997
+ readonly code: "610908";
1998
+ readonly description: "Physicians & Medical Clinics: Phys Therapist NOC-All Oper";
1999
+ }, {
2000
+ readonly code: "610909";
2001
+ readonly description: "Physicians & Medical Clinics: Optometrists NOC-All Oper";
2002
+ }, {
2003
+ readonly code: "610910";
2004
+ readonly description: "Physicians & Medical Clinics: Psychol/Psychiat NOC-All Oper";
2005
+ }, {
2006
+ readonly code: "610912";
2007
+ readonly description: "Physicians & Medical Clinics: Nutrition/Diet Clinics NOC";
2008
+ }, {
2009
+ readonly code: "610913";
2010
+ readonly description: "Physicians & Medical Clinics: Childbirth Classes-All Oper";
2011
+ }, {
2012
+ readonly code: "610914";
2013
+ readonly description: "Physicians & Medical Clinics: Orthotic Clinic Incl Cl/Sls";
2014
+ }, {
2015
+ readonly code: "610915";
2016
+ readonly description: "Physicians & Medical Clinics: Mid Wife Svcs-All Oper";
2017
+ }, {
2018
+ readonly code: "610916";
2019
+ readonly description: "Physicians & Medical Clinics: Massage Therapy Svcs-All Oper";
2020
+ }, {
2021
+ readonly code: "610917";
2022
+ readonly description: "Physicians & Medical Clinics: Radiology/Mri Clinics-All Oper";
2023
+ }, {
2024
+ readonly code: "611000";
2025
+ readonly description: "Home Health Services and Nursing Care N.O.C.: Home Health/Nursing Care NOC";
2026
+ }, {
2027
+ readonly code: "612000";
2028
+ readonly description: "Acute Care Hospitals with Safe Patient Handling: Acute Care Hospital with SPH";
2029
+ }, {
2030
+ readonly code: "612100";
2031
+ readonly description: "Acute Care Hospitals without Safe Patient Handling: Acute Care Hospital w/o SPH";
2032
+ }, {
2033
+ readonly code: "620100";
2034
+ readonly description: "Mortuaries: Mortuaries";
2035
+ }, {
2036
+ readonly code: "620200";
2037
+ readonly description: "Cemeteries: Cemeteries";
2038
+ }, {
2039
+ readonly code: "620300";
2040
+ readonly description: "YMCA YWCA Boys and Girls Clubs: YMCA/YWCA Clubs Incl Cl/Sls";
2041
+ }, {
2042
+ readonly code: "620301";
2043
+ readonly description: "YMCA YWCA Boys and Girls Clubs: Boys/Girls Club Incl Cl/Sls";
2044
+ }, {
2045
+ readonly code: "620400";
2046
+ readonly description: "Health Clubs and Exercise Facilities: Baths or Saunas NOC";
2047
+ }, {
2048
+ readonly code: "620404";
2049
+ readonly description: "Health Clubs and Exercise Facilities: Health Clubs/Gymnasiums";
2050
+ }, {
2051
+ readonly code: "620500";
2052
+ readonly description: "Fraternal Clubs: Clubs NOC-All Operations";
2053
+ }, {
2054
+ readonly code: "620606";
2055
+ readonly description: "Golf Courses: Golf Courses NOC";
2056
+ }, {
2057
+ readonly code: "620700";
2058
+ readonly description: "Carnivals: Carnivals-Traveling";
2059
+ }, {
2060
+ readonly code: "620701";
2061
+ readonly description: "Carnivals: Circuses-Traveling";
2062
+ }, {
2063
+ readonly code: "620702";
2064
+ readonly description: "Carnivals: Amusement Device Operator-Trvl";
2065
+ }, {
2066
+ readonly code: "620703";
2067
+ readonly description: "Carnivals: Rodeos-Arena Employees";
2068
+ }, {
2069
+ readonly code: "620704";
2070
+ readonly description: "Carnivals: Fireworks Exhibition";
2071
+ }, {
2072
+ readonly code: "620800";
2073
+ readonly description: "Amusement Parks: Amusement Parks";
2074
+ }, {
2075
+ readonly code: "620801";
2076
+ readonly description: "Amusement Parks: Ranges-Arch/Dart/Golf/Shooting";
2077
+ }, {
2078
+ readonly code: "620803";
2079
+ readonly description: "Amusement Parks: Concessions-Boats In Parks";
2080
+ }, {
2081
+ readonly code: "620804";
2082
+ readonly description: "Amusement Parks: Fairs";
2083
+ }, {
2084
+ readonly code: "620807";
2085
+ readonly description: "Amusement Parks: Miniature Golf Courses";
2086
+ }, {
2087
+ readonly code: "620808";
2088
+ readonly description: "Amusement Parks: Kiddie Rides-Permanent Loctns";
2089
+ }, {
2090
+ readonly code: "620809";
2091
+ readonly description: "Amusement Parks: Race Tracks";
2092
+ }, {
2093
+ readonly code: "620810";
2094
+ readonly description: "Amusement Parks: Shooting Galrs/Air Rfl-No Frms";
2095
+ }, {
2096
+ readonly code: "620811";
2097
+ readonly description: "Amusement Parks: Carnival Operations NOC";
2098
+ }, {
2099
+ readonly code: "620903";
2100
+ readonly description: "Campgrounds: Dude Ranches Incl Cl/Sls";
2101
+ }, {
2102
+ readonly code: "620906";
2103
+ readonly description: "Campgrounds: Swim Pools-Public Incl Cl/Sls";
2104
+ }, {
2105
+ readonly code: "620909";
2106
+ readonly description: "Campgrounds: Campgrounds NOC Incl Cl/Sls";
2107
+ }, {
2108
+ readonly code: "630100";
2109
+ readonly description: "Sales Personnel - Vehicles and Boats: Automobile Sales Personnel";
2110
+ }, {
2111
+ readonly code: "630106";
2112
+ readonly description: "Sales Personnel - Vehicles and Boats: Instructors - Driving School";
2113
+ }, {
2114
+ readonly code: "630107";
2115
+ readonly description: "Sales Personnel - Vehicles and Boats: Limousine Co/Excl Repairs";
2116
+ }, {
2117
+ readonly code: "630300";
2118
+ readonly description: "Sales Personnel - Outside N.O.C.: Sales Personnel NOC-Outside";
2119
+ }, {
2120
+ readonly code: "630303";
2121
+ readonly description: "Sales Personnel - Outside N.O.C.: Insurance Sls/Claim Adj-Outsde";
2122
+ }, {
2123
+ readonly code: "630321";
2124
+ readonly description: "Sales Personnel - Outside N.O.C.: Home Visit/Social Workers/Diet";
2125
+ }, {
2126
+ readonly code: "630400";
2127
+ readonly description: "Department Stores: Dept Stores - Retail";
2128
+ }, {
2129
+ readonly code: "630401";
2130
+ readonly description: "Department Stores: Antique/Variety Stores-Retail";
2131
+ }, {
2132
+ readonly code: "630500";
2133
+ readonly description: "Clothing and Shoe Stores: Clothing Stores - Retail";
2134
+ }, {
2135
+ readonly code: "630501";
2136
+ readonly description: "Clothing and Shoe Stores: Dry Goods Stores - Retail";
2137
+ }, {
2138
+ readonly code: "630502";
2139
+ readonly description: "Clothing and Shoe Stores: Shoe Stores - Retail";
2140
+ }, {
2141
+ readonly code: "630504";
2142
+ readonly description: "Clothing and Shoe Stores: Western Clothing Incl Tack-Ret";
2143
+ }, {
2144
+ readonly code: "630505";
2145
+ readonly description: "Clothing and Shoe Stores: Wig/Hat Stores - Retail";
2146
+ }, {
2147
+ readonly code: "630506";
2148
+ readonly description: "Clothing and Shoe Stores: Custom Dressmaking/Tailoring";
2149
+ }, {
2150
+ readonly code: "630600";
2151
+ readonly description: "Furniture and Appliance Stores: Furniture stores";
2152
+ }, {
2153
+ readonly code: "630601";
2154
+ readonly description: "Furniture and Appliance Stores: Rental and rent-to-own furniture stores, and durable medical stores";
2155
+ }, {
2156
+ readonly code: "630602";
2157
+ readonly description: "Furniture and Appliance Stores: Household appliance stores";
2158
+ }, {
2159
+ readonly code: "630603";
2160
+ readonly description: "Furniture and Appliance Stores: Piano and organ stores";
2161
+ }, {
2162
+ readonly code: "630604";
2163
+ readonly description: "Furniture and Appliance Stores: Office furniture stores";
2164
+ }, {
2165
+ readonly code: "630605";
2166
+ readonly description: "Furniture and Appliance Stores: Entertainment and home theater systems, big screen television stores";
2167
+ }, {
2168
+ readonly code: "630606";
2169
+ readonly description: "Stores: Office furniture - wholesale or retail";
2170
+ }, {
2171
+ readonly code: "630607";
2172
+ readonly description: "Furniture and Appliance Stores: Audio/visual equipment rental and services";
2173
+ }, {
2174
+ readonly code: "630800";
2175
+ readonly description: "Jewelry Stores: Jewelry Store";
2176
+ }, {
2177
+ readonly code: "630801";
2178
+ readonly description: "Jewelry Stores: Hearing Aid Store";
2179
+ }, {
2180
+ readonly code: "630802";
2181
+ readonly description: "Jewelry Stores: Optical Store-No Lens Grind";
2182
+ }, {
2183
+ readonly code: "630803";
2184
+ readonly description: "Jewelry Stores: Clock & Watch Stores";
2185
+ }, {
2186
+ readonly code: "630804";
2187
+ readonly description: "Jewelry Stores: Stores: Trophy or Award";
2188
+ }, {
2189
+ readonly code: "630902";
2190
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Gun Stores";
2191
+ }, {
2192
+ readonly code: "630903";
2193
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Bicycle Stores";
2194
+ }, {
2195
+ readonly code: "630906";
2196
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Garden Supply Strs";
2197
+ }, {
2198
+ readonly code: "630907";
2199
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Locksmiths";
2200
+ }, {
2201
+ readonly code: "630908";
2202
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Auto Parts Store";
2203
+ }, {
2204
+ readonly code: "630909";
2205
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Architect/Surveyor Supply Strs";
2206
+ }, {
2207
+ readonly code: "630911";
2208
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Stained Art Glass Supply Store";
2209
+ }, {
2210
+ readonly code: "630912";
2211
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Wood Stove & Accessory Stores";
2212
+ }, {
2213
+ readonly code: "630913";
2214
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Hardware Variety Stores NOC";
2215
+ }, {
2216
+ readonly code: "630914";
2217
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Hot Tubs/Spa Stores";
2218
+ }, {
2219
+ readonly code: "630915";
2220
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Floor Cov Stores Excl Inst";
2221
+ }, {
2222
+ readonly code: "630916";
2223
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Pawn Shops";
2224
+ }, {
2225
+ readonly code: "630917";
2226
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Sporting Good Stores";
2227
+ }, {
2228
+ readonly code: "630918";
2229
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Paint/Wallpaper Stores";
2230
+ }, {
2231
+ readonly code: "630919";
2232
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Sewing Machine Stores";
2233
+ }, {
2234
+ readonly code: "630920";
2235
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Art Galleries/Frame Shops";
2236
+ }, {
2237
+ readonly code: "630921";
2238
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Hobby/Craft Stores";
2239
+ }, {
2240
+ readonly code: "630922";
2241
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Sales Personnel: Door To Door";
2242
+ }, {
2243
+ readonly code: "630923";
2244
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Stores included in 6309, but not described by another subclassification N.O.C.";
2245
+ }, {
2246
+ readonly code: "630924";
2247
+ readonly description: "Hardware Auto Parts and Sporting Good Stores: Antique variety stores";
2248
+ }, {
2249
+ readonly code: "640200";
2250
+ readonly description: "Supermarkets: Str-Groc W/Meat";
2251
+ }, {
2252
+ readonly code: "640301";
2253
+ readonly description: "Convenience Grocery Stores - No Gas: Coffee/Tea/Spice Store Retail";
2254
+ }, {
2255
+ readonly code: "640302";
2256
+ readonly description: "Convenience Grocery Stores - No Gas: Dairy Prod Store";
2257
+ }, {
2258
+ readonly code: "640304";
2259
+ readonly description: "Convenience Grocery Stores - No Gas: Fruit/Veg Store";
2260
+ }, {
2261
+ readonly code: "640305";
2262
+ readonly description: "Convenience Grocery Stores - No Gas: Stores: Specialty Groceries";
2263
+ }, {
2264
+ readonly code: "640306";
2265
+ readonly description: "Convenience Grocery Stores - No Gas: Stores: Convenience-No Gas";
2266
+ }, {
2267
+ readonly code: "640307";
2268
+ readonly description: "Convenience Grocery Stores - No Gas: Wine/Liquor/Soft Drink Stores";
2269
+ }, {
2270
+ readonly code: "640400";
2271
+ readonly description: "Florists: Florist/ Balloon Arrngmt Str";
2272
+ }, {
2273
+ readonly code: "640402";
2274
+ readonly description: "Florists: Plant/Aquarium Lsng or Mntnc";
2275
+ }, {
2276
+ readonly code: "640403";
2277
+ readonly description: "Florists: Candy Arrangemt-Incl Delivery";
2278
+ }, {
2279
+ readonly code: "640501";
2280
+ readonly description: "Tire Sales and Service Centers: Tire Sales/Service";
2281
+ }, {
2282
+ readonly code: "640506";
2283
+ readonly description: "Tire Sales and Service Centers: Tire Rebldg/Retread/Recap";
2284
+ }, {
2285
+ readonly code: "640600";
2286
+ readonly description: "Retail Stores N.O.C.: Retail Stores NOC";
2287
+ }, {
2288
+ readonly code: "640601";
2289
+ readonly description: "Retail Stores N.O.C.: Camera Stores";
2290
+ }, {
2291
+ readonly code: "640603";
2292
+ readonly description: "Retail Stores N.O.C.: News/Magazine Stores";
2293
+ }, {
2294
+ readonly code: "640609";
2295
+ readonly description: "Retail Stores N.O.C.: Coin Operated Arcades";
2296
+ }, {
2297
+ readonly code: "640611";
2298
+ readonly description: "Retail Stores N.O.C.: Office Stationery/Machine Strs";
2299
+ }, {
2300
+ readonly code: "640612";
2301
+ readonly description: "Retail Stores N.O.C.: Fabric & Yardage Stores";
2302
+ }, {
2303
+ readonly code: "640614";
2304
+ readonly description: "Retail Stores N.O.C.: Musical Instrument Stores";
2305
+ }, {
2306
+ readonly code: "640616";
2307
+ readonly description: "Retail Stores N.O.C.: Drug Stores";
2308
+ }, {
2309
+ readonly code: "640617";
2310
+ readonly description: "Retail Stores N.O.C.: Variety Stores";
2311
+ }, {
2312
+ readonly code: "640618";
2313
+ readonly description: "Retail Stores N.O.C.: Pvt Mail Box/Safe Deposit Box";
2314
+ }, {
2315
+ readonly code: "640619";
2316
+ readonly description: "Retail Stores N.O.C.: Coin/Stamp Stores";
2317
+ }, {
2318
+ readonly code: "640620";
2319
+ readonly description: "Retail Stores N.O.C.: Book/Video Stores";
2320
+ }, {
2321
+ readonly code: "640623";
2322
+ readonly description: "Retail Stores N.O.C.: Candy Stores";
2323
+ }, {
2324
+ readonly code: "640624";
2325
+ readonly description: "Retail Stores N.O.C.: Cigarette & Tobacco Stores";
2326
+ }, {
2327
+ readonly code: "640625";
2328
+ readonly description: "Retail Stores N.O.C.: Telephone Stores";
2329
+ }, {
2330
+ readonly code: "640627";
2331
+ readonly description: "Retail Stores N.O.C.: Stereo Component Stores";
2332
+ }, {
2333
+ readonly code: "640629";
2334
+ readonly description: "Retail Stores N.O.C.: Toy/Game Stores";
2335
+ }, {
2336
+ readonly code: "640630";
2337
+ readonly description: "Retail Stores N.O.C.: Cosmetics Stores";
2338
+ }, {
2339
+ readonly code: "640631";
2340
+ readonly description: "Retail Stores N.O.C.: Kitchen/Bath/Drapery Stores";
2341
+ }, {
2342
+ readonly code: "640633";
2343
+ readonly description: "Retail Stores N.O.C.: Gift Shops";
2344
+ }, {
2345
+ readonly code: "640640";
2346
+ readonly description: "Retail Product Demonstrators";
2347
+ }, {
2348
+ readonly code: "640700";
2349
+ readonly description: "Wholesale Stores N.O.C.: Wholesale Stores NOC";
2350
+ }, {
2351
+ readonly code: "640803";
2352
+ readonly description: "Farm Machinery Dealers: Farm Machinery Dealers";
2353
+ }, {
2354
+ readonly code: "640900";
2355
+ readonly description: "Machinery and Machinery Dealers N.O.C.: Machinery/Eqp Dealers NOC";
2356
+ }, {
2357
+ readonly code: "641002";
2358
+ readonly description: "Janitorial Supply Dealers: Janitorial Supply Dealers";
2359
+ }, {
2360
+ readonly code: "641100";
2361
+ readonly description: "Stores meeting the criteria";
2362
+ }, {
2363
+ readonly code: "641114";
2364
+ readonly description: "Musical Instruments";
2365
+ }, {
2366
+ readonly code: "641119";
2367
+ readonly description: "Coins, stamps, rare metals, and collectible cards";
2368
+ }, {
2369
+ readonly code: "641120";
2370
+ readonly description: "Books, videos, electronic games, music, newspapers, magazines, and comic books";
2371
+ }, {
2372
+ readonly code: "641124";
2373
+ readonly description: "Tobacco, vaporizers, and liquids, and smoking accessories";
2374
+ }, {
2375
+ readonly code: "641125";
2376
+ readonly description: "Small port electronic devices, N.O.C.";
2377
+ }, {
2378
+ readonly code: "650100";
2379
+ readonly description: "Barber shops";
2380
+ }, {
2381
+ readonly code: "650101";
2382
+ readonly description: "Beauty parlors; sun tanning parlors";
2383
+ }, {
2384
+ readonly code: "650102";
2385
+ readonly description: "Cosmetologists and electrolysis studios; tattoo parlors; nail salons";
2386
+ }, {
2387
+ readonly code: "650200";
2388
+ readonly description: "Banks and Financial Institutions: Banks-All Employment";
2389
+ }, {
2390
+ readonly code: "650205";
2391
+ readonly description: "Banks and Financial Institutions: Financial/Invest/Mortgage Co";
2392
+ }, {
2393
+ readonly code: "650206";
2394
+ readonly description: "Banks and Financial Institutions: Stock Brokr-All Emp";
2395
+ }, {
2396
+ readonly code: "650207";
2397
+ readonly description: "Banks and Financial Institutions: Escrow Companies - All Empl";
2398
+ }, {
2399
+ readonly code: "650300";
2400
+ readonly description: "Labor Unions: Labor Unions/Empl Rep Assns";
2401
+ }, {
2402
+ readonly code: "650400";
2403
+ readonly description: "Thrift Stores: Thrift stores operated by charitable or other not-for-profit organizations";
2404
+ }, {
2405
+ readonly code: "650401";
2406
+ readonly description: "Thrift Stores: For-profit thrift stores";
2407
+ }, {
2408
+ readonly code: "650500";
2409
+ readonly description: "Welfare Special Works Programs: Welfare Special Works Programs";
2410
+ }, {
2411
+ readonly code: "650600";
2412
+ readonly description: "Photography Studios and Film Print Shops: Photo Studios";
2413
+ }, {
2414
+ readonly code: "650601";
2415
+ readonly description: "Photography Studios and Film Print Shops: Film Devlp-Print Shps";
2416
+ }, {
2417
+ readonly code: "650602";
2418
+ readonly description: "Photography Studios and Film Print Shops: Film Exchange Shp";
2419
+ }, {
2420
+ readonly code: "650603";
2421
+ readonly description: "Photography Studios and Film Print Shops: Microfilming";
2422
+ }, {
2423
+ readonly code: "6509";
2424
+ readonly description: "Assisted living and group homes";
2425
+ }, {
2426
+ readonly code: "650904";
2427
+ readonly description: "Boarding Homes and Retirement Centers: Boarding Homes/Centers NOC";
2428
+ }, {
2429
+ readonly code: "650905";
2430
+ readonly description: "Boarding Homes and Retirement Centers: Fraternity or Sorority Houses";
2431
+ }, {
2432
+ readonly code: "650907";
2433
+ readonly description: "Boarding Homes and Retirement Centers: Retirement Centers";
2434
+ }, {
2435
+ readonly code: "651000";
2436
+ readonly description: "Domestic Servants: Domestic Service";
2437
+ }, {
2438
+ readonly code: "651100";
2439
+ readonly description: "Chore Services: Chore Services";
2440
+ }, {
2441
+ readonly code: "651120";
2442
+ readonly description: "Community Action Organizations: Chore Services/Home Care Assistants";
2443
+ }, {
2444
+ readonly code: "651200";
2445
+ readonly description: "Home care services/consumer directed employer program";
2446
+ }, {
2447
+ readonly code: "660100";
2448
+ readonly description: "Detective Agencies: Detective Agencies";
2449
+ }, {
2450
+ readonly code: "660101";
2451
+ readonly description: "Detective Agencies: Merchant Police/Patrol";
2452
+ }, {
2453
+ readonly code: "660102";
2454
+ readonly description: "Detective Agencies: Security Guard Agencies";
2455
+ }, {
2456
+ readonly code: "660103";
2457
+ readonly description: "Detective Agencies: Security Guards- Logging Site";
2458
+ }, {
2459
+ readonly code: "660104";
2460
+ readonly description: "Detective Agencies: Security Guards- Const Site";
2461
+ }, {
2462
+ readonly code: "660105";
2463
+ readonly description: "Detective Agencies: Armored Car Service";
2464
+ }, {
2465
+ readonly code: "660106";
2466
+ readonly description: "Detective Agencies: Crowd Control Services";
2467
+ }, {
2468
+ readonly code: "660107";
2469
+ readonly description: "Detective Agencies: Process/legal messenger services";
2470
+ }, {
2471
+ readonly code: "660202";
2472
+ readonly description: "Janitorial Service: Window-Washing Services";
2473
+ }, {
2474
+ readonly code: "660203";
2475
+ readonly description: "Janitorial Service: Janitorial Cleaning NOC";
2476
+ }, {
2477
+ readonly code: "660204";
2478
+ readonly description: "Janitorial Service: Residential Cleaning Services";
2479
+ }, {
2480
+ readonly code: "660205";
2481
+ readonly description: "Janitorial Service: Janitors NOC";
2482
+ }, {
2483
+ readonly code: "660208";
2484
+ readonly description: "Janitorial Service: Pest Control";
2485
+ }, {
2486
+ readonly code: "660210";
2487
+ readonly description: "Janitorial Service: Portable Cleaning/Washing NOC";
2488
+ }, {
2489
+ readonly code: "660212";
2490
+ readonly description: "Janitorial Service: Street & Building Decoration";
2491
+ }, {
2492
+ readonly code: "660300";
2493
+ readonly description: "Auction Sales: Auction Sales-Equip/Machinery";
2494
+ }, {
2495
+ readonly code: "660301";
2496
+ readonly description: "Auction Sales: Auction Sales-Gen Hhold Furn";
2497
+ }, {
2498
+ readonly code: "660302";
2499
+ readonly description: "Auction Sales: Auction Sales-Specialty Mdse";
2500
+ }, {
2501
+ readonly code: "660400";
2502
+ readonly description: "Optical Goods Manufacturing: Lens Mfg Incl Cl/Sls";
2503
+ }, {
2504
+ readonly code: "660401";
2505
+ readonly description: "Optical Goods Manufacturing: Optical Goods Mfg Incl Cl/Sls";
2506
+ }, {
2507
+ readonly code: "660500";
2508
+ readonly description: "Actors Entertainers and Musicians N.O.C.: Actors & Performers NOC";
2509
+ }, {
2510
+ readonly code: "660501";
2511
+ readonly description: "Actors Entertainers and Musicians N.O.C.: Musicians NOC";
2512
+ }, {
2513
+ readonly code: "660503";
2514
+ readonly description: "Actors Entertainers and Musicians N.O.C.: Players, entertainers and musicians hired by a theater, N.O.C";
2515
+ }, {
2516
+ readonly code: "660504";
2517
+ readonly description: "Actors Entertainers and Musicians N.O.C.: Dance Halls-All Employment";
2518
+ }, {
2519
+ readonly code: "660700";
2520
+ readonly description: "Card Rooms Bingo Parlors and Recreational Centers: Card Rooms/Bingo Parlors";
2521
+ }, {
2522
+ readonly code: "660701";
2523
+ readonly description: "Card Rooms Bingo Parlors and Recreational Centers: Billiard Halls";
2524
+ }, {
2525
+ readonly code: "660702";
2526
+ readonly description: "Card Rooms Bingo Parlors and Recreational Centers: Recreational/Community Centers";
2527
+ }, {
2528
+ readonly code: "660703";
2529
+ readonly description: "Card Rooms Bingo Parlors and Recreational Centers: Indoor Playgrounds";
2530
+ }, {
2531
+ readonly code: "660704";
2532
+ readonly description: "Card Rooms Bingo Parlors and Recreational Centers: Indoor Simulated Golfing";
2533
+ }, {
2534
+ readonly code: "660800";
2535
+ readonly description: "Motion Picture Production: Mtn Pictr Prod Inc Cl/Sls";
2536
+ }, {
2537
+ readonly code: "661400";
2538
+ readonly description: "Horse Racing - Major Tracks N.O.C.: Hors Race Train-Major";
2539
+ }, {
2540
+ readonly code: "661500";
2541
+ readonly description: "Horse Racing - Major Tracks Grooms: Hors Race-Grooms-Major Tracks";
2542
+ }, {
2543
+ readonly code: "661600";
2544
+ readonly description: "Horse Racing - Fairs Bush Tracks: Hors Race-Trainers-Fair Tracks";
2545
+ }, {
2546
+ readonly code: "661700";
2547
+ readonly description: "Horse Racing - Fairs Bush Tracks Grooms: Hors Race-Grooms-Fair Tracks";
2548
+ }, {
2549
+ readonly code: "661800";
2550
+ readonly description: "Horse Racing - Owners: Hors Race-Licensed Owners";
2551
+ }, {
2552
+ readonly code: "662000";
2553
+ readonly description: "Entertainers & Dancers: Entertainers NOC";
2554
+ }, {
2555
+ readonly code: "662200";
2556
+ readonly description: "Horse Racing - Fairs Bush Tracks: Horse Race Exr Rider Major Trk";
2557
+ }, {
2558
+ readonly code: "662300";
2559
+ readonly description: "Horse Racing - Major Tracks N.O.C.: Horse Race Exer Rider Fair Trk";
2560
+ }, {
2561
+ readonly code: "662500";
2562
+ readonly description: "Grooms and assistant trainers (major track)";
2563
+ }, {
2564
+ readonly code: "662501";
2565
+ readonly description: "Grooms and assistant trainers (nonprofit track)";
2566
+ }, {
2567
+ readonly code: "662600";
2568
+ readonly description: "Track (major track)";
2569
+ }, {
2570
+ readonly code: "662601";
2571
+ readonly description: "Track (nonprofit track)";
2572
+ }, {
2573
+ readonly code: "662700";
2574
+ readonly description: "Horse racing - farm or training center";
2575
+ }, {
2576
+ readonly code: "670400";
2577
+ readonly description: "Parking Lot Operations: Parking Lots";
2578
+ }, {
2579
+ readonly code: "670500";
2580
+ readonly description: "Ski Facilities: Ski Facilities";
2581
+ }, {
2582
+ readonly code: "670503";
2583
+ readonly description: "Ski Facilities: Excursions-Outdoor Recreation";
2584
+ }, {
2585
+ readonly code: "670504";
2586
+ readonly description: "Ski Facilities: Instructors Ski/Wind Sail";
2587
+ }, {
2588
+ readonly code: "670505";
2589
+ readonly description: "Ski Facilities: Ski Patrols";
2590
+ }, {
2591
+ readonly code: "670601";
2592
+ readonly description: "Ski Facilities: Athl Teams Care/Premises";
2593
+ }, {
2594
+ readonly code: "670700";
2595
+ readonly description: "Contact Sports N.O.C.: Prof Football/Contact Spts NOC";
2596
+ }, {
2597
+ readonly code: "670701";
2598
+ readonly description: "Contact Sports N.O.C.: Professional Hockey Teams";
2599
+ }, {
2600
+ readonly code: "670801";
2601
+ readonly description: "Auto & Boat Racing-Per Race: Jockeys";
2602
+ }, {
2603
+ readonly code: "670802";
2604
+ readonly description: "Auto & Boat Racing-Per Race: Prof Racing Drivers";
2605
+ }, {
2606
+ readonly code: "670900";
2607
+ readonly description: "Sheltered Workshops: Shelterd Wrkshp Inc Cl/Sls";
2608
+ }, {
2609
+ readonly code: "680100";
2610
+ readonly description: "Scheduled Airlines - Flight Crew: Airlines Sched Flight Crew";
2611
+ }, {
2612
+ readonly code: "680101";
2613
+ readonly description: "Scheduled Airlines - Flight Crew: Hot Air Balloon-Flight Crew";
2614
+ }, {
2615
+ readonly code: "680200";
2616
+ readonly description: "Scheduled Airlines - Flight Crew: Airlines Sched Ground Crew";
2617
+ }, {
2618
+ readonly code: "680201";
2619
+ readonly description: "Scheduled Airlines - Flight Crew: Hot Air Balloon-Ground Crew";
2620
+ }, {
2621
+ readonly code: "680301";
2622
+ readonly description: "Non Scheduled Airlines - Flight Crew: Flight Instruction-Flight Crew";
2623
+ }, {
2624
+ readonly code: "680302";
2625
+ readonly description: "Non Scheduled Airlines - Flight Crew: Private Aircraft-Flight Crew";
2626
+ }, {
2627
+ readonly code: "680304";
2628
+ readonly description: "Non Scheduled Airlines - Flight Crew: Airlines Nonscheduled Fly Crew";
2629
+ }, {
2630
+ readonly code: "680400";
2631
+ readonly description: "Nonscheduled Airlines - Ground Crew: Airport Operations-Grnd Crew";
2632
+ }, {
2633
+ readonly code: "680401";
2634
+ readonly description: "Nonscheduled Airlines - Ground Crew: Aircraft Ground Crew Opns NOC";
2635
+ }, {
2636
+ readonly code: "680402";
2637
+ readonly description: "Nonscheduled Airlines - Ground Crew: Aircraft/Sales or Service Cos";
2638
+ }, {
2639
+ readonly code: "680403";
2640
+ readonly description: "Nonscheduled Airlines - Ground Crew: Airlines Nonscheduled Grd Crew";
2641
+ }, {
2642
+ readonly code: "680404";
2643
+ readonly description: "Nonscheduled Airlines - Ground Crew: Aircraft Remfg/Rebuilding";
2644
+ }, {
2645
+ readonly code: "680900";
2646
+ readonly description: "Baseball Basketball & Soccer Teams: Professional Baseball Teams";
2647
+ }, {
2648
+ readonly code: "680901";
2649
+ readonly description: "Baseball Basketball & Soccer Teams: Professional Basketball Teams";
2650
+ }, {
2651
+ readonly code: "680902";
2652
+ readonly description: "Baseball Basketball & Soccer Teams: Professional Soccer Teams";
2653
+ }, {
2654
+ readonly code: "690100";
2655
+ readonly description: "Volunteers: Volunteers-Excl Law Enf Offcrs";
2656
+ }, {
2657
+ readonly code: "690101";
2658
+ readonly description: "Volunteers: Student Volunteers";
2659
+ }, {
2660
+ readonly code: "690202";
2661
+ readonly description: "Log Road Construction: Logging Rd Constn or Maint";
2662
+ }, {
2663
+ readonly code: "690203";
2664
+ readonly description: "Log Road Construction: Logging Railroad Const/Maint";
2665
+ }, {
2666
+ readonly code: "690303";
2667
+ readonly description: "Aerial Spraying Seeding and Crop Dusting: Aerial Seed/Spray/Dust/Fire Ft";
2668
+ }, {
2669
+ readonly code: "690400";
2670
+ readonly description: "County and City Fire Fighters - Salaried: Cities/Towns Firefighters";
2671
+ }, {
2672
+ readonly code: "690401";
2673
+ readonly description: "County and City Fire Fighters - Salaried: Counties/Tax Dist Firefighters";
2674
+ }, {
2675
+ readonly code: "690500";
2676
+ readonly description: "County and City Law Enforcement Officers: Cities/Towns Law Enforc Offcr";
2677
+ }, {
2678
+ readonly code: "690501";
2679
+ readonly description: "County and City Law Enforcement Officers: Counties/Tax Dist Law Enf Ofcr";
2680
+ }, {
2681
+ readonly code: "690502";
2682
+ readonly description: "County and City Law Enforcement Officers: Indian Tribl Cncl Law Enf Ofcr";
2683
+ }, {
2684
+ readonly code: "690600";
2685
+ readonly description: "Volunteer Law Enforcement Officers: Cities/Towns Vol Law Enf Offcr";
2686
+ }, {
2687
+ readonly code: "690601";
2688
+ readonly description: "Volunteer Law Enforcement Officers: Counties/Tax Dist Vol Law Enf";
2689
+ }, {
2690
+ readonly code: "690602";
2691
+ readonly description: "Volunteer Law Enforcement Officers: State Vol Law Enf Officers";
2692
+ }, {
2693
+ readonly code: "690701";
2694
+ readonly description: "Moving and Storage Companies: Moving/Storage Hshld Furnishgs";
2695
+ }, {
2696
+ readonly code: "690802";
2697
+ readonly description: "Paper Products Manufacturing: Envelope/Stationery Mfg";
2698
+ }, {
2699
+ readonly code: "690803";
2700
+ readonly description: "Paper Products Manufacturing: Paper Bag/Wallpaper Mfg";
2701
+ }, {
2702
+ readonly code: "690805";
2703
+ readonly description: "Paper Products Manufacturing: Paper Box Mfg-Folding Boxes";
2704
+ }, {
2705
+ readonly code: "690806";
2706
+ readonly description: "Paper Products Manufacturing: Paper Goods Mfg-Towels&Napkins";
2707
+ }, {
2708
+ readonly code: "690900";
2709
+ readonly description: "Medical and Testing Labs/Blood Banks: Laboratory:Test/Quality Contrl";
2710
+ }, {
2711
+ readonly code: "690902";
2712
+ readonly description: "Medical and Testing Labs/Blood Banks: Laboratory: Medical";
2713
+ }, {
2714
+ readonly code: "690903";
2715
+ readonly description: "Medical and Testing Labs/Blood Banks: Blood Bank";
2716
+ }, {
2717
+ readonly code: "690922";
2718
+ readonly description: "Medical and Testing Labs/Blood Banks: Laboratory: Assaying";
2719
+ }, {
2720
+ readonly code: "700200";
2721
+ readonly description: "DOE Contract: Doe Contract-Suppl Pen Assmnt";
2722
+ }, {
2723
+ readonly code: "710000";
2724
+ readonly description: "Exempt Limited Liability Members N.O.C.: Limited Liability Member NOC";
2725
+ }, {
2726
+ readonly code: "710100";
2727
+ readonly description: "Executive Officers N.O.C.: Corporate Officers NOC";
2728
+ }, {
2729
+ readonly code: "710200";
2730
+ readonly description: "Football Teams - NFL: NFL Football Teams";
2731
+ }, {
2732
+ readonly code: "710300";
2733
+ readonly description: "State Government - Law Enforcement Officers: State Govt:Law Enforcmnt Offcr";
2734
+ }, {
2735
+ readonly code: "710301";
2736
+ readonly description: "State Government - Law Enforcement Officers: State Govt:State Patrol";
2737
+ }, {
2738
+ readonly code: "710303";
2739
+ readonly description: "State Government - Law Enforcement Officers: State Govt:Guards/Corr Offcrs";
2740
+ }, {
2741
+ readonly code: "710305";
2742
+ readonly description: "State Government - Law Enforcement Officers: State Govt:Lottery Officers";
2743
+ }, {
2744
+ readonly code: "710306";
2745
+ readonly description: "State Government - Law Enforcement Officers: State Govt: Fish/Wildlife Off.";
2746
+ }, {
2747
+ readonly code: "710401";
2748
+ readonly description: "Temporary Help - Administrative Staff: Admin Staff of Temp Help Comp";
2749
+ }, {
2750
+ readonly code: "710501";
2751
+ readonly description: "Temporary Help - Office Services: Temp Help Office Workers";
2752
+ }, {
2753
+ readonly code: "710601";
2754
+ readonly description: "Temporary Help - Store Services: Temp Help Retail Store";
2755
+ }, {
2756
+ readonly code: "710701";
2757
+ readonly description: "Temporary Help - Food Services: Temp Help Food Services";
2758
+ }, {
2759
+ readonly code: "710801";
2760
+ readonly description: "Temporary Help - Warehousing: Temp Help Dry Goods Warehouse";
2761
+ }, {
2762
+ readonly code: "710901";
2763
+ readonly description: "Temporary Help - Tech. Services: Temp Help Electronics Assembly";
2764
+ }, {
2765
+ readonly code: "711000";
2766
+ readonly description: "Temporary Help - Field Services: Temp Help Field Technical Svcs";
2767
+ }, {
2768
+ readonly code: "711100";
2769
+ readonly description: "Temporary Help - Health Care: Temp Help Health Care Svcs";
2770
+ }, {
2771
+ readonly code: "711200";
2772
+ readonly description: "Temporary Help - Agricultural Services: Temp Help Ag/Farming Svcs";
2773
+ }, {
2774
+ readonly code: "711300";
2775
+ readonly description: "Temporary Help - Maintenance: Temp Help Janitorial/Maint Svc";
2776
+ }, {
2777
+ readonly code: "711400";
2778
+ readonly description: "Temporary Help - Assembly: Temp Help Whse/Redistr Oper";
2779
+ }, {
2780
+ readonly code: "711500";
2781
+ readonly description: "Temporary Help - Food Processing: Temp Help Cannery/Food Proc";
2782
+ }, {
2783
+ readonly code: "711600";
2784
+ readonly description: "Temporary Help - Utility Work: Temp Help Flagging Utility Svc";
2785
+ }, {
2786
+ readonly code: "711700";
2787
+ readonly description: "Temporary Help - Machine Operation: Temp Help Mfg Ops/Spec Trades";
2788
+ }, {
2789
+ readonly code: "711800";
2790
+ readonly description: "Temporary Help - Construction: Temp Help Const Svcs";
2791
+ }, {
2792
+ readonly code: "711900";
2793
+ readonly description: "Temporary Help - Vehicle Operation: Temp Help Drivers/Sawmills";
2794
+ }, {
2795
+ readonly code: "712000";
2796
+ readonly description: "Temporary Help - Hazardous Waste: Temp Help Hazardous Waste";
2797
+ }, {
2798
+ readonly code: "712100";
2799
+ readonly description: "Temporary Help - Logging: Temp Help Logging/Shake Mills";
2800
+ }, {
2801
+ readonly code: "712200";
2802
+ readonly description: "Temporary Help - Laborers For Manufacturing: Temp Help Labor No Machine Ops";
2803
+ }, {
2804
+ readonly code: "720000";
2805
+ readonly description: "State Acute Health Care Facilities w/Safe Patient Handling: State Govt: Hospital with SPH";
2806
+ }, {
2807
+ readonly code: "720100";
2808
+ readonly description: "State Patient or Health Care Personnel N.O.C.: State Govt: Healthcare Empls";
2809
+ }, {
2810
+ readonly code: "720200";
2811
+ readonly description: "Real Estate Agencies: Real Estate Agency Incl Cl/Sls";
2812
+ }, {
2813
+ readonly code: "720300";
2814
+ readonly description: "Community Service Workers: Community Service Workers";
2815
+ }, {
2816
+ readonly code: "720400";
2817
+ readonly description: "Preferred Workers: Preferred Workers";
2818
+ }, {
2819
+ readonly code: "720500";
2820
+ readonly description: "Life and Rescue Emergency Personnel: Emergency Worker-Life & Rescue";
2821
+ }, {
2822
+ readonly code: "730100";
2823
+ readonly description: "Dairy Farms: Farms: Dairy";
2824
+ }, {
2825
+ readonly code: "730200";
2826
+ readonly description: "Livestock Farms: Farms: Livestock";
2827
+ }, {
2828
+ readonly code: "730202";
2829
+ readonly description: "Livestock Farms: Riding Academies";
2830
+ }, {
2831
+ readonly code: "730203";
2832
+ readonly description: "Livestock Farms: Pleasure or Showhorse Stables";
2833
+ }, {
2834
+ readonly code: "730204";
2835
+ readonly description: "Livestock Farms: Racehorse Trainers-Unlicensed";
2836
+ }, {
2837
+ readonly code: "730205";
2838
+ readonly description: "Livestock Farms: Horse Racing: Elective Coverag";
2839
+ }, {
2840
+ readonly code: "730700";
2841
+ readonly description: "Christmas Tree Farms: Farms: Christmas Tree";
2842
+ }, {
2843
+ readonly code: "730701";
2844
+ readonly description: "Christmas Tree Farms: Tree Farms NOC - Excl Harvest";
2845
+ }, {
2846
+ readonly code: "730802";
2847
+ readonly description: "Pet Grooming/Boarding Services/Animal Shelters: Animal Shelters-All Operations";
2848
+ }, {
2849
+ readonly code: "730803";
2850
+ readonly description: "Pet Grooming/Boarding Services/Animal Shelters: Dog Grooming Parlors-All Opns";
2851
+ }, {
2852
+ readonly code: "730804";
2853
+ readonly description: "Pet Grooming/Boarding Services/Animal Shelters: Pet Stores NOC";
2854
+ }, {
2855
+ readonly code: "730805";
2856
+ readonly description: "Pet Grooming/Boarding Services/Animal Shelters: Pet Breeding/Boarding Kennels";
2857
+ }, {
2858
+ readonly code: "730900";
2859
+ readonly description: "Work Activity Centers: Work Activity Centers";
2860
+ }, {
2861
+ readonly code: "740000";
2862
+ readonly description: "State Acute Health Care Facilities w/o Safe Patient Handling: State Govt: Hospital w/o SPH";
2863
+ }, {
2864
+ readonly code: "900000";
2865
+ readonly description: "Old Claims";
2866
+ }];